aboutsummaryrefslogtreecommitdiff
path: root/templates/gititemblob.qtpl.go
blob: 05e0667c856d5ff46a2222d8a4979da2de1ea4ef (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
// Code generated by qtc from "gititemblob.qtpl". DO NOT EDIT.
// See https://github.com/valyala/quicktemplate for details.

//line gititemblob.qtpl:1
package templates

//line gititemblob.qtpl:1
import (
	qtio422016 "io"

	qt422016 "github.com/valyala/quicktemplate"
)

//line gititemblob.qtpl:1
var (
	_ = qtio422016.Copy
	_ = qt422016.AcquireByteBuffer
)

//line gititemblob.qtpl:2
type GitItemBlobPage struct {
	File    string
	Content []byte
}

//line gititemblob.qtpl:8
func (g *GitItemBlobPage) StreamNav(qw422016 *qt422016.Writer, name, ref string) {
//line gititemblob.qtpl:8
	StreamGitItemNav(qw422016, name, ref, Tree)
//line gititemblob.qtpl:8
}

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

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

//line gititemblob.qtpl:10
func (g *GitItemBlobPage) StreamGitContent(qw422016 *qt422016.Writer, name, ref string) {
//line gititemblob.qtpl:10
	qw422016.N().S(`
<div class="code-view">
`)
//line gititemblob.qtpl:12
	qw422016.N().Z(g.Content)
//line gititemblob.qtpl:12
	qw422016.N().S(`
</div>
`)
//line gititemblob.qtpl:14
}

//line gititemblob.qtpl:14
func (g *GitItemBlobPage) WriteGitContent(qq422016 qtio422016.Writer, name, ref string) {
//line gititemblob.qtpl:14
	qw422016 := qt422016.AcquireWriter(qq422016)
//line gititemblob.qtpl:14
	g.StreamGitContent(qw422016, name, ref)
//line gititemblob.qtpl:14
	qt422016.ReleaseWriter(qw422016)
//line gititemblob.qtpl:14
}

//line gititemblob.qtpl:14
func (g *GitItemBlobPage) GitContent(name, ref string) string {
//line gititemblob.qtpl:14
	qb422016 := qt422016.AcquireByteBuffer()
//line gititemblob.qtpl:14
	g.WriteGitContent(qb422016, name, ref)
//line gititemblob.qtpl:14
	qs422016 := string(qb422016.B)
//line gititemblob.qtpl:14
	qt422016.ReleaseByteBuffer(qb422016)
//line gititemblob.qtpl:14
	return qs422016
//line gititemblob.qtpl:14
}