예제 #1
0
파일: bzr.py 프로젝트: Etenil/anvil
def get_user_branch_file(user, branch, fileid):
    return _get_branch_file(fs.user_branch_dir(user, branch), fileid)
예제 #2
0
파일: bzr.py 프로젝트: Etenil/anvil
def get_user_branch_tree(user, branch):
    return _get_branch_tree(fs.user_branch_dir(user, branch))
예제 #3
0
파일: bzr.py 프로젝트: Etenil/anvil
def get_user_branch_rss(user, branch):
    return _get_branch_rss_log(fs.user_branch_dir(user, branch))
예제 #4
0
파일: bzr.py 프로젝트: Etenil/anvil
def list_user_branches(user):
    return _list_branches(fs.user_branch_dir(user))
예제 #5
0
파일: acls.py 프로젝트: Etenil/anvil
 def branch_loc(self, branch_name):
     return fs.user_branch_dir(self.username, branch_name)