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
|
2020-11-16 15:26:03 +00:00
|
|
|
import "net/http"
|
|
|
|
|
2021-05-22 18:05:14 +00:00
|
|
|
//line views/mutators.qtpl:3
|
|
|
|
import "github.com/bouncepaw/mycorrhiza/cfg"
|
|
|
|
|
|
|
|
//line views/mutators.qtpl:4
|
2021-01-26 05:41:57 +00:00
|
|
|
import "github.com/bouncepaw/mycorrhiza/util"
|
|
|
|
|
2021-05-22 18:05:14 +00:00
|
|
|
//line views/mutators.qtpl:5
|
2021-04-05 18:29:45 +00:00
|
|
|
import "github.com/bouncepaw/mycorrhiza/user"
|
|
|
|
|
2021-05-22 18:05:14 +00:00
|
|
|
//line views/mutators.qtpl:7
|
2020-08-31 17:52:26 +00:00
|
|
|
import (
|
|
|
|
qtio422016 "io"
|
|
|
|
|
|
|
|
qt422016 "github.com/valyala/quicktemplate"
|
|
|
|
)
|
|
|
|
|
2021-05-22 18:05:14 +00:00
|
|
|
//line views/mutators.qtpl:7
|
2020-08-31 17:52:26 +00:00
|
|
|
var (
|
|
|
|
_ = qtio422016.Copy
|
|
|
|
_ = qt422016.AcquireByteBuffer
|
|
|
|
)
|
|
|
|
|
2021-05-22 18:05:14 +00:00
|
|
|
//line views/mutators.qtpl:7
|
2021-04-05 18:29:45 +00:00
|
|
|
func StreamToolbar(qw422016 *qt422016.Writer, u *user.User) {
|
2021-05-22 18:05:14 +00:00
|
|
|
//line views/mutators.qtpl:7
|
2020-08-31 17:52:26 +00:00
|
|
|
qw422016.N().S(`
|
2021-03-20 17:48:23 +00:00
|
|
|
<aside class="edit-toolbar layout-card">
|
2021-04-05 18:29:45 +00:00
|
|
|
<h2 class="edit-toolbar__title layout-card__title">Markup</h2>
|
|
|
|
<section class="edit-toolbar__buttons">
|
2021-04-05 17:38:44 +00:00
|
|
|
`)
|
2021-05-22 18:05:14 +00:00
|
|
|
//line views/mutators.qtpl:11
|
2021-04-05 17:38:44 +00:00
|
|
|
for _, el := range []struct {
|
|
|
|
class string
|
|
|
|
onclick string
|
|
|
|
display string
|
|
|
|
}{
|
2021-04-05 18:29:45 +00:00
|
|
|
{"link", "wrapLink()", "[[link]]"},
|
2021-04-06 09:04:57 +00:00
|
|
|
{"heading2", "insertHeading2()", "## heading"},
|
|
|
|
{"heading3", "insertHeading3()", "### heading"},
|
2021-04-05 17:38:44 +00:00
|
|
|
{"bold", "wrapBold()", "<b>**Bold**</b>"},
|
|
|
|
{"italic", "wrapItalic()", "<i>//Italic//</i>"},
|
2021-06-30 11:47:48 +00:00
|
|
|
{"highlighted", "wrapHighlighted()", "<mark>++Highlight++</mark>"},
|
|
|
|
{"underline", "wrapUnderline()", "<u>__Underline__</u>"},
|
2021-04-05 17:38:44 +00:00
|
|
|
{"monospace", "wrapMonospace()", "<code>`Monospace`</code>"},
|
2021-05-27 20:46:41 +00:00
|
|
|
{"lifted", "wrapLifted()", "<sup>^^Lifted^^</sup>"},
|
2021-04-05 17:38:44 +00:00
|
|
|
{"lowered", "wrapLowered()", "<sub>,,Lowered,,</sub>"},
|
|
|
|
{"strikethrough", "wrapStrikethrough()", "<strike>~~Strikethrough~~</strike>"},
|
2021-04-05 18:29:45 +00:00
|
|
|
{"rocket", "insertRocket()", "=> rocketlink"},
|
|
|
|
{"xcl", "insertXcl()", "<= transclusion"},
|
|
|
|
{"img", "insertImgBlock()", "<code>img {}</code>"},
|
|
|
|
{"table", "insertTableBlock()", "<code>table {}</code>"},
|
2021-04-05 17:38:44 +00:00
|
|
|
{"hr", "insertHorizontalBar()", "Horizontal bar"},
|
2021-04-06 09:04:57 +00:00
|
|
|
{"codeblock", "insertCodeblock()", "Code block"},
|
2021-05-01 06:57:14 +00:00
|
|
|
{"bulletedlist", "insertBulletedList()", "* bullet list"},
|
|
|
|
{"numberedlist", "insertNumberedList()", "*. number list"},
|
2021-04-05 18:29:45 +00:00
|
|
|
} {
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:35
|
2021-04-05 18:29:45 +00:00
|
|
|
qw422016.N().S(`
|
|
|
|
<button
|
2021-06-15 21:46:25 +00:00
|
|
|
class="btn edit-toolbar__btn edit-toolbar__`)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:37
|
2021-04-05 18:29:45 +00:00
|
|
|
qw422016.E().S(el.class)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:37
|
2021-04-05 18:29:45 +00:00
|
|
|
qw422016.N().S(`"
|
|
|
|
onclick="`)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:38
|
2021-04-05 18:29:45 +00:00
|
|
|
qw422016.E().S(el.onclick)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:38
|
2021-04-05 18:29:45 +00:00
|
|
|
qw422016.N().S(`">
|
|
|
|
`)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:39
|
2021-04-05 18:29:45 +00:00
|
|
|
qw422016.N().S(el.display)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:39
|
2021-04-05 18:29:45 +00:00
|
|
|
qw422016.N().S(`
|
|
|
|
</button>
|
|
|
|
`)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:41
|
2021-04-05 18:29:45 +00:00
|
|
|
}
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:41
|
2021-04-05 18:29:45 +00:00
|
|
|
qw422016.N().S(`
|
|
|
|
</section>
|
2021-07-05 04:22:17 +00:00
|
|
|
<p class="edit-toolbar__ad"><a href="https://mycorrhiza.wiki/hypha/mycomarkup" target="_blank" class="shy-link">Learn more</a> about mycomarkup</p>
|
2021-04-05 18:29:45 +00:00
|
|
|
<h2 class="edit-toolbar__title layout-card__title">Actions</h2>
|
|
|
|
<section class="edit-toolbar__buttons">
|
|
|
|
`)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:46
|
2021-04-05 18:29:45 +00:00
|
|
|
for _, el := range []struct {
|
|
|
|
class string
|
|
|
|
onclick string
|
|
|
|
display string
|
|
|
|
}{
|
2021-04-05 17:38:44 +00:00
|
|
|
{"date", "insertDate()", "Insert current date"},
|
2021-05-03 18:47:21 +00:00
|
|
|
{"time", "insertTimeUTC()", "Insert current time"},
|
2021-04-05 17:38:44 +00:00
|
|
|
} {
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:53
|
2021-04-05 17:38:44 +00:00
|
|
|
qw422016.N().S(`
|
|
|
|
<button
|
2021-06-15 21:46:25 +00:00
|
|
|
class="btn edit-toolbar__btn edit-toolbar__`)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:55
|
2021-04-05 17:38:44 +00:00
|
|
|
qw422016.E().S(el.class)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:55
|
2021-04-05 17:38:44 +00:00
|
|
|
qw422016.N().S(`"
|
|
|
|
onclick="`)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:56
|
2021-04-05 17:38:44 +00:00
|
|
|
qw422016.E().S(el.onclick)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:56
|
2021-04-05 17:38:44 +00:00
|
|
|
qw422016.N().S(`">
|
|
|
|
`)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:57
|
2021-04-05 17:38:44 +00:00
|
|
|
qw422016.N().S(el.display)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:57
|
2021-04-05 17:38:44 +00:00
|
|
|
qw422016.N().S(`
|
|
|
|
</button>
|
|
|
|
`)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:59
|
2021-04-05 17:38:44 +00:00
|
|
|
}
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:59
|
2021-04-05 17:38:44 +00:00
|
|
|
qw422016.N().S(`
|
2021-04-05 18:29:45 +00:00
|
|
|
`)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:60
|
2021-04-05 18:29:45 +00:00
|
|
|
if u.Group != "anon" {
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:60
|
2021-04-05 18:29:45 +00:00
|
|
|
qw422016.N().S(`
|
|
|
|
<button
|
2021-06-15 21:46:25 +00:00
|
|
|
class="btn edit-toolbar__btn edit-toolbar__user-link"
|
2021-04-05 18:29:45 +00:00
|
|
|
onclick="insertUserlink()">
|
|
|
|
Link yourself
|
|
|
|
</button>
|
|
|
|
`)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:66
|
2021-04-05 18:29:45 +00:00
|
|
|
}
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:66
|
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
|
|
|
`)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:70
|
2021-03-20 17:48:23 +00:00
|
|
|
}
|
|
|
|
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:70
|
2021-04-05 18:29:45 +00:00
|
|
|
func WriteToolbar(qq422016 qtio422016.Writer, u *user.User) {
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:70
|
2021-03-20 17:48:23 +00:00
|
|
|
qw422016 := qt422016.AcquireWriter(qq422016)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:70
|
2021-04-05 18:29:45 +00:00
|
|
|
StreamToolbar(qw422016, u)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:70
|
2021-03-20 17:48:23 +00:00
|
|
|
qt422016.ReleaseWriter(qw422016)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:70
|
2021-03-20 17:48:23 +00:00
|
|
|
}
|
|
|
|
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:70
|
2021-04-05 18:29:45 +00:00
|
|
|
func Toolbar(u *user.User) string {
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:70
|
2021-03-20 17:48:23 +00:00
|
|
|
qb422016 := qt422016.AcquireByteBuffer()
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:70
|
2021-04-05 18:29:45 +00:00
|
|
|
WriteToolbar(qb422016, u)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:70
|
2021-03-20 17:48:23 +00:00
|
|
|
qs422016 := string(qb422016.B)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:70
|
2021-03-20 17:48:23 +00:00
|
|
|
qt422016.ReleaseByteBuffer(qb422016)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:70
|
2021-03-20 17:48:23 +00:00
|
|
|
return qs422016
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:70
|
2021-03-20 17:48:23 +00:00
|
|
|
}
|
|
|
|
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:72
|
2021-03-20 17:48:23 +00:00
|
|
|
func StreamEditHTML(qw422016 *qt422016.Writer, rq *http.Request, hyphaName, textAreaFill, warning string) {
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:72
|
2021-03-20 17:48:23 +00:00
|
|
|
qw422016.N().S(`
|
2020-11-16 15:26:03 +00:00
|
|
|
`)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:73
|
2021-02-23 14:25:07 +00:00
|
|
|
qw422016.N().S(NavHTML(rq, hyphaName, "edit"))
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:73
|
2020-11-16 15:26:03 +00:00
|
|
|
qw422016.N().S(`
|
2021-01-26 05:41:57 +00:00
|
|
|
<div class="layout">
|
|
|
|
<main class="main-width edit edit_no-preview">
|
|
|
|
<h1 class="edit__title">Edit `)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:76
|
2021-01-26 05:41:57 +00:00
|
|
|
qw422016.E().S(util.BeautifulName(hyphaName))
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:76
|
2020-11-16 15:26:03 +00:00
|
|
|
qw422016.N().S(`</h1>
|
|
|
|
`)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:77
|
2020-11-16 15:26:03 +00:00
|
|
|
qw422016.N().S(warning)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:77
|
2020-11-16 15:26:03 +00:00
|
|
|
qw422016.N().S(`
|
|
|
|
<form method="post" class="edit-form"
|
|
|
|
action="/upload-text/`)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:79
|
2020-08-31 17:52:26 +00:00
|
|
|
qw422016.E().S(hyphaName)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:79
|
2020-11-16 15:26:03 +00:00
|
|
|
qw422016.N().S(`">
|
2021-06-13 16:29:54 +00:00
|
|
|
<textarea name="text" class="edit-form__textarea" autofocus>`)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:80
|
2020-11-16 15:26:03 +00:00
|
|
|
qw422016.E().S(textAreaFill)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:80
|
2020-11-16 15:26:03 +00:00
|
|
|
qw422016.N().S(`</textarea>
|
2021-06-21 04:52:38 +00:00
|
|
|
<br><br>
|
2021-06-14 07:48:53 +00:00
|
|
|
<label for="text">Describe your changes:</label><br>
|
2021-06-21 04:52:38 +00:00
|
|
|
<input id="text" type="text" name="message" class="edit-form__message">
|
|
|
|
<br><br>
|
|
|
|
<input type="submit" name="action" class="btn btn_accent edit-form__save" value="Save">
|
2021-06-19 22:58:56 +00:00
|
|
|
<input type="submit" name="action" class="btn edit-form__preview" value="Preview">
|
2021-06-14 07:13:29 +00:00
|
|
|
<a href="/hypha/`)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:87
|
2020-11-16 15:26:03 +00:00
|
|
|
qw422016.E().S(hyphaName)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:87
|
2021-06-15 21:46:25 +00:00
|
|
|
qw422016.N().S(`" class="btn btn_weak">Cancel</a>
|
2020-11-16 15:26:03 +00:00
|
|
|
</form>
|
|
|
|
</main>
|
2021-03-20 17:48:23 +00:00
|
|
|
`)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:90
|
2021-04-05 18:29:45 +00:00
|
|
|
qw422016.N().S(Toolbar(user.FromRequest(rq)))
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:90
|
2021-03-20 17:48:23 +00:00
|
|
|
qw422016.N().S(`
|
2021-01-26 05:41:57 +00:00
|
|
|
</div>
|
2020-08-31 17:52:26 +00:00
|
|
|
`)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:92
|
2021-05-22 18:05:14 +00:00
|
|
|
streameditScripts(qw422016)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:92
|
2021-05-22 18:05:14 +00:00
|
|
|
qw422016.N().S(`
|
|
|
|
`)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:93
|
2020-08-31 17:52:26 +00:00
|
|
|
}
|
|
|
|
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:93
|
2020-11-16 15:26:03 +00:00
|
|
|
func WriteEditHTML(qq422016 qtio422016.Writer, rq *http.Request, hyphaName, textAreaFill, warning string) {
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:93
|
2020-08-31 17:52:26 +00:00
|
|
|
qw422016 := qt422016.AcquireWriter(qq422016)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:93
|
2020-11-16 15:26:03 +00:00
|
|
|
StreamEditHTML(qw422016, rq, hyphaName, textAreaFill, warning)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:93
|
2020-08-31 17:52:26 +00:00
|
|
|
qt422016.ReleaseWriter(qw422016)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:93
|
2020-08-31 17:52:26 +00:00
|
|
|
}
|
|
|
|
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:93
|
2020-11-16 15:26:03 +00:00
|
|
|
func EditHTML(rq *http.Request, hyphaName, textAreaFill, warning string) string {
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:93
|
2020-08-31 17:52:26 +00:00
|
|
|
qb422016 := qt422016.AcquireByteBuffer()
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:93
|
2020-11-16 15:26:03 +00:00
|
|
|
WriteEditHTML(qb422016, rq, hyphaName, textAreaFill, warning)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:93
|
2020-08-31 17:52:26 +00:00
|
|
|
qs422016 := string(qb422016.B)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:93
|
2020-08-31 17:52:26 +00:00
|
|
|
qt422016.ReleaseByteBuffer(qb422016)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:93
|
2020-08-31 17:52:26 +00:00
|
|
|
return qs422016
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:93
|
2021-01-16 16:42:18 +00:00
|
|
|
}
|
|
|
|
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:95
|
2021-06-14 00:38:43 +00:00
|
|
|
func StreamPreviewHTML(qw422016 *qt422016.Writer, rq *http.Request, hyphaName, textAreaFill, message, warning string, renderedPage string) {
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:95
|
2021-01-16 16:42:18 +00:00
|
|
|
qw422016.N().S(`
|
|
|
|
`)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:96
|
2021-02-23 14:25:07 +00:00
|
|
|
qw422016.N().S(NavHTML(rq, hyphaName, "edit"))
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:96
|
2021-01-16 16:42:18 +00:00
|
|
|
qw422016.N().S(`
|
2021-01-26 05:41:57 +00:00
|
|
|
<div class="layout">
|
|
|
|
<main class="main-width edit edit_with-preview">
|
2021-06-20 05:56:19 +00:00
|
|
|
<h1 class="edit__title">Edit `)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:99
|
2021-02-23 14:25:07 +00:00
|
|
|
qw422016.E().S(util.BeautifulName(hyphaName))
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:99
|
2021-06-20 05:56:19 +00:00
|
|
|
qw422016.N().S(`</h1>
|
2021-01-16 16:42:18 +00:00
|
|
|
`)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:100
|
2021-01-16 16:42:18 +00:00
|
|
|
qw422016.N().S(warning)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:100
|
2021-01-16 16:42:18 +00:00
|
|
|
qw422016.N().S(`
|
|
|
|
<form method="post" class="edit-form"
|
|
|
|
action="/upload-text/`)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:102
|
2021-01-16 16:42:18 +00:00
|
|
|
qw422016.E().S(hyphaName)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:102
|
2021-01-16 16:42:18 +00:00
|
|
|
qw422016.N().S(`">
|
2021-06-20 05:56:19 +00:00
|
|
|
<textarea name="text" class="edit-form__textarea" autofocus>`)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:103
|
2021-01-16 16:42:18 +00:00
|
|
|
qw422016.E().S(textAreaFill)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:103
|
2021-01-16 16:42:18 +00:00
|
|
|
qw422016.N().S(`</textarea>
|
2021-06-21 04:52:38 +00:00
|
|
|
<br><br>
|
2021-06-20 05:56:19 +00:00
|
|
|
<label for="text">Describe your changes:</label><br>
|
2021-06-14 00:38:43 +00:00
|
|
|
<input id="text" type="text" name="message" class="edit-form__message" value="`)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:106
|
2021-06-14 00:38:43 +00:00
|
|
|
qw422016.E().S(message)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:106
|
2021-06-14 00:38:43 +00:00
|
|
|
qw422016.N().S(`">
|
2021-06-21 04:52:38 +00:00
|
|
|
<br><br>
|
|
|
|
<input type="submit" name="action" class="btn btn_accent edit-form__save" value="Save">
|
2021-06-20 05:56:19 +00:00
|
|
|
<input type="submit" name="action" class="btn edit-form__preview" value="Preview">
|
2021-06-14 07:13:29 +00:00
|
|
|
<a href="/hypha/`)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:110
|
2021-01-16 16:42:18 +00:00
|
|
|
qw422016.E().S(hyphaName)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:110
|
2021-06-19 22:58:56 +00:00
|
|
|
qw422016.N().S(`" class="btn btn_weak">Cancel</a>
|
2021-01-16 16:42:18 +00:00
|
|
|
</form>
|
2021-06-20 05:56:19 +00:00
|
|
|
<p class="warning">Note that the hypha hasn't been saved yet. Here's the preview:</p>
|
2021-03-09 15:51:37 +00:00
|
|
|
<article class="edit__preview">`)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:113
|
2021-01-16 16:42:18 +00:00
|
|
|
qw422016.N().S(renderedPage)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:113
|
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
|
|
|
`)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:115
|
2021-04-05 18:29:45 +00:00
|
|
|
qw422016.N().S(Toolbar(user.FromRequest(rq)))
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:115
|
2021-03-20 17:48:23 +00:00
|
|
|
qw422016.N().S(`
|
2021-01-26 05:41:57 +00:00
|
|
|
</div>
|
2021-01-16 16:42:18 +00:00
|
|
|
`)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:117
|
2021-05-22 18:05:14 +00:00
|
|
|
streameditScripts(qw422016)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:117
|
2021-05-22 18:05:14 +00:00
|
|
|
qw422016.N().S(`
|
|
|
|
`)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:118
|
2021-01-16 16:42:18 +00:00
|
|
|
}
|
|
|
|
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:118
|
2021-06-14 00:38:43 +00:00
|
|
|
func WritePreviewHTML(qq422016 qtio422016.Writer, rq *http.Request, hyphaName, textAreaFill, message, warning string, renderedPage string) {
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:118
|
2021-01-16 16:42:18 +00:00
|
|
|
qw422016 := qt422016.AcquireWriter(qq422016)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:118
|
2021-06-14 00:38:43 +00:00
|
|
|
StreamPreviewHTML(qw422016, rq, hyphaName, textAreaFill, message, warning, renderedPage)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:118
|
2021-01-16 16:42:18 +00:00
|
|
|
qt422016.ReleaseWriter(qw422016)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:118
|
2021-01-16 16:42:18 +00:00
|
|
|
}
|
|
|
|
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:118
|
2021-06-14 00:38:43 +00:00
|
|
|
func PreviewHTML(rq *http.Request, hyphaName, textAreaFill, message, warning string, renderedPage string) string {
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:118
|
2021-01-16 16:42:18 +00:00
|
|
|
qb422016 := qt422016.AcquireByteBuffer()
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:118
|
2021-06-14 00:38:43 +00:00
|
|
|
WritePreviewHTML(qb422016, rq, hyphaName, textAreaFill, message, warning, renderedPage)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:118
|
2021-05-22 18:05:14 +00:00
|
|
|
qs422016 := string(qb422016.B)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:118
|
2021-05-22 18:05:14 +00:00
|
|
|
qt422016.ReleaseByteBuffer(qb422016)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:118
|
2021-05-22 18:05:14 +00:00
|
|
|
return qs422016
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:118
|
2021-05-22 18:05:14 +00:00
|
|
|
}
|
|
|
|
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:120
|
2021-05-22 18:05:14 +00:00
|
|
|
func streameditScripts(qw422016 *qt422016.Writer) {
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:120
|
2021-05-22 18:05:14 +00:00
|
|
|
qw422016.N().S(`
|
|
|
|
`)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:121
|
2021-05-22 18:05:14 +00:00
|
|
|
for _, scriptPath := range cfg.EditScripts {
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:121
|
2021-05-22 18:05:14 +00:00
|
|
|
qw422016.N().S(`
|
|
|
|
<script src="`)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:122
|
2021-05-22 18:05:14 +00:00
|
|
|
qw422016.E().S(scriptPath)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:122
|
2021-05-22 18:05:14 +00:00
|
|
|
qw422016.N().S(`"></script>
|
|
|
|
`)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:123
|
2021-05-22 18:05:14 +00:00
|
|
|
}
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:123
|
2021-05-22 18:05:14 +00:00
|
|
|
qw422016.N().S(`
|
|
|
|
`)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:124
|
2021-05-22 18:05:14 +00:00
|
|
|
}
|
|
|
|
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:124
|
2021-05-22 18:05:14 +00:00
|
|
|
func writeeditScripts(qq422016 qtio422016.Writer) {
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:124
|
2021-05-22 18:05:14 +00:00
|
|
|
qw422016 := qt422016.AcquireWriter(qq422016)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:124
|
2021-05-22 18:05:14 +00:00
|
|
|
streameditScripts(qw422016)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:124
|
2021-05-22 18:05:14 +00:00
|
|
|
qt422016.ReleaseWriter(qw422016)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:124
|
2021-05-22 18:05:14 +00:00
|
|
|
}
|
|
|
|
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:124
|
2021-05-22 18:05:14 +00:00
|
|
|
func editScripts() string {
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:124
|
2021-05-22 18:05:14 +00:00
|
|
|
qb422016 := qt422016.AcquireByteBuffer()
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:124
|
2021-05-22 18:05:14 +00:00
|
|
|
writeeditScripts(qb422016)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:124
|
2021-01-16 16:42:18 +00:00
|
|
|
qs422016 := string(qb422016.B)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:124
|
2021-01-16 16:42:18 +00:00
|
|
|
qt422016.ReleaseByteBuffer(qb422016)
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:124
|
2021-01-16 16:42:18 +00:00
|
|
|
return qs422016
|
2021-06-30 11:47:48 +00:00
|
|
|
//line views/mutators.qtpl:124
|
2020-08-31 17:52:26 +00:00
|
|
|
}
|