svgui/pyjs/jsonrpc/README.txt
author Edouard Tisserant
Sun, 26 Jan 2014 13:18:29 +0100
changeset 1388 67c9a9482d24
parent 728 e0424e96e3fd
permissions -rw-r--r--
Factorized bitmap and i18n resources loading in between PLCopenEditor and Beremiz. Now in utils/misc.py
These classes are intended for use server-side.

e.g. in a django view.py :

    from pyjs.jsonrpc.django import JSONService, jsonremote

    jsonservice = JSONRPCService()

    @jsonremote(jsonservice)
    def test(request, echo_param):
         return "echoing the param back: %s" % echo_param