84 |
84 |
85 def endTemplateText(self): |
85 def endTemplateText(self): |
86 """ |
86 """ |
87 Handler method for the "TemplateText" end tag. |
87 Handler method for the "TemplateText" end tag. |
88 """ |
88 """ |
89 self.templateText = self.unescape(self.utf8_to_code(self.buffer)) |
89 self.templateText = self.unescape(self.buffer) |
90 |
90 |
91 def endTemplateDescription(self): |
91 def endTemplateDescription(self): |
92 """ |
92 """ |
93 Handler method for the "TemplateDescription" end tag. |
93 Handler method for the "TemplateDescription" end tag. |
94 """ |
94 """ |
95 self.templateDescription = self.unescape(self.utf8_to_code(self.buffer)) |
95 self.templateDescription = self.unescape(self.buffer) |
96 |
96 |
97 def startTemplates(self, attrs): |
97 def startTemplates(self, attrs): |
98 """ |
98 """ |
99 Handler method for the "Templates" start tag. |
99 Handler method for the "Templates" start tag. |
100 |
100 |