Changes between Version 92 and Version 93 of XmlRpcPlugin


Ignore:
Timestamp:
Oct 15, 2012, 6:32:47 PM (12 years ago)
Author:
Ryan J Ollos
Comment:

Added syntax highlighting.

Legend:

Unmodified
Added
Removed
Modified
  • XmlRpcPlugin

    v92 v93  
    2828 
    2929Install in the same manner as any other Trac plugin:
    30 {{{
     30{{{
     31#!sh
    3132# python setup.py bdist_egg
    3233# cp dist/*.egg /srv/trac/env/plugins
     
    3637 
    3738{{{
     39#!sh
    3840$ easy_install -Z -U http://trac-hacks.org/svn/xmlrpcplugin/trunk # 0.11+0.12
    3941$ #or
     
    4547You will also need to enable the plugin in your environments `trac.ini`:
    4648 
    47 {{{
     49{{{
     50#!ini
    4851[components]
    4952tracrpc.* = enabled
     
    5861=== Problems when AccountManagerPlugin is enabled ===
    5962If you have the AccountManagerPlugin enabled and you followed their advice/example to disable the standard login module with
    60 {{{
     63{{{
     64#!ini
    6165[components]
    6266trac.web.auth.LoginModule = disabled
     
    172176
    173177{{{
     178#!python
    174179class HTTPSDigestTransport(xmlrpclib.SafeTransport):
    175180    """
     
    211216digestTransport = HTTPSDigestTransport("username", "password", "realm")
    212217server = xmlrpclib.ServerProxy("https://host/login/xmlrpc", transport=digestTransport)
    213 
    214218}}}
    215219