Append text nodes into L{Content.data} @param content: The current content being unmarshalled. @type content: L{Content}
(self, content)
| 163 | setattr(content.data, key, cval) |
| 164 | |
| 165 | def append_text(self, content): |
| 166 | """ |
| 167 | Append text nodes into L{Content.data} |
| 168 | @param content: The current content being unmarshalled. |
| 169 | @type content: L{Content} |
| 170 | """ |
| 171 | if content.node.hasText(): |
| 172 | content.text = content.node.getText() |
| 173 | |
| 174 | def reset(self): |
| 175 | pass |