svgui/pyjs/jsonrpc/web2py/jsonrpc.py
author Laurent Bessard
Tue, 29 Jan 2013 23:41:00 +0100
changeset 916 697d8b77d716
parent 728 e0424e96e3fd
child 1736 7e61baa047f0
permissions -rw-r--r--
Improved matplotlib graphic debug panel implementation, adding force, release, split and delete graph buttons, replacing data grid by adding panel displaying non-numeric data between graphs
from pyjs.jsonrpc import JSONRPCServiceBase

class JSONRPCService(JSONRPCServiceBase):

    def serve(self):
        return self.process(request.body.read())

    def __call__(self,func):
        self.methods[func.__name__]=func
        return func