Show
Ignore:
Timestamp:
03/24/07 22:17:40 (2 years ago)
Author:
athomas
Message:

XmlRpcPlugin:

First pass at JSON support.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • xmlrpcplugin/0.10/tracrpc/api.py

    r1950 r2122  
    11from trac.core import * 
    2 from trac.perm import IPermissionRequestor 
    32import inspect 
    43import types 
     
    141140class XMLRPCSystem(Component): 
    142141    """ Core of the XML-RPC system. """ 
    143     implements(IPermissionRequestor, IXMLRPCHandler) 
     142    implements(IXMLRPCHandler) 
    144143 
    145144    method_handlers = ExtensionPoint(IXMLRPCHandler) 
    146145 
    147     # IPermissionRequestor methods 
    148     def get_permission_actions(self): 
    149         yield 'XML_RPC' 
    150  
    151     # IXMLRPCHandler methods 
     146    #     # IXMLRPCHandler methods 
    152147    def xmlrpc_namespace(self): 
    153148        return 'system'