|
|
@ -692,7 +692,7 @@ func checkCitationFile(ctx *context.Context, entry *git.TreeEntry) { |
|
|
|
} |
|
|
|
} |
|
|
|
tree, err := ctx.Repo.Commit.SubTree(ctx.Repo.TreePath) |
|
|
|
tree, err := ctx.Repo.Commit.SubTree(ctx.Repo.TreePath) |
|
|
|
if err != nil { |
|
|
|
if err != nil { |
|
|
|
ctx.NotFoundOrServerError("Repo.Commit.SubTree", git.IsErrNotExist, err) |
|
|
|
HandleGitError(ctx, "Repo.Commit.SubTree", err) |
|
|
|
return |
|
|
|
return |
|
|
|
} |
|
|
|
} |
|
|
|
allEntries, err := tree.ListEntries() |
|
|
|
allEntries, err := tree.ListEntries() |
|
|
@ -783,7 +783,7 @@ func LastCommit(ctx *context.Context) { |
|
|
|
func renderDirectoryFiles(ctx *context.Context, timeout time.Duration) git.Entries { |
|
|
|
func renderDirectoryFiles(ctx *context.Context, timeout time.Duration) git.Entries { |
|
|
|
tree, err := ctx.Repo.Commit.SubTree(ctx.Repo.TreePath) |
|
|
|
tree, err := ctx.Repo.Commit.SubTree(ctx.Repo.TreePath) |
|
|
|
if err != nil { |
|
|
|
if err != nil { |
|
|
|
ctx.NotFoundOrServerError("Repo.Commit.SubTree", git.IsErrNotExist, err) |
|
|
|
HandleGitError(ctx, "Repo.Commit.SubTree", err) |
|
|
|
return nil |
|
|
|
return nil |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -792,12 +792,12 @@ func renderDirectoryFiles(ctx *context.Context, timeout time.Duration) git.Entri |
|
|
|
// Get current entry user currently looking at.
|
|
|
|
// Get current entry user currently looking at.
|
|
|
|
entry, err := ctx.Repo.Commit.GetTreeEntryByPath(ctx.Repo.TreePath) |
|
|
|
entry, err := ctx.Repo.Commit.GetTreeEntryByPath(ctx.Repo.TreePath) |
|
|
|
if err != nil { |
|
|
|
if err != nil { |
|
|
|
ctx.NotFoundOrServerError("Repo.Commit.GetTreeEntryByPath", git.IsErrNotExist, err) |
|
|
|
HandleGitError(ctx, "Repo.Commit.GetTreeEntryByPath", err) |
|
|
|
return nil |
|
|
|
return nil |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if !entry.IsDir() { |
|
|
|
if !entry.IsDir() { |
|
|
|
ctx.NotFoundOrServerError("Repo.Commit.GetTreeEntryByPath", git.IsErrNotExist, err) |
|
|
|
HandleGitError(ctx, "Repo.Commit.GetTreeEntryByPath", err) |
|
|
|
return nil |
|
|
|
return nil |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -963,7 +963,7 @@ func renderCode(ctx *context.Context) { |
|
|
|
// Get current entry user currently looking at.
|
|
|
|
// Get current entry user currently looking at.
|
|
|
|
entry, err := ctx.Repo.Commit.GetTreeEntryByPath(ctx.Repo.TreePath) |
|
|
|
entry, err := ctx.Repo.Commit.GetTreeEntryByPath(ctx.Repo.TreePath) |
|
|
|
if err != nil { |
|
|
|
if err != nil { |
|
|
|
ctx.NotFoundOrServerError("Repo.Commit.GetTreeEntryByPath", git.IsErrNotExist, err) |
|
|
|
HandleGitError(ctx, "Repo.Commit.GetTreeEntryByPath", err) |
|
|
|
return |
|
|
|
return |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|