aboutsummaryrefslogtreecommitdiff
path: root/templates/gititemrefs.qtpl.go
blob: d2a362e5bacc6b8e2fcf10bb9da486ef48fcecda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
// Code generated by qtc from "gititemrefs.qtpl". DO NOT EDIT.
// See https://github.com/valyala/quicktemplate for details.

//line gititemrefs.qtpl:1
package templates

//line gititemrefs.qtpl:1
import "github.com/go-git/go-git/v5/plumbing"

//line gititemrefs.qtpl:2
import "github.com/go-git/go-git/v5/plumbing/object"

//line gititemrefs.qtpl:4
import (
	qtio422016 "io"

	qt422016 "github.com/valyala/quicktemplate"
)

//line gititemrefs.qtpl:4
var (
	_ = qtio422016.Copy
	_ = qt422016.AcquireByteBuffer
)

//line gititemrefs.qtpl:5
type GitItemRefsPage struct {
	Tags     []*object.Tag
	Branches []*plumbing.Reference
}

//line gititemrefs.qtpl:11
func (g *GitItemRefsPage) StreamNav(qw422016 *qt422016.Writer, name, ref string) {
//line gititemrefs.qtpl:11
	StreamGitItemNav(qw422016, name, ref, Refs)
//line gititemrefs.qtpl:11
}

//line gititemrefs.qtpl:11
func (g *GitItemRefsPage) WriteNav(qq422016 qtio422016.Writer, name, ref string) {
//line gititemrefs.qtpl:11
	qw422016 := qt422016.AcquireWriter(qq422016)
//line gititemrefs.qtpl:11
	g.StreamNav(qw422016, name, ref)
//line gititemrefs.qtpl:11
	qt422016.ReleaseWriter(qw422016)
//line gititemrefs.qtpl:11
}

//line gititemrefs.qtpl:11
func (g *GitItemRefsPage) Nav(name, ref string) string {
//line gititemrefs.qtpl:11
	qb422016 := qt422016.AcquireByteBuffer()
//line gititemrefs.qtpl:11
	g.WriteNav(qb422016, name, ref)
//line gititemrefs.qtpl:11
	qs422016 := string(qb422016.B)
//line gititemrefs.qtpl:11
	qt422016.ReleaseByteBuffer(qb422016)
//line gititemrefs.qtpl:11
	return qs422016
//line gititemrefs.qtpl:11
}

//line gititemrefs.qtpl:13
func (g *GitItemRefsPage) StreamGitContent(qw422016 *qt422016.Writer) {
//line gititemrefs.qtpl:13
	qw422016.N().S(`
<div class="row">
  <div class="col-xxl">
    <h4>Tags</h4>
    <div class="logs">
      `)
//line gititemrefs.qtpl:18
	for _, t := range g.Tags {
//line gititemrefs.qtpl:18
		qw422016.N().S(`
      <div class="row">
          <div class="col-xxl-2">
           `)
//line gititemrefs.qtpl:21
		qw422016.E().S(TimeFormat(t.Tagger.When))
//line gititemrefs.qtpl:21
		qw422016.N().S(`
          </div>
          <div class="col-xxl-7">
           <pre>`)
//line gititemrefs.qtpl:24
		qw422016.E().S(t.Message)
//line gititemrefs.qtpl:24
		qw422016.N().S(`</pre>
          </div>
          <div class="col-xxl-3">
           <small>`)
//line gititemrefs.qtpl:27
		qw422016.E().S(t.Tagger.Name)
//line gititemrefs.qtpl:27
		qw422016.N().S(`</small>
          </div>
      </div>
      `)
//line gititemrefs.qtpl:30
	}
//line gititemrefs.qtpl:30
	qw422016.N().S(`
    </div>
  </div>
  <div class="col-xxl">
    <h4>Branches</h4>
    <div class="logs">
      `)
//line gititemrefs.qtpl:36
	for _, b := range g.Branches {
//line gititemrefs.qtpl:36
		qw422016.N().S(`
      <div class="row">
          <div class="col-xxl">
           `)
//line gititemrefs.qtpl:39
		qw422016.E().S(b.Name().Short())
//line gititemrefs.qtpl:39
		qw422016.N().S(`
          </div>
      </div>
      `)
//line gititemrefs.qtpl:42
	}
//line gititemrefs.qtpl:42
	qw422016.N().S(`
    </div>
  </div>
</div>
`)
//line gititemrefs.qtpl:46
}

//line gititemrefs.qtpl:46
func (g *GitItemRefsPage) WriteGitContent(qq422016 qtio422016.Writer) {
//line gititemrefs.qtpl:46
	qw422016 := qt422016.AcquireWriter(qq422016)
//line gititemrefs.qtpl:46
	g.StreamGitContent(qw422016)
//line gititemrefs.qtpl:46
	qt422016.ReleaseWriter(qw422016)
//line gititemrefs.qtpl:46
}

//line gititemrefs.qtpl:46
func (g *GitItemRefsPage) GitContent() string {
//line gititemrefs.qtpl:46
	qb422016 := qt422016.AcquireByteBuffer()
//line gititemrefs.qtpl:46
	g.WriteGitContent(qb422016)
//line gititemrefs.qtpl:46
	qs422016 := string(qb422016.B)
//line gititemrefs.qtpl:46
	qt422016.ReleaseByteBuffer(qb422016)
//line gititemrefs.qtpl:46
	return qs422016
//line gititemrefs.qtpl:46
}