Changeset 559396 in git for modules/openmathserver/objects.py
- Timestamp:
- Jun 17, 2005, 11:29:27 AM (18 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- 88f1af180fd61cad5c84ed7e886b02fa905372c9
- Parents:
- d113d3aba56b6d8664654dbfaeeae4b356a2527e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
modules/openmathserver/objects.py
rd113d3 r559396 88 88 XMLAttributes=property(__getXMLAttributes,__setXMLAttributes,__delXMLAttributes,\ 89 89 "xml attributes") 90 def XML encode(self, context):90 def XMLEncode(self, context): 91 91 92 92 attr=self.XMLAttributes … … 243 243 def evaluate(self, context): 244 244 return context.evaluate(self.ref) 245 def XML encode(self, context):245 def XMLEncode(self, context): 246 246 "FIXME: maybe it should also be able to encode as reference" 247 247 return context.XMLEncodeObject(self.ref) … … 310 310 i=OMint(22482489) 311 311 print i.body 312 print i.XML encode(context)312 print i.XMLEncode(context) 313 313 #i.body="dshj" 314 314
Note: See TracChangeset
for help on using the changeset viewer.