dashboard / erock/git-pr / refactor: custom index page #56 rss

open · opened on 2025-03-27T20:16:09Z by erock
Help
checkout latest patchset:
ssh pr.pico.sh print pr-56 | git am -3
checkout any patchset in a patch request:
ssh pr.pico.sh print ps-X | git am -3
add changes to patch request:
git format-patch main --stdout | ssh pr.pico.sh pr add 56
add review to patch request:
git format-patch main --stdout | ssh pr.pico.sh pr add --review 56
accept PR:
ssh pr.pico.sh pr accept 56
close PR:
ssh pr.pico.sh pr close 56

Logs

erock created pr with ps-114 on 2025-03-27T20:16:09Z
erock added ps-115 on 2025-03-27T20:17:48Z
erock added ps-116 on 2025-03-28T14:48:26Z

Patchsets

ps-114 by erock on 2025-03-27T20:16:09Z
Range Diff ↕ rd-115
1: 0200c93 ! 1: a2710a3 refactor: custom index page
ps-115 by erock on 2025-03-27T20:17:48Z
Range Diff ↕ rd-116
1: a2710a3 ! 1: 7338b44 feat: allow config `desc` to add a description box to index page
ps-116 by erock on 2025-03-28T14:48:26Z

Range-diff rd-116

title
feat: allow config `desc` to add a description box to index page
description
Patch changed
old #1
a2710a3
new #1
7338b44
Back to top
1: a2710a3 ! 1: 7338b44 feat: allow config `desc` to add a description box to index page
cli.go cli.go
 }
 
 func NewCli(sesh ssh.Session, be *Backend, pr GitPatchRequest) *cli.App {
-	desc := `Patchbin: a supercharged pastebin for git collaboration.
+	desc := `git-pr: the simplest git collaboration tool.
 
 Here's how it works:
 	- External contributor clones repo (git-clone)
 	app := &cli.App{
 		Name:        "ssh",
 		Description: desc,
-		Usage:       "Collaborate with contributors for your git project",
+		Usage:       "Send, receive, and review git patches",
 		Writer:      sesh,
 		ErrWriter:   sesh,
 		ExitErrHandler: func(cCtx *cli.Context, err error) {
 			return nil
 		},
 		Commands: []*cli.Command{
+			{
+				Name:  "index",
+				Usage: "Generate an index page",
+				Args:  true,
+				Action: func(cCtx *cli.Context) error {
+					indexFile := `{{template "base" .}}
+{{define "title"}}git-pr{{end}}
+
+{{define "meta"}}
+{{end}}
+
+{{define "body"}}
+<header class="group">
+  <h1 class="text-2xl">git-pr</h1>
+  <div>
+    <span>The simplest git collaboration service</span> &middot; <a href="/e">explore</a>
+  </div>
+</header>
+
+<main></main>
+
+<footer class="mt">Built by <a href="https://pico.sh">pico.sh</a></footer>
+{{end}}`
+					wish.Println(sesh, indexFile)
+					return nil
+				},
+			},
 			{
 				Name:  "logs",
 				Usage: "List event logs with filters",