Changes between Version 68 and Version 69 of XmlRpcPlugin


Ignore:
Timestamp:
Jun 9, 2009, 7:35:34 AM (15 years ago)
Author:
Barbara Post
Comment:

removed space in front of some blank lines (lines break were not effective because of these spaces)

Legend:

Unmodified
Added
Removed
Modified
  • XmlRpcPlugin

    v68 v69  
    88== Description ==
    99 
    10 This plugin allows Trac plugins to export select parts of their interface via XML-RPC. 
    11  
     10This plugin allows Trac plugins to export select parts of their interface via XML-RPC.
     11
    1212It also includes some exported functions for manipulating tickets, with plans to include interfaces to other parts of Trac's API.
    13  
     13
    1414The browsable XML-RPC URI suffix is /xmlrpc, however most XML-RPC clients should use the authenticated URL suffix 
    1515/login/xmlrpc as this is correctly authenticated by Trac.
    16  
     16
    1717'''Note''': if you do want to use /xmlrpc and unauthenticated access, you must grant the XML_RPC permission to the 'anonymous' user.
    18  
     18
    1919[http://www.jspwiki.org/Wiki.jsp?page=WikiRPCInterface2 WikiRPC API] is complete, mostly thanks to [wiki:mgood].
    20  
     20
    2121Ticket API is also complete, with the following types exported: component, version, milestone, type, status, resolution, priority and severity.
    22  
     22
    2323For example, for TracHacks the URIs are http://trac-hacks.org/xmlrpc and http://trac-hacks.org/login/xmlrpc (must be authenticated).
    2424 
     
    7070 
    7171The `xmlrpclib.ServerProxy` client - as demonstrated in the following examples - will not work with a ''Digest''-based HTTP authentication: you need to set up a ''Basic'' HTTP authentication on server side to make the examples work. 
    72  
     72
    7373If you use the standalone Trac daemon, this means that you cannot use the `tracd -a` option (htdigest authentication file). Use `trac --basic-auth` (htpasswd authentication file) instead.
    7474