예제 #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)
예제 #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)
예제 #3
0
 def get_owned_repo_list(self, username):
     return seafserv_threaded_rpc.list_owned_repos(username)
예제 #4
0
파일: api.py 프로젝트: miurahr/seafile
 def get_owned_repo_list(self, username):
     return seafserv_threaded_rpc.list_owned_repos(username)
예제 #5
0
파일: api.py 프로젝트: yjcyxky/seafile
 def get_owned_repo_list(self, username, ret_corrupted=False):
     return seafserv_threaded_rpc.list_owned_repos(username,
                                                   1 if ret_corrupted else 0)
예제 #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)