Changes between Version 11 and Version 12 of TestManagerForTracPluginRPCApi


Ignore:
Timestamp:
May 23, 2013, 8:03:55 PM (11 years ago)
Author:
anonymous
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TestManagerForTracPluginRPCApi

    v11 v12  
    105105import xmlrpclib
    106106
     107#
    107108# Remember to change the following URL with your information!!!
     109#
    108110# For example:
    109 # server = xmlrpclib.ServerProxy("http://anonymous@localhost:8000/my_test_project/rpc")
    110 
    111 server = xmlrpclib.ServerProxy("http://user@yourserver:port/yourproject/rpc")
     111#
     112# trac_project_url = "http://anonymous@localhost:8000/my_test_project/rpc"
     113#
     114trac_project_url = "http://user@yourserver:port/yourproject/rpc"
     115
     116print ">> Connecting to '%s'" % trac_project_url
     117server = xmlrpclib.ServerProxy(trac_project_url)
    112118
    113119