(self, context)
| 225 | def __init__(self, ref): |
| 226 | self.ref=ref |
| 227 | def evaluate(self, context): |
| 228 | return context.evaluate(self.ref) |
| 229 | def XMLEncode(self, context): |
| 230 | "FIXME: maybe it should also be able to encode as reference" |
| 231 | return context.XMLEncodeObject(self.ref) |