_getFunction ( self, functionPath )
Given a string, return a function, or raise NoSuchFunction.
This returned function will be called, and should return the result
of the call, a Deferred, or a xmlrpclib.Fault instance.
Override in subclasses if you want your own policy. The default
policy is that given functionPath foo , return the method at
self.xmlrpcfoo, i.e. getattr(self, "xmlrpc" + functionPath).
|