1
0
mirror of https://github.com/osmarks/mycorrhiza.git synced 2024-12-12 13:30:26 +00:00
mycorrhiza/views/readers.qtpl.go

493 lines
13 KiB
Go
Raw Normal View History

2021-02-20 16:14:33 +00:00
// Code generated by qtc from "readers.qtpl". DO NOT EDIT.
// See https://github.com/valyala/quicktemplate for details.
//line views/readers.qtpl:1
package views
//line views/readers.qtpl:1
import "net/http"
//line views/readers.qtpl:2
2021-02-24 17:34:42 +00:00
import "strings"
//line views/readers.qtpl:3
2021-02-20 16:14:33 +00:00
import "path"
//line views/readers.qtpl:4
2021-02-24 17:34:42 +00:00
import "os"
2021-02-20 16:14:33 +00:00
//line views/readers.qtpl:6
import "github.com/bouncepaw/mycorrhiza/cfg"
2021-02-20 16:14:33 +00:00
//line views/readers.qtpl:7
import "github.com/bouncepaw/mycorrhiza/hyphae"
2021-02-24 17:34:42 +00:00
//line views/readers.qtpl:8
import "github.com/bouncepaw/mycorrhiza/mimetype"
2021-02-20 16:14:33 +00:00
2021-02-24 17:34:42 +00:00
//line views/readers.qtpl:9
import "github.com/bouncepaw/mycorrhiza/tree"
2021-02-20 16:14:33 +00:00
//line views/readers.qtpl:10
import "github.com/bouncepaw/mycorrhiza/user"
//line views/readers.qtpl:11
2021-02-24 17:34:42 +00:00
import "github.com/bouncepaw/mycorrhiza/util"
//line views/readers.qtpl:13
2021-02-20 16:14:33 +00:00
import (
qtio422016 "io"
qt422016 "github.com/valyala/quicktemplate"
)
//line views/readers.qtpl:13
2021-02-20 16:14:33 +00:00
var (
_ = qtio422016.Copy
_ = qt422016.AcquireByteBuffer
)
//line views/readers.qtpl:13
2021-02-24 17:34:42 +00:00
func StreamAttachmentMenuHTML(qw422016 *qt422016.Writer, rq *http.Request, h *hyphae.Hypha, u *user.User) {
//line views/readers.qtpl:13
2021-02-24 17:34:42 +00:00
qw422016.N().S(`
`)
//line views/readers.qtpl:14
2021-02-24 17:34:42 +00:00
StreamNavHTML(qw422016, rq, h.Name, "attachment")
//line views/readers.qtpl:14
2021-02-24 17:34:42 +00:00
qw422016.N().S(`
<div class="layout">
<main class="main-width attachment-tab">
2021-02-24 17:34:42 +00:00
<h1>Attachment of `)
//line views/readers.qtpl:17
2021-02-24 17:34:42 +00:00
qw422016.E().S(util.BeautifulName(h.Name))
//line views/readers.qtpl:17
2021-02-24 17:34:42 +00:00
qw422016.N().S(`</h1>
`)
//line views/readers.qtpl:18
2021-02-24 17:34:42 +00:00
if h.BinaryPath == "" {
//line views/readers.qtpl:18
2021-02-24 17:34:42 +00:00
qw422016.N().S(`
<p class="explanation">This hypha has no attachment, you can upload it here. <a href="/help/en/attachment" class="shy-link">What are attachments?</a></p>
2021-02-24 17:34:42 +00:00
`)
//line views/readers.qtpl:20
2021-02-24 17:34:42 +00:00
} else {
//line views/readers.qtpl:20
2021-02-24 17:34:42 +00:00
qw422016.N().S(`
<p class="explanation">You can manage the hypha's attachment on this page. <a href="/help/en/attachment" class="shy-link">What are attachments?</a></p>
2021-02-24 17:34:42 +00:00
`)
//line views/readers.qtpl:22
2021-02-24 17:34:42 +00:00
}
//line views/readers.qtpl:22
2021-02-24 17:34:42 +00:00
qw422016.N().S(`
<section class="amnt-grid">
`)
//line views/readers.qtpl:26
2021-02-24 17:34:42 +00:00
if h.BinaryPath != "" {
//line views/readers.qtpl:26
2021-02-24 17:34:42 +00:00
qw422016.N().S(`
`)
//line views/readers.qtpl:28
2021-02-24 17:34:42 +00:00
mime := mimetype.FromExtension(path.Ext(h.BinaryPath))
fileinfo, err := os.Stat(h.BinaryPath)
//line views/readers.qtpl:29
2021-02-24 17:34:42 +00:00
qw422016.N().S(`
`)
//line views/readers.qtpl:30
2021-02-24 17:34:42 +00:00
if err == nil {
//line views/readers.qtpl:30
2021-02-24 17:34:42 +00:00
qw422016.N().S(`
<fieldset class="amnt-menu-block">
<legend class="modal__title modal__title_small">Stat</legend>
<p class="modal__confirmation-msg"><b>File size:</b> `)
//line views/readers.qtpl:33
2021-02-24 17:34:42 +00:00
qw422016.N().DL(fileinfo.Size())
//line views/readers.qtpl:33
2021-02-24 17:34:42 +00:00
qw422016.N().S(` bytes</p>
<p><b>MIME type:</b> `)
//line views/readers.qtpl:34
2021-02-24 17:34:42 +00:00
qw422016.E().S(mime)
//line views/readers.qtpl:34
2021-02-24 17:34:42 +00:00
qw422016.N().S(`</p>
</fieldset>
`)
//line views/readers.qtpl:36
2021-02-24 17:34:42 +00:00
}
//line views/readers.qtpl:36
2021-02-24 17:34:42 +00:00
qw422016.N().S(`
`)
//line views/readers.qtpl:38
2021-02-24 17:34:42 +00:00
if strings.HasPrefix(mime, "image/") {
//line views/readers.qtpl:38
2021-02-24 17:34:42 +00:00
qw422016.N().S(`
<fieldset class="amnt-menu-block">
<legend class="modal__title modal__title_small">Include</legend>
2021-02-24 17:37:34 +00:00
<p class="modal__confirmation-msg">This attachment is an image. To include it n a hypha, use a syntax like this:</p>
2021-02-24 17:34:42 +00:00
<pre class="codebleck"><code>img { `)
//line views/readers.qtpl:42
2021-02-24 17:34:42 +00:00
qw422016.E().S(h.Name)
//line views/readers.qtpl:42
2021-02-24 17:34:42 +00:00
qw422016.N().S(` }</code></pre>
</fieldset>
`)
//line views/readers.qtpl:44
2021-02-24 17:34:42 +00:00
}
//line views/readers.qtpl:44
2021-02-24 17:34:42 +00:00
qw422016.N().S(`
`)
//line views/readers.qtpl:45
2021-02-24 17:34:42 +00:00
}
//line views/readers.qtpl:45
2021-02-24 17:34:42 +00:00
qw422016.N().S(`
`)
//line views/readers.qtpl:47
2021-02-24 17:34:42 +00:00
if u.CanProceed("upload-binary") {
//line views/readers.qtpl:47
2021-02-24 17:34:42 +00:00
qw422016.N().S(`
<form action="/upload-binary/`)
//line views/readers.qtpl:48
2021-02-24 17:34:42 +00:00
qw422016.E().S(h.Name)
//line views/readers.qtpl:48
2021-02-24 17:34:42 +00:00
qw422016.N().S(`"
method="post" enctype="multipart/form-data"
2021-05-25 07:34:04 +00:00
class="upload-binary modal amnt-menu-block">
<fieldset class="modal__fieldset">
2021-02-24 17:34:42 +00:00
<legend class="modal__title modal__title_small">Attach</legend>
2021-02-24 17:37:34 +00:00
<p class="modal__confirmation-msg">You can upload a new attachment. Please do not upload too big pictures unless you need to because may not want to wait for big pictures to load.</p>
2021-05-25 07:34:04 +00:00
<label for="upload-binary__input"></label>
<input type="file" id="upload-binary__input" name="binary">
<input type="submit" class="btn stick-to-bottom" value="Upload">
2021-02-24 17:34:42 +00:00
</fieldset>
</form>
`)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:60
2021-02-24 17:34:42 +00:00
}
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:60
2021-02-24 17:34:42 +00:00
qw422016.N().S(`
`)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:62
2021-02-24 17:34:42 +00:00
if h.BinaryPath != "" && u.CanProceed("unattach-confirm") {
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:62
2021-02-24 17:34:42 +00:00
qw422016.N().S(`
<form action="/unattach-confirm/`)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:63
2021-02-24 17:34:42 +00:00
qw422016.E().S(h.Name)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:63
2021-02-24 17:34:42 +00:00
qw422016.N().S(`" method="post" class="modal amnt-menu-block">
<fieldset class="modal__fieldset">
<legend class="modal__title modal__title_small">Unattach</legend>
<p class="modal__confirmation-msg">Please note that you don't have to unattach before uploading a new attachment.</p>
2021-05-25 07:34:04 +00:00
<input type="submit" class="btn" value="Unattach">
2021-02-24 17:34:42 +00:00
</fieldset>
</form>
`)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:70
2021-02-24 17:34:42 +00:00
}
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:70
2021-02-24 17:34:42 +00:00
qw422016.N().S(`
</section>
</main>
</div>
`)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:75
2021-02-24 17:34:42 +00:00
}
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:75
2021-02-24 17:34:42 +00:00
func WriteAttachmentMenuHTML(qq422016 qtio422016.Writer, rq *http.Request, h *hyphae.Hypha, u *user.User) {
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:75
2021-02-24 17:34:42 +00:00
qw422016 := qt422016.AcquireWriter(qq422016)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:75
2021-02-24 17:34:42 +00:00
StreamAttachmentMenuHTML(qw422016, rq, h, u)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:75
2021-02-24 17:34:42 +00:00
qt422016.ReleaseWriter(qw422016)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:75
2021-02-24 17:34:42 +00:00
}
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:75
2021-02-24 17:34:42 +00:00
func AttachmentMenuHTML(rq *http.Request, h *hyphae.Hypha, u *user.User) string {
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:75
2021-02-24 17:34:42 +00:00
qb422016 := qt422016.AcquireByteBuffer()
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:75
2021-02-24 17:34:42 +00:00
WriteAttachmentMenuHTML(qb422016, rq, h, u)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:75
2021-02-24 17:34:42 +00:00
qs422016 := string(qb422016.B)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:75
2021-02-24 17:34:42 +00:00
qt422016.ReleaseByteBuffer(qb422016)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:75
2021-02-24 17:34:42 +00:00
return qs422016
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:75
2021-02-24 17:34:42 +00:00
}
// If `contents` == "", a helpful message is shown instead.
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:78
2021-02-20 16:14:33 +00:00
func StreamHyphaHTML(qw422016 *qt422016.Writer, rq *http.Request, h *hyphae.Hypha, contents string) {
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:78
2021-02-20 16:14:33 +00:00
qw422016.N().S(`
`)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:80
2021-07-12 15:23:25 +00:00
siblings, subhyphae, prevHyphaName, nextHyphaName := tree.Tree(h.Name)
u := user.FromRequest(rq)
2021-02-20 16:14:33 +00:00
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:82
2021-02-20 16:14:33 +00:00
qw422016.N().S(`
`)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:83
2021-06-14 07:13:29 +00:00
StreamNavHTML(qw422016, rq, h.Name, "hypha")
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:83
2021-02-20 16:14:33 +00:00
qw422016.N().S(`
<div class="layout">
<main class="main-width">
<article>
`)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:87
2021-02-20 16:14:33 +00:00
qw422016.N().S(NaviTitleHTML(h))
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:87
2021-02-20 16:14:33 +00:00
qw422016.N().S(`
`)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:88
if h.Exists {
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:88
qw422016.N().S(`
`)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:89
qw422016.N().S(contents)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:89
2021-02-24 17:34:42 +00:00
qw422016.N().S(`
`)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:90
2021-02-20 16:14:33 +00:00
} else {
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:90
2021-02-20 16:14:33 +00:00
qw422016.N().S(`
`)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:91
streamnonExistentHyphaNotice(qw422016, h, u)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:91
2021-02-20 16:14:33 +00:00
qw422016.N().S(`
`)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:92
2021-02-20 16:14:33 +00:00
}
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:92
2021-02-20 16:14:33 +00:00
qw422016.N().S(`
</article>
<section class="prevnext">
`)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:95
2021-02-20 16:14:33 +00:00
if prevHyphaName != "" {
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:95
2021-02-20 16:14:33 +00:00
qw422016.N().S(`
<a class="prevnext__el prevnext__prev" href="/hypha/`)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:96
2021-02-20 16:14:33 +00:00
qw422016.E().S(prevHyphaName)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:96
2021-02-20 16:14:33 +00:00
qw422016.N().S(`" rel="prev">← `)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:96
2021-02-20 16:14:33 +00:00
qw422016.E().S(util.BeautifulName(path.Base(prevHyphaName)))
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:96
2021-02-20 16:14:33 +00:00
qw422016.N().S(`</a>
`)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:97
2021-02-20 16:14:33 +00:00
}
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:97
2021-02-20 16:14:33 +00:00
qw422016.N().S(`
`)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:98
2021-02-20 16:14:33 +00:00
if nextHyphaName != "" {
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:98
2021-02-20 16:14:33 +00:00
qw422016.N().S(`
<a class="prevnext__el prevnext__next" href="/hypha/`)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:99
2021-02-20 16:14:33 +00:00
qw422016.E().S(nextHyphaName)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:99
2021-02-20 16:14:33 +00:00
qw422016.N().S(`" rel="next">`)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:99
2021-02-20 16:14:33 +00:00
qw422016.E().S(util.BeautifulName(path.Base(nextHyphaName)))
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:99
2021-02-20 16:14:33 +00:00
qw422016.N().S(` </a>
`)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:100
2021-02-20 16:14:33 +00:00
}
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:100
2021-02-20 16:14:33 +00:00
qw422016.N().S(`
</section>
`)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:102
2021-02-20 16:14:33 +00:00
StreamSubhyphaeHTML(qw422016, subhyphae)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:102
2021-02-20 16:14:33 +00:00
qw422016.N().S(`
</main>
`)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:104
2021-07-12 15:23:25 +00:00
streamsiblingHyphaeHTML(qw422016, siblings)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:104
2021-02-20 16:14:33 +00:00
qw422016.N().S(`
</div>
`)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:106
streamviewScripts(qw422016)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:106
qw422016.N().S(`
`)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:107
2021-02-20 16:14:33 +00:00
}
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:107
2021-02-20 16:14:33 +00:00
func WriteHyphaHTML(qq422016 qtio422016.Writer, rq *http.Request, h *hyphae.Hypha, contents string) {
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:107
2021-02-20 16:14:33 +00:00
qw422016 := qt422016.AcquireWriter(qq422016)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:107
2021-02-20 16:14:33 +00:00
StreamHyphaHTML(qw422016, rq, h, contents)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:107
2021-02-20 16:14:33 +00:00
qt422016.ReleaseWriter(qw422016)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:107
2021-02-20 16:14:33 +00:00
}
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:107
2021-02-20 16:14:33 +00:00
func HyphaHTML(rq *http.Request, h *hyphae.Hypha, contents string) string {
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:107
2021-02-20 16:14:33 +00:00
qb422016 := qt422016.AcquireByteBuffer()
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:107
2021-02-20 16:14:33 +00:00
WriteHyphaHTML(qb422016, rq, h, contents)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:107
2021-02-20 16:14:33 +00:00
qs422016 := string(qb422016.B)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:107
2021-02-20 16:14:33 +00:00
qt422016.ReleaseByteBuffer(qb422016)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:107
2021-02-20 16:14:33 +00:00
return qs422016
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:107
2021-02-20 16:14:33 +00:00
}
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:109
2021-02-20 16:14:33 +00:00
func StreamRevisionHTML(qw422016 *qt422016.Writer, rq *http.Request, h *hyphae.Hypha, contents, revHash string) {
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:109
2021-02-20 16:14:33 +00:00
qw422016.N().S(`
`)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:111
2021-07-12 15:23:25 +00:00
siblings, subhyphae, _, _ := tree.Tree(h.Name)
2021-02-20 16:14:33 +00:00
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:112
2021-02-20 16:14:33 +00:00
qw422016.N().S(`
`)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:113
2021-02-20 16:14:33 +00:00
StreamNavHTML(qw422016, rq, h.Name, "revision", revHash)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:113
2021-02-20 16:14:33 +00:00
qw422016.N().S(`
<div class="layout">
<main class="main-width">
<article>
<p>Please note that viewing binary parts of hyphae is not supported in history for now.</p>
`)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:118
2021-02-20 16:14:33 +00:00
qw422016.N().S(NaviTitleHTML(h))
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:118
2021-02-20 16:14:33 +00:00
qw422016.N().S(`
`)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:119
2021-02-20 16:14:33 +00:00
qw422016.N().S(contents)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:119
2021-02-20 16:14:33 +00:00
qw422016.N().S(`
</article>
`)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:121
2021-02-20 16:14:33 +00:00
StreamSubhyphaeHTML(qw422016, subhyphae)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:121
2021-02-20 16:14:33 +00:00
qw422016.N().S(`
</main>
`)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:123
2021-07-12 15:23:25 +00:00
streamsiblingHyphaeHTML(qw422016, siblings)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:123
2021-02-20 16:14:33 +00:00
qw422016.N().S(`
</div>
`)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:125
streamviewScripts(qw422016)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:125
qw422016.N().S(`
`)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:126
2021-02-20 16:14:33 +00:00
}
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:126
2021-02-20 16:14:33 +00:00
func WriteRevisionHTML(qq422016 qtio422016.Writer, rq *http.Request, h *hyphae.Hypha, contents, revHash string) {
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:126
2021-02-20 16:14:33 +00:00
qw422016 := qt422016.AcquireWriter(qq422016)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:126
2021-02-20 16:14:33 +00:00
StreamRevisionHTML(qw422016, rq, h, contents, revHash)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:126
2021-02-20 16:14:33 +00:00
qt422016.ReleaseWriter(qw422016)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:126
2021-02-20 16:14:33 +00:00
}
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:126
2021-02-20 16:14:33 +00:00
func RevisionHTML(rq *http.Request, h *hyphae.Hypha, contents, revHash string) string {
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:126
2021-02-20 16:14:33 +00:00
qb422016 := qt422016.AcquireByteBuffer()
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:126
2021-02-20 16:14:33 +00:00
WriteRevisionHTML(qb422016, rq, h, contents, revHash)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:126
2021-02-20 16:14:33 +00:00
qs422016 := string(qb422016.B)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:126
2021-02-20 16:14:33 +00:00
qt422016.ReleaseByteBuffer(qb422016)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:126
2021-02-20 16:14:33 +00:00
return qs422016
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:126
}
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:128
func streamviewScripts(qw422016 *qt422016.Writer) {
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:128
qw422016.N().S(`
`)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:129
for _, scriptPath := range cfg.ViewScripts {
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:129
qw422016.N().S(`
<script src="`)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:130
qw422016.E().S(scriptPath)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:130
qw422016.N().S(`"></script>
`)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:131
}
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:131
qw422016.N().S(`
`)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:132
}
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:132
func writeviewScripts(qq422016 qtio422016.Writer) {
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:132
qw422016 := qt422016.AcquireWriter(qq422016)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:132
streamviewScripts(qw422016)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:132
qt422016.ReleaseWriter(qw422016)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:132
}
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:132
func viewScripts() string {
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:132
qb422016 := qt422016.AcquireByteBuffer()
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:132
writeviewScripts(qb422016)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:132
qs422016 := string(qb422016.B)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:132
qt422016.ReleaseByteBuffer(qb422016)
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:132
return qs422016
2021-05-25 07:34:04 +00:00
//line views/readers.qtpl:132
2021-02-20 16:14:33 +00:00
}