class documentation
class XMLRPCIntrospection(XMLRPC): (source)
Constructor: XMLRPCIntrospection(parent)
Implement the XML-RPC Introspection API.
By default, the methodHelp method returns the 'help' method attribute, if it exists, otherwise the __doc__ method attribute, if it exists, otherwise the empty string.
To enable the methodSignature method, add a 'signature' method attribute containing a list of lists. See methodSignature's documentation for the format. Note the type strings should be XML-RPC types, not Python types.
Method | __init__ |
Implement Introspection support for an XMLRPC server. |
Method | xmlrpc_list |
Return a list of the method names implemented by this server. |
Method | xmlrpc_method |
Return a documentation string describing the use of the given method. |
Method | xmlrpc_method |
Return a list of type signatures. |
Instance Variable | _xmlrpc |
Undocumented |
Inherited from XMLRPC
:
Method | __setattr__ |
Undocumented |
Method | get |
Undocumented |
Method | get |
Undocumented |
Method | list |
Return a list of the names of all xmlrpc procedures. |
Method | lookup |
Given a string naming a procedure, return a callable object for that procedure or raise NoSuchFunction. |
Method | put |
Undocumented |
Method | render_ |
Undocumented |
Constant | FAILURE |
Undocumented |
Constant | NOT |
Undocumented |
Class Variable | allowed |
Undocumented |
Class Variable | is |
Signal if this IResource implementor is a "leaf node" or not. If True, getChildWithDefault will not be called on this Resource. |
Class Variable | separator |
Undocumented |
Instance Variable | allow |
Permit XML translating of Python constant None. |
Instance Variable | sub |
Undocumented |
Instance Variable | use |
Present datetime values as datetime.datetime objects? |
Method | _cb |
Undocumented |
Method | _eb |
Undocumented |
Class Variable | _log |
Undocumented |
Inherited from Resource
(via XMLRPC
):
Method | del |
Undocumented |
Method | get |
Retrieve a 'child' resource from me. |
Method | get |
Deprecated in favor of getChildForRequest . |
Method | get |
Retrieve a static or dynamically generated child resource from me. |
Method | get |
Undocumented |
Method | get |
Undocumented |
Method | list |
Undocumented |
Method | list |
Undocumented |
Method | list |
Undocumented |
Method | list |
Undocumented |
Method | list |
Undocumented |
Method | list |
Undocumented |
Method | put |
Register a static child. |
Method | really |
Undocumented |
Method | render |
Render a given resource. See IResource 's render method. |
Method | render_ |
Default handling of HEAD method. |
Class Variable | server |
Undocumented |
Instance Variable | children |
Undocumented |
overrides
twisted.web.xmlrpc.XMLRPC.__init__
Implement Introspection support for an XMLRPC server.
Parameters | |
parent:XMLRPC | the XMLRPC server to add Introspection support to. |