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

452 lines
13 KiB
Go
Raw Normal View History

2021-01-24 12:52:40 +00:00
// Code generated by qtc from "mutators.qtpl". DO NOT EDIT.
2020-08-31 17:52:26 +00:00
// See https://github.com/valyala/quicktemplate for details.
//line views/mutators.qtpl:1
package views
2020-08-31 17:52:26 +00:00
//line views/mutators.qtpl:1
2021-09-06 17:46:34 +00:00
import "fmt"
//line views/mutators.qtpl:2
import "net/http"
2021-09-06 17:46:34 +00:00
//line views/mutators.qtpl:4
import "github.com/bouncepaw/mycorrhiza/cfg"
2021-09-06 17:46:34 +00:00
//line views/mutators.qtpl:5
import "github.com/bouncepaw/mycorrhiza/l18n"
//line views/mutators.qtpl:6
2021-09-06 17:46:34 +00:00
import "github.com/bouncepaw/mycorrhiza/user"
//line views/mutators.qtpl:8
2020-08-31 17:52:26 +00:00
import (
qtio422016 "io"
qt422016 "github.com/valyala/quicktemplate"
)
2021-09-06 17:46:34 +00:00
//line views/mutators.qtpl:8
2020-08-31 17:52:26 +00:00
var (
_ = qtio422016.Copy
_ = qt422016.AcquireByteBuffer
)
2021-09-06 17:46:34 +00:00
//line views/mutators.qtpl:8
func StreamToolbar(qw422016 *qt422016.Writer, u *user.User, lc *l18n.Localizer) {
//line views/mutators.qtpl:8
2020-08-31 17:52:26 +00:00
qw422016.N().S(`
<aside class="edit-toolbar markup-toolbar layout-card">
2021-09-06 17:46:34 +00:00
<h2 class="edit-toolbar__title layout-card__title">`)
//line views/mutators.qtpl:10
qw422016.E().S(lc.Get("edit.markup"))
//line views/mutators.qtpl:10
qw422016.N().S(`</h2>
<section class="edit-toolbar__buttons">
`)
2021-09-06 17:46:34 +00:00
//line views/mutators.qtpl:12
for _, el := range []struct {
class string
display string
}{
{"link", fmt.Sprintf("[[%s]]", lc.Get("edit.link"))},
{"titlelink", fmt.Sprintf("[[%s | %s]]", lc.Get("edit.link"), lc.Get("edit.link_title"))},
{"heading1", fmt.Sprintf("= %s", lc.Get("edit.heading"))},
{"heading2", fmt.Sprintf("== %s", lc.Get("edit.heading"))},
{"bold", fmt.Sprintf("<b>**%s**</b>", lc.Get("edit.bold"))},
{"italic", fmt.Sprintf("<i>//%s//</i>", lc.Get("edit.italic"))},
{"highlighted", fmt.Sprintf("<mark>++%s++</mark>", lc.Get("edit.highlight"))},
{"underline", fmt.Sprintf("<u>__%s__</u>", lc.Get("edit.underline"))},
{"monospace", fmt.Sprintf("<code>`%s`</code>", lc.Get("edit.mono"))},
{"lifted", fmt.Sprintf("<sup>^^%s^^</sup>", lc.Get("edit.super"))}, // inconsistent names: lifted, supertext. How cute ❤️
{"lowered", fmt.Sprintf("<sub>,,%s,,</sub>", lc.Get("edit.sub"))},
{"strikethrough", fmt.Sprintf("<strike>~~%s~~</strike>", lc.Get("edit.strike"))},
{"rocket", "=> " + lc.Get("edit.rocket")},
{"xcl", "<= " + lc.Get("edit.transclude")},
{"img", "<code>img {}</code>"},
{"table", "<code>table {}</code>"},
{"hr", lc.Get("edit.hr")},
{"codeblock", lc.Get("edit.code")},
{"bulletedlist", "* " + lc.Get("edit.bullets")},
{"numberedlist", "*. " + lc.Get("edit.numbers")},
} {
//line views/mutators.qtpl:36
qw422016.N().S(`
<button class="btn edit-toolbar__btn edit-toolbar__`)
//line views/mutators.qtpl:37
qw422016.E().S(el.class)
//line views/mutators.qtpl:37
qw422016.N().S(`">
`)
//line views/mutators.qtpl:38
qw422016.N().S(el.display)
//line views/mutators.qtpl:38
qw422016.N().S(`
</button>
`)
//line views/mutators.qtpl:40
}
//line views/mutators.qtpl:40
qw422016.N().S(`
</section>
2021-09-06 17:46:34 +00:00
<p class="edit-toolbar__ad">`)
//line views/mutators.qtpl:42
qw422016.N().S(lc.Get("edit.help", &l18n.Replacements{"link": fmt.Sprintf("<a href=\"/help/en/mycomarkup\" target=\"_blank\" class=\"shy-link\">%s</a>", lc.Get("edit.help_link"))}))
//line views/mutators.qtpl:42
2021-09-06 17:46:34 +00:00
qw422016.N().S(`</p>
</aside>
<aside class="edit-toolbar action-toolbar layout-card">
2021-09-06 17:46:34 +00:00
<h2 class="edit-toolbar__title layout-card__title">`)
//line views/mutators.qtpl:45
2021-09-06 17:46:34 +00:00
qw422016.E().S(lc.Get("edit.actions"))
//line views/mutators.qtpl:45
2021-09-06 17:46:34 +00:00
qw422016.N().S(`</h2>
<section class="edit-toolbar__buttons">
`)
//line views/mutators.qtpl:47
for _, el := range []struct {
class string
display string
}{
{"date", lc.Get("edit.date")},
{"time", lc.Get("edit.time")},
} {
//line views/mutators.qtpl:53
qw422016.N().S(`
<button class="btn edit-toolbar__btn edit-toolbar__`)
//line views/mutators.qtpl:54
qw422016.E().S(el.class)
//line views/mutators.qtpl:54
qw422016.N().S(`">
`)
//line views/mutators.qtpl:55
qw422016.N().S(el.display)
//line views/mutators.qtpl:55
qw422016.N().S(`
</button>
`)
//line views/mutators.qtpl:57
}
//line views/mutators.qtpl:57
qw422016.N().S(`
`)
//line views/mutators.qtpl:58
if u.Group != "anon" {
//line views/mutators.qtpl:58
qw422016.N().S(`
<button class="btn edit-toolbar__btn edit-toolbar__user-link">
2021-09-06 17:46:34 +00:00
`)
//line views/mutators.qtpl:60
2021-09-06 17:46:34 +00:00
qw422016.E().S(lc.Get("edit.selflink"))
//line views/mutators.qtpl:60
2021-09-06 17:46:34 +00:00
qw422016.N().S(`
</button>
`)
//line views/mutators.qtpl:62
}
//line views/mutators.qtpl:62
qw422016.N().S(`
</section>
</aside>
<script src="/static/toolbar.js"></script>
`)
//line views/mutators.qtpl:66
}
//line views/mutators.qtpl:66
2021-09-06 17:46:34 +00:00
func WriteToolbar(qq422016 qtio422016.Writer, u *user.User, lc *l18n.Localizer) {
//line views/mutators.qtpl:66
qw422016 := qt422016.AcquireWriter(qq422016)
//line views/mutators.qtpl:66
2021-09-06 17:46:34 +00:00
StreamToolbar(qw422016, u, lc)
//line views/mutators.qtpl:66
qt422016.ReleaseWriter(qw422016)
//line views/mutators.qtpl:66
}
//line views/mutators.qtpl:66
2021-09-06 17:46:34 +00:00
func Toolbar(u *user.User, lc *l18n.Localizer) string {
//line views/mutators.qtpl:66
qb422016 := qt422016.AcquireByteBuffer()
//line views/mutators.qtpl:66
2021-09-06 17:46:34 +00:00
WriteToolbar(qb422016, u, lc)
//line views/mutators.qtpl:66
qs422016 := string(qb422016.B)
//line views/mutators.qtpl:66
qt422016.ReleaseByteBuffer(qb422016)
//line views/mutators.qtpl:66
return qs422016
//line views/mutators.qtpl:66
}
//line views/mutators.qtpl:68
2022-03-20 21:24:40 +00:00
func StreamEditor(qw422016 *qt422016.Writer, rq *http.Request, hyphaName, textAreaFill, warning string) {
//line views/mutators.qtpl:68
2021-09-06 17:46:34 +00:00
qw422016.N().S(`
`)
//line views/mutators.qtpl:70
2021-09-06 17:46:34 +00:00
lc := l18n.FromRequest(rq)
//line views/mutators.qtpl:71
qw422016.N().S(`
2021-01-26 05:41:57 +00:00
<main class="main-width edit edit_no-preview">
<form method="post" class="edit-form"
action="/upload-text/`)
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:74
2020-08-31 17:52:26 +00:00
qw422016.E().S(hyphaName)
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:74
qw422016.N().S(`">
2022-04-24 12:19:52 +00:00
<h1 class="edit__title">`)
//line views/mutators.qtpl:75
qw422016.N().S(fmt.Sprintf(lc.Get("edit.title"), beautifulLink(hyphaName)))
//line views/mutators.qtpl:75
qw422016.N().S(`</h1>
`)
//line views/mutators.qtpl:76
qw422016.N().S(warning)
//line views/mutators.qtpl:76
qw422016.N().S(`
<textarea name="text" class="edit-form__textarea" autofocus>`)
//line views/mutators.qtpl:77
qw422016.E().S(textAreaFill)
//line views/mutators.qtpl:77
qw422016.N().S(`</textarea>
2022-04-24 12:19:52 +00:00
<p class="edit-form__message-zone">
<input id="text" type="text" name="message" class="edit-form__message" placeholder="`)
//line views/mutators.qtpl:79
2021-09-06 17:46:34 +00:00
qw422016.E().S(lc.Get("edit.tag"))
//line views/mutators.qtpl:79
2022-04-24 12:19:52 +00:00
qw422016.N().S(`" aria-label="`)
//line views/mutators.qtpl:79
qw422016.E().S(lc.Get("edit.tag"))
//line views/mutators.qtpl:79
qw422016.N().S(`">
</p>
<p class="edit-form__buttons">
<button type="submit" name="action" class="btn btn_accent edit-form__save" value="Save">`)
//line views/mutators.qtpl:82
2021-09-06 17:46:34 +00:00
qw422016.E().S(lc.Get("edit.save"))
//line views/mutators.qtpl:82
2021-09-06 17:46:34 +00:00
qw422016.N().S(`</button>
2022-04-24 12:19:52 +00:00
<button type="submit" name="action" class="btn edit-form__preview" value="Preview">`)
//line views/mutators.qtpl:83
2021-09-06 17:46:34 +00:00
qw422016.E().S(lc.Get("edit.preview"))
//line views/mutators.qtpl:83
2021-09-06 17:46:34 +00:00
qw422016.N().S(`</button>
2022-04-24 12:19:52 +00:00
<a href="/hypha/`)
//line views/mutators.qtpl:84
qw422016.E().S(hyphaName)
//line views/mutators.qtpl:84
2021-09-06 17:46:34 +00:00
qw422016.N().S(`" class="btn btn_weak">`)
//line views/mutators.qtpl:84
2021-09-06 17:46:34 +00:00
qw422016.E().S(lc.Get("ui.cancel"))
//line views/mutators.qtpl:84
2021-09-06 17:46:34 +00:00
qw422016.N().S(`</a>
2022-04-24 12:19:52 +00:00
</p>
</form>
</main>
`)
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:88
2021-09-06 17:46:34 +00:00
qw422016.N().S(Toolbar(user.FromRequest(rq), lc))
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:88
qw422016.N().S(`
2020-08-31 17:52:26 +00:00
`)
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:89
streameditScripts(qw422016)
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:89
qw422016.N().S(`
`)
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:90
2020-08-31 17:52:26 +00:00
}
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:90
2022-03-20 21:24:40 +00:00
func WriteEditor(qq422016 qtio422016.Writer, rq *http.Request, hyphaName, textAreaFill, warning string) {
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:90
2020-08-31 17:52:26 +00:00
qw422016 := qt422016.AcquireWriter(qq422016)
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:90
2022-03-20 21:24:40 +00:00
StreamEditor(qw422016, rq, hyphaName, textAreaFill, warning)
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:90
2020-08-31 17:52:26 +00:00
qt422016.ReleaseWriter(qw422016)
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:90
2020-08-31 17:52:26 +00:00
}
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:90
2022-03-20 21:24:40 +00:00
func Editor(rq *http.Request, hyphaName, textAreaFill, warning string) string {
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:90
2020-08-31 17:52:26 +00:00
qb422016 := qt422016.AcquireByteBuffer()
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:90
2022-03-20 21:24:40 +00:00
WriteEditor(qb422016, rq, hyphaName, textAreaFill, warning)
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:90
2020-08-31 17:52:26 +00:00
qs422016 := string(qb422016.B)
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:90
2020-08-31 17:52:26 +00:00
qt422016.ReleaseByteBuffer(qb422016)
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:90
2020-08-31 17:52:26 +00:00
return qs422016
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:90
2021-01-16 16:42:18 +00:00
}
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:92
2022-03-20 21:24:40 +00:00
func StreamPreview(qw422016 *qt422016.Writer, rq *http.Request, hyphaName, textAreaFill, message, warning string, renderedPage string) {
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:92
2021-09-06 17:46:34 +00:00
qw422016.N().S(`
`)
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:94
2021-09-06 17:46:34 +00:00
lc := l18n.FromRequest(rq)
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:95
2021-01-16 16:42:18 +00:00
qw422016.N().S(`
2021-01-26 05:41:57 +00:00
<main class="main-width edit edit_with-preview">
2021-09-06 17:46:34 +00:00
<h1 class="edit__title">`)
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:97
2021-09-06 17:46:34 +00:00
qw422016.N().S(fmt.Sprintf(lc.Get("edit.title"), beautifulLink(hyphaName)))
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:97
qw422016.N().S(`</h1>
2021-01-16 16:42:18 +00:00
`)
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:98
2021-01-16 16:42:18 +00:00
qw422016.N().S(warning)
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:98
2021-01-16 16:42:18 +00:00
qw422016.N().S(`
<form method="post" class="edit-form"
action="/upload-text/`)
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:100
2021-01-16 16:42:18 +00:00
qw422016.E().S(hyphaName)
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:100
2021-01-16 16:42:18 +00:00
qw422016.N().S(`">
<textarea name="text" class="edit-form__textarea" autofocus>`)
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:101
2021-01-16 16:42:18 +00:00
qw422016.E().S(textAreaFill)
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:101
2021-01-16 16:42:18 +00:00
qw422016.N().S(`</textarea>
2021-06-21 04:52:38 +00:00
<br><br>
2021-09-06 17:46:34 +00:00
<label for="text">`)
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:103
2021-09-06 17:46:34 +00:00
qw422016.E().S(lc.Get("edit.tag"))
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:103
2021-09-06 17:46:34 +00:00
qw422016.N().S(`</label><br>
2021-06-14 00:38:43 +00:00
<input id="text" type="text" name="message" class="edit-form__message" value="`)
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:104
2021-06-14 00:38:43 +00:00
qw422016.E().S(message)
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:104
2021-06-14 00:38:43 +00:00
qw422016.N().S(`">
2021-06-21 04:52:38 +00:00
<br><br>
2021-09-06 17:46:34 +00:00
<button type="submit" name="action" class="btn btn_accent edit-form__save" value="Save">`)
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:106
2021-09-06 17:46:34 +00:00
qw422016.E().S(lc.Get("edit.save"))
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:106
2021-09-06 17:46:34 +00:00
qw422016.N().S(`</button>
<button type="submit" name="action" class="btn edit-form__preview" value="Preview">`)
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:107
2021-09-06 17:46:34 +00:00
qw422016.E().S(lc.Get("edit.preview"))
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:107
2021-09-06 17:46:34 +00:00
qw422016.N().S(`</button>
2021-06-14 07:13:29 +00:00
<a href="/hypha/`)
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:108
2021-01-16 16:42:18 +00:00
qw422016.E().S(hyphaName)
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:108
2021-09-06 17:46:34 +00:00
qw422016.N().S(`" class="btn btn_weak">`)
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:108
2021-09-06 17:46:34 +00:00
qw422016.E().S(lc.Get("ui.cancel"))
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:108
2021-09-06 17:46:34 +00:00
qw422016.N().S(`</a>
2021-01-16 16:42:18 +00:00
</form>
2021-09-06 17:46:34 +00:00
<p class="warning">`)
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:110
2021-09-06 17:46:34 +00:00
qw422016.E().S(lc.Get("edit.preview_tip"))
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:110
2021-09-06 17:46:34 +00:00
qw422016.N().S(`</p>
2021-03-09 15:51:37 +00:00
<article class="edit__preview">`)
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:111
2021-01-16 16:42:18 +00:00
qw422016.N().S(renderedPage)
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:111
2021-03-09 15:51:37 +00:00
qw422016.N().S(`</article>
2021-01-16 16:42:18 +00:00
</main>
`)
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:113
2021-09-06 17:46:34 +00:00
qw422016.N().S(Toolbar(user.FromRequest(rq), lc))
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:113
qw422016.N().S(`
2021-01-16 16:42:18 +00:00
`)
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:114
streameditScripts(qw422016)
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:114
qw422016.N().S(`
`)
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:115
2021-01-16 16:42:18 +00:00
}
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:115
2022-03-20 21:24:40 +00:00
func WritePreview(qq422016 qtio422016.Writer, rq *http.Request, hyphaName, textAreaFill, message, warning string, renderedPage string) {
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:115
2021-01-16 16:42:18 +00:00
qw422016 := qt422016.AcquireWriter(qq422016)
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:115
2022-03-20 21:24:40 +00:00
StreamPreview(qw422016, rq, hyphaName, textAreaFill, message, warning, renderedPage)
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:115
2021-01-16 16:42:18 +00:00
qt422016.ReleaseWriter(qw422016)
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:115
2021-01-16 16:42:18 +00:00
}
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:115
2022-03-20 21:24:40 +00:00
func Preview(rq *http.Request, hyphaName, textAreaFill, message, warning string, renderedPage string) string {
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:115
2021-01-16 16:42:18 +00:00
qb422016 := qt422016.AcquireByteBuffer()
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:115
2022-03-20 21:24:40 +00:00
WritePreview(qb422016, rq, hyphaName, textAreaFill, message, warning, renderedPage)
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:115
qs422016 := string(qb422016.B)
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:115
qt422016.ReleaseByteBuffer(qb422016)
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:115
return qs422016
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:115
}
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:117
func streameditScripts(qw422016 *qt422016.Writer) {
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:117
qw422016.N().S(`
<script src="/static/editor.js"></script>
`)
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:119
for _, scriptPath := range cfg.EditScripts {
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:119
qw422016.N().S(`
<script src="`)
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:120
qw422016.E().S(scriptPath)
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:120
qw422016.N().S(`"></script>
`)
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:121
}
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:121
qw422016.N().S(`
`)
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:122
}
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:122
func writeeditScripts(qq422016 qtio422016.Writer) {
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:122
qw422016 := qt422016.AcquireWriter(qq422016)
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:122
streameditScripts(qw422016)
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:122
qt422016.ReleaseWriter(qw422016)
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:122
}
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:122
func editScripts() string {
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:122
qb422016 := qt422016.AcquireByteBuffer()
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:122
writeeditScripts(qb422016)
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:122
2021-01-16 16:42:18 +00:00
qs422016 := string(qb422016.B)
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:122
2021-01-16 16:42:18 +00:00
qt422016.ReleaseByteBuffer(qb422016)
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:122
2021-01-16 16:42:18 +00:00
return qs422016
2022-04-24 12:19:52 +00:00
//line views/mutators.qtpl:122
2020-08-31 17:52:26 +00:00
}