Example #1
0
 def get_owned_repo_list(self, username, ret_corrupted=False, start=-1, limit=-1):
     """
     Return: a list of Repo objects
     """
     return seafserv_threaded_rpc.list_owned_repos(username,
                                                   1 if ret_corrupted else 0,
                                                   start, limit)
Example #2
0
 def get_owned_repo_list(self, username, ret_corrupted=False, start=-1, limit=-1):
     """
     Return: a list of Repo objects
     """
     return seafserv_threaded_rpc.list_owned_repos(username,
                                                   1 if ret_corrupted else 0,
                                                   start, limit)
Example #3
0
 def get_owned_repo_list(self, username):
     return seafserv_threaded_rpc.list_owned_repos(username)
Example #4
0
 def get_owned_repo_list(self, username):
     return seafserv_threaded_rpc.list_owned_repos(username)
Example #5
0
 def get_owned_repo_list(self, username, ret_corrupted=False):
     return seafserv_threaded_rpc.list_owned_repos(username,
                                                   1 if ret_corrupted else 0)
Example #6
0
 def get_owned_repo_list(self, username, ret_corrupted=False):
     return seafserv_threaded_rpc.list_owned_repos(username,
                                                   1 if ret_corrupted else 0)