Comment fixes

This commit is contained in:
Tim Bentley 2013-04-14 16:59:57 +01:00
parent 797a76f095
commit 220681c900
3 changed files with 30 additions and 0 deletions

View File

@ -487,6 +487,9 @@ class MediaManagerItem(QtGui.QWidget):
def go_live_remote(self, message):
"""
Remote Call wrapper
``message``
The passed data item_id:Remote.
"""
self.go_live(message[0], remote=message[1])
@ -535,6 +538,9 @@ class MediaManagerItem(QtGui.QWidget):
def add_to_service_remote(self, message):
"""
Remote Call wrapper
``message``
The passed data item:Remote.
"""
self.add_to_service(message[0], remote=message[1])

View File

@ -285,6 +285,12 @@ class HttpRouter(object):
def process_http_request(self, url_path, *args):
"""
Common function to process HTTP requests
``url_path``
The requested URL.
``*args``
Any passed data.
"""
response = None
for route, func in self.routes:

View File

@ -101,6 +101,15 @@ class TestRouter(TestCase):
def call_remote_server(url, username=None, password=None):
"""
Helper function
``username``
The username.
``password``
The password.
"""
if username:
passman = urllib2.HTTPPasswordMgrWithDefaultRealm()
passman.add_password(None, url, username, password)
@ -115,6 +124,15 @@ def call_remote_server(url, username=None, password=None):
def process_http_request(url_path, *args):
"""
Override function to make the Mock work but does nothing.
``Url_path``
The url_path.
``*args``
Some args.
"""
cherrypy.response.status = 200
return None