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.
|
|
|
|
|
2021-02-23 14:25:07 +00:00
|
|
|
//line views/mutators.qtpl:1
|
|
|
|
package views
|
2020-08-31 17:52:26 +00:00
|
|
|
|
2021-02-23 14:25:07 +00:00
|
|
|
//line views/mutators.qtpl:1
|
2021-09-06 17:46:34 +00:00
|
|
|
import "fmt"
|
|
|
|
|
|
|
|
//line views/mutators.qtpl:2
|
2020-11-16 15:26:03 +00:00
|
|
|
import "net/http"
|
|
|
|
|
2021-09-06 17:46:34 +00:00
|
|
|
//line views/mutators.qtpl:4
|
2021-05-22 18:05:14 +00:00
|
|
|
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"
|
2021-04-05 18:29:45 +00:00
|
|
|
|
2021-08-08 19:38:41 +00:00
|
|
|
//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(`
|
2022-02-01 10:38:47 +00:00
|
|
|
<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>
|
2021-04-05 18:29:45 +00:00
|
|
|
<section class="edit-toolbar__buttons">
|
2021-04-05 17:38:44 +00:00
|
|
|
`)
|
2021-09-06 17:46:34 +00:00
|
|
|
//line views/mutators.qtpl:12
|
2021-04-05 17:38:44 +00:00
|
|
|
for _, el := range []struct {
|
|
|
|
class string
|
|
|
|
display string
|
|
|
|
}{
|
2022-02-18 08:57:15 +00:00
|
|
|
{"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")},
|
2021-04-05 18:29:45 +00:00
|
|
|
} {
|
2022-02-18 08:57:15 +00:00
|
|
|
//line views/mutators.qtpl:36
|
2021-04-05 18:29:45 +00:00
|
|
|
qw422016.N().S(`
|
2022-02-18 08:57:15 +00:00
|
|
|
<button class="btn edit-toolbar__btn edit-toolbar__`)
|
|
|
|
//line views/mutators.qtpl:37
|
2021-04-05 18:29:45 +00:00
|
|
|
qw422016.E().S(el.class)
|
2022-02-18 08:57:15 +00:00
|
|
|
//line views/mutators.qtpl:37
|
2021-04-05 18:29:45 +00:00
|
|
|
qw422016.N().S(`">
|
|
|
|
`)
|
2022-02-18 08:57:15 +00:00
|
|
|
//line views/mutators.qtpl:38
|
2021-04-05 18:29:45 +00:00
|
|
|
qw422016.N().S(el.display)
|
2022-02-18 08:57:15 +00:00
|
|
|
//line views/mutators.qtpl:38
|
2021-04-05 18:29:45 +00:00
|
|
|
qw422016.N().S(`
|
|
|
|
</button>
|
|
|
|
`)
|
2022-02-18 08:57:15 +00:00
|
|
|
//line views/mutators.qtpl:40
|
2021-04-05 18:29:45 +00:00
|
|
|
}
|
2022-02-18 08:57:15 +00:00
|
|
|
//line views/mutators.qtpl:40
|
2021-04-05 18:29:45 +00:00
|
|
|
qw422016.N().S(`
|
|
|
|
</section>
|
2021-09-06 17:46:34 +00:00
|
|
|
<p class="edit-toolbar__ad">`)
|
2022-02-18 08:57:15 +00:00
|
|
|
//line views/mutators.qtpl:42
|
2022-02-03 18:47:23 +00:00
|
|
|
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"))}))
|
2022-02-18 08:57:15 +00:00
|
|
|
//line views/mutators.qtpl:42
|
2021-09-06 17:46:34 +00:00
|
|
|
qw422016.N().S(`</p>
|
2022-02-01 10:38:47 +00:00
|
|
|
</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">`)
|
2022-02-18 08:57:15 +00:00
|
|
|
//line views/mutators.qtpl:45
|
2021-09-06 17:46:34 +00:00
|
|
|
qw422016.E().S(lc.Get("edit.actions"))
|
2022-02-18 08:57:15 +00:00
|
|
|
//line views/mutators.qtpl:45
|
2021-09-06 17:46:34 +00:00
|
|
|
qw422016.N().S(`</h2>
|
2021-04-05 18:29:45 +00:00
|
|
|
<section class="edit-toolbar__buttons">
|
|
|
|
`)
|
2022-02-18 08:57:15 +00:00
|
|
|
//line views/mutators.qtpl:47
|
2021-04-05 18:29:45 +00:00
|
|
|
for _, el := range []struct {
|
|
|
|
class string
|
|
|
|
display string
|
|
|
|
}{
|
2022-02-18 08:57:15 +00:00
|
|
|
{"date", lc.Get("edit.date")},
|
|
|
|
{"time", lc.Get("edit.time")},
|
2021-04-05 17:38:44 +00:00
|
|
|
} {
|
2022-02-18 08:57:15 +00:00
|
|
|
//line views/mutators.qtpl:53
|
2021-04-05 17:38:44 +00:00
|
|
|
qw422016.N().S(`
|
2022-02-18 08:57:15 +00:00
|
|
|
<button class="btn edit-toolbar__btn edit-toolbar__`)
|
|
|
|
//line views/mutators.qtpl:54
|
2021-04-05 17:38:44 +00:00
|
|
|
qw422016.E().S(el.class)
|
2022-02-18 08:57:15 +00:00
|
|
|
//line views/mutators.qtpl:54
|
2021-04-05 17:38:44 +00:00
|
|
|
qw422016.N().S(`">
|
|
|
|
`)
|
2022-02-18 08:57:15 +00:00
|
|
|
//line views/mutators.qtpl:55
|
2021-04-05 17:38:44 +00:00
|
|
|
qw422016.N().S(el.display)
|
2022-02-18 08:57:15 +00:00
|
|
|
//line views/mutators.qtpl:55
|
2021-04-05 17:38:44 +00:00
|
|
|
qw422016.N().S(`
|
|
|
|
</button>
|
|
|
|
`)
|
2022-02-18 08:57:15 +00:00
|
|
|
//line views/mutators.qtpl:57
|
2021-04-05 17:38:44 +00:00
|
|
|
}
|
2022-02-18 08:57:15 +00:00
|
|
|
//line views/mutators.qtpl:57
|
2021-04-05 17:38:44 +00:00
|
|
|
qw422016.N().S(`
|
2021-04-05 18:29:45 +00:00
|
|
|
`)
|
2022-02-18 08:57:15 +00:00
|
|
|
//line views/mutators.qtpl:58
|
2021-04-05 18:29:45 +00:00
|
|
|
if u.Group != "anon" {
|
2022-02-18 08:57:15 +00:00
|
|
|
//line views/mutators.qtpl:58
|
2021-04-05 18:29:45 +00:00
|
|
|
qw422016.N().S(`
|
2022-02-18 08:57:15 +00:00
|
|
|
<button class="btn edit-toolbar__btn edit-toolbar__user-link">
|
2021-09-06 17:46:34 +00:00
|
|
|
`)
|
2022-02-18 08:57:15 +00:00
|
|
|
//line views/mutators.qtpl:60
|
2021-09-06 17:46:34 +00:00
|
|
|
qw422016.E().S(lc.Get("edit.selflink"))
|
2022-02-18 08:57:15 +00:00
|
|
|
//line views/mutators.qtpl:60
|
2021-09-06 17:46:34 +00:00
|
|
|
qw422016.N().S(`
|
2021-04-05 18:29:45 +00:00
|
|
|
</button>
|
|
|
|
`)
|
2022-02-18 08:57:15 +00:00
|
|
|
//line views/mutators.qtpl:62
|
2021-04-05 18:29:45 +00:00
|
|
|
}
|
2022-02-18 08:57:15 +00:00
|
|
|
//line views/mutators.qtpl:62
|
2021-04-05 18:29:45 +00:00
|
|
|
qw422016.N().S(`
|
|
|
|
</section>
|
2021-03-20 17:48:23 +00:00
|
|
|
</aside>
|
2021-06-12 13:51:28 +00:00
|
|
|
<script src="/static/toolbar.js"></script>
|
2021-03-20 17:48:23 +00:00
|
|
|
`)
|
2022-02-18 08:57:15 +00:00
|
|
|
//line views/mutators.qtpl:66
|
2021-03-20 17:48:23 +00:00
|
|
|
}
|
|
|
|
|
2022-02-18 08:57:15 +00:00
|
|
|
//line views/mutators.qtpl:66
|
2021-09-06 17:46:34 +00:00
|
|
|
func WriteToolbar(qq422016 qtio422016.Writer, u *user.User, lc *l18n.Localizer) {
|
2022-02-18 08:57:15 +00:00
|
|
|
//line views/mutators.qtpl:66
|
2021-03-20 17:48:23 +00:00
|
|
|
qw422016 := qt422016.AcquireWriter(qq422016)
|
2022-02-18 08:57:15 +00:00
|
|
|
//line views/mutators.qtpl:66
|
2021-09-06 17:46:34 +00:00
|
|
|
StreamToolbar(qw422016, u, lc)
|
2022-02-18 08:57:15 +00:00
|
|
|
//line views/mutators.qtpl:66
|
2021-03-20 17:48:23 +00:00
|
|
|
qt422016.ReleaseWriter(qw422016)
|
2022-02-18 08:57:15 +00:00
|
|
|
//line views/mutators.qtpl:66
|
2021-03-20 17:48:23 +00:00
|
|
|
}
|
|
|
|
|
2022-02-18 08:57:15 +00:00
|
|
|
//line views/mutators.qtpl:66
|
2021-09-06 17:46:34 +00:00
|
|
|
func Toolbar(u *user.User, lc *l18n.Localizer) string {
|
2022-02-18 08:57:15 +00:00
|
|
|
//line views/mutators.qtpl:66
|
2021-03-20 17:48:23 +00:00
|
|
|
qb422016 := qt422016.AcquireByteBuffer()
|
2022-02-18 08:57:15 +00:00
|
|
|
//line views/mutators.qtpl:66
|
2021-09-06 17:46:34 +00:00
|
|
|
WriteToolbar(qb422016, u, lc)
|
2022-02-18 08:57:15 +00:00
|
|
|
//line views/mutators.qtpl:66
|
2021-03-20 17:48:23 +00:00
|
|
|
qs422016 := string(qb422016.B)
|
2022-02-18 08:57:15 +00:00
|
|
|
//line views/mutators.qtpl:66
|
2021-03-20 17:48:23 +00:00
|
|
|
qt422016.ReleaseByteBuffer(qb422016)
|
2022-02-18 08:57:15 +00:00
|
|
|
//line views/mutators.qtpl:66
|
2021-03-20 17:48:23 +00:00
|
|
|
return qs422016
|
2022-02-18 08:57:15 +00:00
|
|
|
//line views/mutators.qtpl:66
|
2021-03-20 17:48:23 +00:00
|
|
|
}
|
|
|
|
|
2022-02-18 08:57:15 +00:00
|
|
|
//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) {
|
2022-02-18 08:57:15 +00:00
|
|
|
//line views/mutators.qtpl:68
|
2021-09-06 17:46:34 +00:00
|
|
|
qw422016.N().S(`
|
|
|
|
`)
|
2022-02-18 08:57:15 +00:00
|
|
|
//line views/mutators.qtpl:70
|
2021-09-06 17:46:34 +00:00
|
|
|
lc := l18n.FromRequest(rq)
|
|
|
|
|
2022-02-18 08:57:15 +00:00
|
|
|
//line views/mutators.qtpl:71
|
2021-03-20 17:48:23 +00:00
|
|
|
qw422016.N().S(`
|
2021-01-26 05:41:57 +00:00
|
|
|
<main class="main-width edit edit_no-preview">
|
2020-11-16 15:26:03 +00:00
|
|
|
<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
|
2020-11-16 15:26:03 +00:00
|
|
|
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(`
|
2021-06-13 16:29:54 +00:00
|
|
|
<textarea name="text" class="edit-form__textarea" autofocus>`)
|
2022-04-21 16:05:17 +00:00
|
|
|
//line views/mutators.qtpl:77
|
2020-11-16 15:26:03 +00:00
|
|
|
qw422016.E().S(textAreaFill)
|
2022-04-21 16:05:17 +00:00
|
|
|
//line views/mutators.qtpl:77
|
2020-11-16 15:26:03 +00:00
|
|
|
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="`)
|
2022-04-21 16:05:17 +00:00
|
|
|
//line views/mutators.qtpl:79
|
2021-09-06 17:46:34 +00:00
|
|
|
qw422016.E().S(lc.Get("edit.tag"))
|
2022-04-21 16:05:17 +00:00
|
|
|
//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">`)
|
2022-04-21 16:05:17 +00:00
|
|
|
//line views/mutators.qtpl:82
|
2021-09-06 17:46:34 +00:00
|
|
|
qw422016.E().S(lc.Get("edit.save"))
|
2022-04-21 16:05:17 +00:00
|
|
|
//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">`)
|
2022-04-21 16:05:17 +00:00
|
|
|
//line views/mutators.qtpl:83
|
2021-09-06 17:46:34 +00:00
|
|
|
qw422016.E().S(lc.Get("edit.preview"))
|
2022-04-21 16:05:17 +00:00
|
|
|
//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/`)
|
2022-04-21 16:05:17 +00:00
|
|
|
//line views/mutators.qtpl:84
|
2020-11-16 15:26:03 +00:00
|
|
|
qw422016.E().S(hyphaName)
|
2022-04-21 16:05:17 +00:00
|
|
|
//line views/mutators.qtpl:84
|
2021-09-06 17:46:34 +00:00
|
|
|
qw422016.N().S(`" class="btn btn_weak">`)
|
2022-04-21 16:05:17 +00:00
|
|
|
//line views/mutators.qtpl:84
|
2021-09-06 17:46:34 +00:00
|
|
|
qw422016.E().S(lc.Get("ui.cancel"))
|
2022-04-21 16:05:17 +00:00
|
|
|
//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>
|
2020-11-16 15:26:03 +00:00
|
|
|
</form>
|
|
|
|
</main>
|
2021-03-20 17:48:23 +00:00
|
|
|
`)
|
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
|
2021-03-20 17:48:23 +00:00
|
|
|
qw422016.N().S(`
|
2020-08-31 17:52:26 +00:00
|
|
|
`)
|
2022-04-24 12:19:52 +00:00
|
|
|
//line views/mutators.qtpl:89
|
2021-05-22 18:05:14 +00:00
|
|
|
streameditScripts(qw422016)
|
2022-04-24 12:19:52 +00:00
|
|
|
//line views/mutators.qtpl:89
|
2021-05-22 18:05:14 +00:00
|
|
|
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-01-16 16:42:18 +00:00
|
|
|
<form method="post" class="edit-form"
|
|
|
|
action="/upload-text/`)
|
2022-04-29 09:33:05 +00:00
|
|
|
//line views/mutators.qtpl:98
|
2021-01-16 16:42:18 +00:00
|
|
|
qw422016.E().S(hyphaName)
|
2022-04-29 09:33:05 +00:00
|
|
|
//line views/mutators.qtpl:98
|
2021-01-16 16:42:18 +00:00
|
|
|
qw422016.N().S(`">
|
2022-04-29 09:33:05 +00:00
|
|
|
<h1 class="edit__title">`)
|
|
|
|
//line views/mutators.qtpl:99
|
|
|
|
qw422016.N().S(fmt.Sprintf(lc.Get("edit.title"), beautifulLink(hyphaName)))
|
|
|
|
//line views/mutators.qtpl:99
|
|
|
|
qw422016.N().S(`</h1>
|
|
|
|
`)
|
|
|
|
//line views/mutators.qtpl:100
|
|
|
|
qw422016.N().S(warning)
|
|
|
|
//line views/mutators.qtpl:100
|
|
|
|
qw422016.N().S(`
|
2021-06-20 05:56:19 +00:00
|
|
|
<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>
|
2022-04-29 09:33:05 +00:00
|
|
|
<p class="edit-form__message-zone">
|
|
|
|
<input id="text" type="text" name="message" class="edit-form__message" placeholder="`)
|
|
|
|
//line views/mutators.qtpl:103
|
|
|
|
qw422016.E().S(lc.Get("edit.tag"))
|
|
|
|
//line views/mutators.qtpl:103
|
|
|
|
qw422016.N().S(`" aria-label="`)
|
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-06-14 00:38:43 +00:00
|
|
|
qw422016.N().S(`">
|
2022-04-29 09:33:05 +00:00
|
|
|
</p>
|
|
|
|
<p class="edit-form__buttons">
|
|
|
|
<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>
|
2022-04-29 09:33:05 +00:00
|
|
|
<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>
|
2022-04-29 09:33:05 +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>
|
2022-04-29 09:33:05 +00:00
|
|
|
</p>
|
2021-01-16 16:42:18 +00:00
|
|
|
</form>
|
2021-09-06 17:46:34 +00:00
|
|
|
<p class="warning">`)
|
2022-04-29 09:33:05 +00:00
|
|
|
//line views/mutators.qtpl:111
|
2021-09-06 17:46:34 +00:00
|
|
|
qw422016.E().S(lc.Get("edit.preview_tip"))
|
2022-04-29 09:33:05 +00:00
|
|
|
//line views/mutators.qtpl:111
|
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-29 09:33:05 +00:00
|
|
|
//line views/mutators.qtpl:112
|
2021-01-16 16:42:18 +00:00
|
|
|
qw422016.N().S(renderedPage)
|
2022-04-29 09:33:05 +00:00
|
|
|
//line views/mutators.qtpl:112
|
2021-03-09 15:51:37 +00:00
|
|
|
qw422016.N().S(`</article>
|
2021-01-16 16:42:18 +00:00
|
|
|
</main>
|
2021-03-20 17:48:23 +00:00
|
|
|
`)
|
2022-04-29 09:33:05 +00:00
|
|
|
//line views/mutators.qtpl:114
|
2021-09-06 17:46:34 +00:00
|
|
|
qw422016.N().S(Toolbar(user.FromRequest(rq), lc))
|
2022-04-29 09:33:05 +00:00
|
|
|
//line views/mutators.qtpl:114
|
2021-03-20 17:48:23 +00:00
|
|
|
qw422016.N().S(`
|
2021-01-16 16:42:18 +00:00
|
|
|
`)
|
2022-04-29 09:33:05 +00:00
|
|
|
//line views/mutators.qtpl:115
|
2021-05-22 18:05:14 +00:00
|
|
|
streameditScripts(qw422016)
|
2022-04-29 09:33:05 +00:00
|
|
|
//line views/mutators.qtpl:115
|
2021-05-22 18:05:14 +00:00
|
|
|
qw422016.N().S(`
|
|
|
|
`)
|
2022-04-29 09:33:05 +00:00
|
|
|
//line views/mutators.qtpl:116
|
2021-01-16 16:42:18 +00:00
|
|
|
}
|
|
|
|
|
2022-04-29 09:33:05 +00:00
|
|
|
//line views/mutators.qtpl:116
|
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-29 09:33:05 +00:00
|
|
|
//line views/mutators.qtpl:116
|
2021-01-16 16:42:18 +00:00
|
|
|
qw422016 := qt422016.AcquireWriter(qq422016)
|
2022-04-29 09:33:05 +00:00
|
|
|
//line views/mutators.qtpl:116
|
2022-03-20 21:24:40 +00:00
|
|
|
StreamPreview(qw422016, rq, hyphaName, textAreaFill, message, warning, renderedPage)
|
2022-04-29 09:33:05 +00:00
|
|
|
//line views/mutators.qtpl:116
|
2021-01-16 16:42:18 +00:00
|
|
|
qt422016.ReleaseWriter(qw422016)
|
2022-04-29 09:33:05 +00:00
|
|
|
//line views/mutators.qtpl:116
|
2021-01-16 16:42:18 +00:00
|
|
|
}
|
|
|
|
|
2022-04-29 09:33:05 +00:00
|
|
|
//line views/mutators.qtpl:116
|
2022-03-20 21:24:40 +00:00
|
|
|
func Preview(rq *http.Request, hyphaName, textAreaFill, message, warning string, renderedPage string) string {
|
2022-04-29 09:33:05 +00:00
|
|
|
//line views/mutators.qtpl:116
|
2021-01-16 16:42:18 +00:00
|
|
|
qb422016 := qt422016.AcquireByteBuffer()
|
2022-04-29 09:33:05 +00:00
|
|
|
//line views/mutators.qtpl:116
|
2022-03-20 21:24:40 +00:00
|
|
|
WritePreview(qb422016, rq, hyphaName, textAreaFill, message, warning, renderedPage)
|
2022-04-29 09:33:05 +00:00
|
|
|
//line views/mutators.qtpl:116
|
2021-05-22 18:05:14 +00:00
|
|
|
qs422016 := string(qb422016.B)
|
2022-04-29 09:33:05 +00:00
|
|
|
//line views/mutators.qtpl:116
|
2021-05-22 18:05:14 +00:00
|
|
|
qt422016.ReleaseByteBuffer(qb422016)
|
2022-04-29 09:33:05 +00:00
|
|
|
//line views/mutators.qtpl:116
|
2021-05-22 18:05:14 +00:00
|
|
|
return qs422016
|
2022-04-29 09:33:05 +00:00
|
|
|
//line views/mutators.qtpl:116
|
2021-05-22 18:05:14 +00:00
|
|
|
}
|
|
|
|
|
2022-04-29 09:33:05 +00:00
|
|
|
//line views/mutators.qtpl:118
|
2021-05-22 18:05:14 +00:00
|
|
|
func streameditScripts(qw422016 *qt422016.Writer) {
|
2022-04-29 09:33:05 +00:00
|
|
|
//line views/mutators.qtpl:118
|
2021-05-22 18:05:14 +00:00
|
|
|
qw422016.N().S(`
|
2021-07-13 09:28:21 +00:00
|
|
|
<script src="/static/editor.js"></script>
|
2021-05-22 18:05:14 +00:00
|
|
|
`)
|
2022-04-29 09:33:05 +00:00
|
|
|
//line views/mutators.qtpl:120
|
2021-05-22 18:05:14 +00:00
|
|
|
for _, scriptPath := range cfg.EditScripts {
|
2022-04-29 09:33:05 +00:00
|
|
|
//line views/mutators.qtpl:120
|
2021-05-22 18:05:14 +00:00
|
|
|
qw422016.N().S(`
|
|
|
|
<script src="`)
|
2022-04-29 09:33:05 +00:00
|
|
|
//line views/mutators.qtpl:121
|
2021-05-22 18:05:14 +00:00
|
|
|
qw422016.E().S(scriptPath)
|
2022-04-29 09:33:05 +00:00
|
|
|
//line views/mutators.qtpl:121
|
2021-05-22 18:05:14 +00:00
|
|
|
qw422016.N().S(`"></script>
|
|
|
|
`)
|
2022-04-29 09:33:05 +00:00
|
|
|
//line views/mutators.qtpl:122
|
2021-05-22 18:05:14 +00:00
|
|
|
}
|
2022-04-29 09:33:05 +00:00
|
|
|
//line views/mutators.qtpl:122
|
2021-05-22 18:05:14 +00:00
|
|
|
qw422016.N().S(`
|
|
|
|
`)
|
2022-04-29 09:33:05 +00:00
|
|
|
//line views/mutators.qtpl:123
|
2021-05-22 18:05:14 +00:00
|
|
|
}
|
|
|
|
|
2022-04-29 09:33:05 +00:00
|
|
|
//line views/mutators.qtpl:123
|
2021-05-22 18:05:14 +00:00
|
|
|
func writeeditScripts(qq422016 qtio422016.Writer) {
|
2022-04-29 09:33:05 +00:00
|
|
|
//line views/mutators.qtpl:123
|
2021-05-22 18:05:14 +00:00
|
|
|
qw422016 := qt422016.AcquireWriter(qq422016)
|
2022-04-29 09:33:05 +00:00
|
|
|
//line views/mutators.qtpl:123
|
2021-05-22 18:05:14 +00:00
|
|
|
streameditScripts(qw422016)
|
2022-04-29 09:33:05 +00:00
|
|
|
//line views/mutators.qtpl:123
|
2021-05-22 18:05:14 +00:00
|
|
|
qt422016.ReleaseWriter(qw422016)
|
2022-04-29 09:33:05 +00:00
|
|
|
//line views/mutators.qtpl:123
|
2021-05-22 18:05:14 +00:00
|
|
|
}
|
|
|
|
|
2022-04-29 09:33:05 +00:00
|
|
|
//line views/mutators.qtpl:123
|
2021-05-22 18:05:14 +00:00
|
|
|
func editScripts() string {
|
2022-04-29 09:33:05 +00:00
|
|
|
//line views/mutators.qtpl:123
|
2021-05-22 18:05:14 +00:00
|
|
|
qb422016 := qt422016.AcquireByteBuffer()
|
2022-04-29 09:33:05 +00:00
|
|
|
//line views/mutators.qtpl:123
|
2021-05-22 18:05:14 +00:00
|
|
|
writeeditScripts(qb422016)
|
2022-04-29 09:33:05 +00:00
|
|
|
//line views/mutators.qtpl:123
|
2021-01-16 16:42:18 +00:00
|
|
|
qs422016 := string(qb422016.B)
|
2022-04-29 09:33:05 +00:00
|
|
|
//line views/mutators.qtpl:123
|
2021-01-16 16:42:18 +00:00
|
|
|
qt422016.ReleaseByteBuffer(qb422016)
|
2022-04-29 09:33:05 +00:00
|
|
|
//line views/mutators.qtpl:123
|
2021-01-16 16:42:18 +00:00
|
|
|
return qs422016
|
2022-04-29 09:33:05 +00:00
|
|
|
//line views/mutators.qtpl:123
|
2020-08-31 17:52:26 +00:00
|
|
|
}
|