Exemple #1
0
 def list_dir_by_commit_and_path(self,
                                 repo_id,
                                 commit_id,
                                 path,
                                 offset=-1,
                                 limit=-1):
     dir_id = seafserv_threaded_rpc.get_dir_id_by_commit_and_path(
         repo_id, commit_id, path)
     if dir_id is None:
         return None
     return seafserv_threaded_rpc.list_dir(repo_id, dir_id, offset, limit)
Exemple #2
0
 def get_dir_id_by_commit_and_path(self, repo_id, commit_id, path):
     return seafserv_threaded_rpc.get_dir_id_by_commit_and_path(repo_id, commit_id, path)
Exemple #3
0
 def list_dir_by_commit_and_path(self, commit_id, path):
     dir_id = seafserv_threaded_rpc.get_dir_id_by_commit_and_path(
         repo_id, path)
     return seafserv_threaded_rpc.list_dir(dir_id)
Exemple #4
0
 def list_dir_by_commit_and_path(self, commit_id, path):
     dir_id = seafserv_threaded_rpc.get_dir_id_by_commit_and_path(repo_id, path)
     return seafserv_threaded_rpc.list_dir(dir_id)
Exemple #5
0
 def get_dir_id_by_commit_and_path(self, repo_id, commit_id, path):
     return seafserv_threaded_rpc.get_dir_id_by_commit_and_path(repo_id, commit_id, path)
Exemple #6
0
 def list_dir_by_commit_and_path(self, repo_id,
                                 commit_id, path, offset=-1, limit=-1):
     dir_id = seafserv_threaded_rpc.get_dir_id_by_commit_and_path(repo_id, commit_id, path)
     if dir_id is None:
         return None
     return seafserv_threaded_rpc.list_dir(repo_id, dir_id, offset, limit)