Exemplo n.º 1
0
def trac_report(base_address, report_id, callback, auth):
    action_fragment = 'report/%s?format=rss' % report_id
    action_url = urljoin(base_address, action_fragment)
    fetch_url(action_url, callback, auth=auth)
Exemplo n.º 2
0
def trac_action(base_address, action, id, callback):
    action_fragment = "%s/%s?format=rss" % (action, id)
    action_url = urljoin(base_address, action_fragment)
    fetch_url(action_url, callback)
Exemplo n.º 3
0
 def post(self, *args):
     self.args = args
     fetch_url(self.PASTE_URL, self.on_posted, self.create_data_dict(*args))
Exemplo n.º 4
0
def trac_report(base_address, report_id, callback, auth):
    action_fragment = 'report/%s?format=rss' % report_id
    action_url = urljoin(base_address, action_fragment)
    fetch_url(action_url, callback, auth=auth)