files should use same path as github does

このコミットが含まれているのは:
Arya Kiran 2023-03-15 16:51:40 +05:30
コミット cfeafc0ba2
この署名に対応する既知のキーがデータベースに存在しません
GPGキーID: 842D12BDA50DF120
2個のファイルの変更2行の追加2行の削除

ファイルの表示

@ -106,7 +106,7 @@ func Serve() {
return nil
})
app.Get("/:user/:repo", pages.HandleRepo)
app.Get("/:user/:repo/tree/:branch/+", pages.FileView)
app.Get("/:user/:repo/blob/:branch/+", pages.FileView)
app.Get("/download/:user/:repo/:branch", func(c *fiber.Ctx) error {
utils.ProxyRequest(c, "https://github.com/"+c.Params("user")+"/"+c.Params("repo")+"/archive/"+c.Params("branch")+".zip")
return nil

ファイルの表示

@ -40,7 +40,7 @@
</li>
{{ else }}
<li class="filesList">
<a href="/{{.Fullname}}/tree/{{.DefaultBranch}}/{{.Path}}"
<a href="/{{.Fullname}}/blob/{{.DefaultBranch}}/{{.Path}}"
>{{.Path}}</a
>
</li>