aboutsummaryrefslogtreecommitdiff
path: root/templates/commit.qtpl.go
diff options
context:
space:
mode:
Diffstat (limited to 'templates/commit.qtpl.go')
-rw-r--r--templates/commit.qtpl.go204
1 files changed, 143 insertions, 61 deletions
diff --git a/templates/commit.qtpl.go b/templates/commit.qtpl.go
index 04d1c9c..0aefbb8 100644
--- a/templates/commit.qtpl.go
+++ b/templates/commit.qtpl.go
@@ -1,125 +1,207 @@
// Code generated by qtc from "commit.qtpl". DO NOT EDIT.
// See https://github.com/valyala/quicktemplate for details.
-//line commit.qtpl:1
+//line templates/commit.qtpl:1
package templates
-//line commit.qtpl:1
-import "github.com/go-git/go-git/v5/plumbing/object"
+//line templates/commit.qtpl:1
+import "git.gabrielgio.me/cerrado/pkg/git"
-//line commit.qtpl:3
+//line templates/commit.qtpl:2
+import "git.gabrielgio.me/cerrado/pkg/humanize"
+
+//line templates/commit.qtpl:4
import (
qtio422016 "io"
qt422016 "github.com/valyala/quicktemplate"
)
-//line commit.qtpl:3
+//line templates/commit.qtpl:4
var (
_ = qtio422016.Copy
_ = qt422016.AcquireByteBuffer
)
-//line commit.qtpl:3
-func StreamCommit(qw422016 *qt422016.Writer, name string, c *object.Commit, showTar bool) {
-//line commit.qtpl:3
+//line templates/commit.qtpl:4
+func StreamCommit(qw422016 *qt422016.Writer, name string, c *git.CommitReference, showTar bool) {
+//line templates/commit.qtpl:4
qw422016.N().S(`
<div class="row event">
<div class="row">
<div class="col-md">
<a title="`)
-//line commit.qtpl:7
- qw422016.E().S(c.Hash.String())
-//line commit.qtpl:7
+//line templates/commit.qtpl:8
+ qw422016.E().S(c.Commit().Hash.String())
+//line templates/commit.qtpl:8
qw422016.N().S(`" href="/`)
-//line commit.qtpl:7
+//line templates/commit.qtpl:8
qw422016.E().S(name)
-//line commit.qtpl:7
+//line templates/commit.qtpl:8
qw422016.N().S(`/commit/`)
-//line commit.qtpl:7
- qw422016.E().S(c.Hash.String())
-//line commit.qtpl:7
+//line templates/commit.qtpl:8
+ qw422016.E().S(c.Commit().Hash.String())
+//line templates/commit.qtpl:8
+ qw422016.N().S(`/">`)
+//line templates/commit.qtpl:8
+ qw422016.E().S(c.Commit().Hash.String()[0:8])
+//line templates/commit.qtpl:8
+ qw422016.N().S(`</a> —
+ <a title="`)
+//line templates/commit.qtpl:9
+ qw422016.E().S(c.Commit().Committer.Email)
+//line templates/commit.qtpl:9
+ qw422016.N().S(`" href="mailto:`)
+//line templates/commit.qtpl:9
+ qw422016.E().S(c.Commit().Author.Email)
+//line templates/commit.qtpl:9
qw422016.N().S(`">`)
-//line commit.qtpl:7
- qw422016.E().S(c.Hash.String()[0:8])
-//line commit.qtpl:7
+//line templates/commit.qtpl:9
+ qw422016.E().S(c.Commit().Author.Name)
+//line templates/commit.qtpl:9
qw422016.N().S(`</a>
+ `)
+//line templates/commit.qtpl:10
+ if c.HasReference() {
+//line templates/commit.qtpl:10
+ qw422016.N().S(`
+ —
+ `)
+//line templates/commit.qtpl:12
+ for _, r := range c.References() {
+//line templates/commit.qtpl:12
+ qw422016.N().S(`
+ `)
+//line templates/commit.qtpl:13
+ if r.Name().IsBranch() {
+//line templates/commit.qtpl:13
+ qw422016.N().S(`
+ <a class="ref branch" title="`)
+//line templates/commit.qtpl:14
+ qw422016.E().S(c.Commit().Hash.String())
+//line templates/commit.qtpl:14
+ qw422016.N().S(`" href="/`)
+//line templates/commit.qtpl:14
+ qw422016.E().S(name)
+//line templates/commit.qtpl:14
+ qw422016.N().S(`/tree/`)
+//line templates/commit.qtpl:14
+ qw422016.E().S(r.Name().Short())
+//line templates/commit.qtpl:14
+ qw422016.N().S(`/">`)
+//line templates/commit.qtpl:14
+ qw422016.E().S(r.Name().Short())
+//line templates/commit.qtpl:14
+ qw422016.N().S(`</a>
+ `)
+//line templates/commit.qtpl:15
+ } else {
+//line templates/commit.qtpl:15
+ qw422016.N().S(`
+ <a class="ref tag" title="`)
+//line templates/commit.qtpl:16
+ qw422016.E().S(c.Commit().Hash.String())
+//line templates/commit.qtpl:16
+ qw422016.N().S(`" href="/`)
+//line templates/commit.qtpl:16
+ qw422016.E().S(name)
+//line templates/commit.qtpl:16
+ qw422016.N().S(`/ref/`)
+//line templates/commit.qtpl:16
+ qw422016.E().S(r.Name().Short())
+//line templates/commit.qtpl:16
+ qw422016.N().S(`/">`)
+//line templates/commit.qtpl:16
+ qw422016.E().S(r.Name().Short())
+//line templates/commit.qtpl:16
+ qw422016.N().S(`</a>
+ `)
+//line templates/commit.qtpl:17
+ }
+//line templates/commit.qtpl:17
+ qw422016.N().S(`
+ `)
+//line templates/commit.qtpl:18
+ }
+//line templates/commit.qtpl:18
+ qw422016.N().S(`
+ `)
+//line templates/commit.qtpl:19
+ }
+//line templates/commit.qtpl:19
+ qw422016.N().S(`
</div>
`)
-//line commit.qtpl:9
+//line templates/commit.qtpl:21
if showTar {
-//line commit.qtpl:9
+//line templates/commit.qtpl:21
qw422016.N().S(`
<div class="col-md text-md-center">
<a title="tar.gz for `)
-//line commit.qtpl:11
- qw422016.E().S(c.Hash.String())
-//line commit.qtpl:11
+//line templates/commit.qtpl:23
+ qw422016.E().S(c.Commit().Hash.String())
+//line templates/commit.qtpl:23
qw422016.N().S(`" href="/`)
-//line commit.qtpl:11
+//line templates/commit.qtpl:23
qw422016.E().S(name)
-//line commit.qtpl:11
+//line templates/commit.qtpl:23
qw422016.N().S(`/archive/`)
-//line commit.qtpl:11
- qw422016.E().S(c.Hash.String())
-//line commit.qtpl:11
+//line templates/commit.qtpl:23
+ qw422016.E().S(c.Commit().Hash.String())
+//line templates/commit.qtpl:23
qw422016.N().S(`.tar.gz">tar.gz</a>
</div>
`)
-//line commit.qtpl:13
+//line templates/commit.qtpl:25
}
-//line commit.qtpl:13
+//line templates/commit.qtpl:25
qw422016.N().S(`
<div class="col-md text-md-end">
- <a title="`)
-//line commit.qtpl:15
- qw422016.E().S(c.Committer.Email)
-//line commit.qtpl:15
- qw422016.N().S(`" href="mailto:`)
-//line commit.qtpl:15
- qw422016.E().S(c.Committer.Email)
-//line commit.qtpl:15
- qw422016.N().S(`">`)
-//line commit.qtpl:15
- qw422016.E().S(c.Committer.Name)
-//line commit.qtpl:15
+ <a title="`)
+//line templates/commit.qtpl:27
+ qw422016.E().S(c.Commit().Author.When.UTC().Format("2006-01-02 15:04:05"))
+//line templates/commit.qtpl:27
+ qw422016.N().S(` UTC">`)
+//line templates/commit.qtpl:27
+ qw422016.E().S(humanize.Time(c.Commit().Author.When))
+//line templates/commit.qtpl:27
qw422016.N().S(`</a>
</div>
</div>
<div class="code-view">
<pre>`)
-//line commit.qtpl:19
- qw422016.E().S(c.Message)
-//line commit.qtpl:19
+//line templates/commit.qtpl:31
+ qw422016.E().S(c.Commit().Message)
+//line templates/commit.qtpl:31
qw422016.N().S(`</pre>
</div>
</div>
`)
-//line commit.qtpl:22
+//line templates/commit.qtpl:34
}
-//line commit.qtpl:22
-func WriteCommit(qq422016 qtio422016.Writer, name string, c *object.Commit, showTar bool) {
-//line commit.qtpl:22
+//line templates/commit.qtpl:34
+func WriteCommit(qq422016 qtio422016.Writer, name string, c *git.CommitReference, showTar bool) {
+//line templates/commit.qtpl:34
qw422016 := qt422016.AcquireWriter(qq422016)
-//line commit.qtpl:22
+//line templates/commit.qtpl:34
StreamCommit(qw422016, name, c, showTar)
-//line commit.qtpl:22
+//line templates/commit.qtpl:34
qt422016.ReleaseWriter(qw422016)
-//line commit.qtpl:22
+//line templates/commit.qtpl:34
}
-//line commit.qtpl:22
-func Commit(name string, c *object.Commit, showTar bool) string {
-//line commit.qtpl:22
+//line templates/commit.qtpl:34
+func Commit(name string, c *git.CommitReference, showTar bool) string {
+//line templates/commit.qtpl:34
qb422016 := qt422016.AcquireByteBuffer()
-//line commit.qtpl:22
+//line templates/commit.qtpl:34
WriteCommit(qb422016, name, c, showTar)
-//line commit.qtpl:22
+//line templates/commit.qtpl:34
qs422016 := string(qb422016.B)
-//line commit.qtpl:22
+//line templates/commit.qtpl:34
qt422016.ReleaseByteBuffer(qb422016)
-//line commit.qtpl:22
+//line templates/commit.qtpl:34
return qs422016
-//line commit.qtpl:22
+//line templates/commit.qtpl:34
}