mirror of
https://github.com/osmarks/mycorrhiza.git
synced 2025-01-07 18:30:26 +00:00
Make the toolbar have ++ and __
Also, upgrade mycomarkup, whatever
This commit is contained in:
parent
bbb577a6bb
commit
ea75823656
2
go.mod
2
go.mod
@ -3,7 +3,7 @@ module github.com/bouncepaw/mycorrhiza
|
|||||||
go 1.16
|
go 1.16
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/bouncepaw/mycomarkup v0.5.6
|
github.com/bouncepaw/mycomarkup v0.5.7
|
||||||
github.com/go-ini/ini v1.62.0
|
github.com/go-ini/ini v1.62.0
|
||||||
github.com/gorilla/feeds v1.1.1
|
github.com/gorilla/feeds v1.1.1
|
||||||
github.com/kr/pretty v0.2.1 // indirect
|
github.com/kr/pretty v0.2.1 // indirect
|
||||||
|
4
go.sum
4
go.sum
@ -1,6 +1,6 @@
|
|||||||
github.com/andybalholm/brotli v1.0.0/go.mod h1:loMXtMfwqflxFJPmdbJO0a3KNoPuLBgiu3qAvBg8x/Y=
|
github.com/andybalholm/brotli v1.0.0/go.mod h1:loMXtMfwqflxFJPmdbJO0a3KNoPuLBgiu3qAvBg8x/Y=
|
||||||
github.com/bouncepaw/mycomarkup v0.5.6 h1:uTHuVbQI00SVdlD2SjiXpXX9E/qUEXTIObNvJFEIfV0=
|
github.com/bouncepaw/mycomarkup v0.5.7 h1:md7P1te52smTRv9kqSG8SRk1JW0I5fRkaawHSjOAL/U=
|
||||||
github.com/bouncepaw/mycomarkup v0.5.6/go.mod h1:0n6thlGGgrx2Y/2NaaUH4qHW4v1xJ+EpW7yMFUxNRIg=
|
github.com/bouncepaw/mycomarkup v0.5.7/go.mod h1:0n6thlGGgrx2Y/2NaaUH4qHW4v1xJ+EpW7yMFUxNRIg=
|
||||||
github.com/go-ini/ini v1.62.0 h1:7VJT/ZXjzqSrvtraFp4ONq80hTcRQth1c9ZnQ3uNQvU=
|
github.com/go-ini/ini v1.62.0 h1:7VJT/ZXjzqSrvtraFp4ONq80hTcRQth1c9ZnQ3uNQvU=
|
||||||
github.com/go-ini/ini v1.62.0/go.mod h1:ByCAeIL28uOIIG0E3PJtZPDL8WnHpFKFOtgjp+3Ies8=
|
github.com/go-ini/ini v1.62.0/go.mod h1:ByCAeIL28uOIIG0E3PJtZPDL8WnHpFKFOtgjp+3Ies8=
|
||||||
github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1 h1:EGx4pi6eqNxGaHF6qqu48+N2wcFQ5qg5FXgOdqsJ5d8=
|
github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1 h1:EGx4pi6eqNxGaHF6qqu48+N2wcFQ5qg5FXgOdqsJ5d8=
|
||||||
|
@ -41,10 +41,11 @@ function selectionWrapper(cursorPosition, prefix, postfix = null, el = editTexta
|
|||||||
const wrapBold = selectionWrapper(2, '**'),
|
const wrapBold = selectionWrapper(2, '**'),
|
||||||
wrapItalic = selectionWrapper(2, '//'),
|
wrapItalic = selectionWrapper(2, '//'),
|
||||||
wrapMonospace = selectionWrapper(1, '`'),
|
wrapMonospace = selectionWrapper(1, '`'),
|
||||||
wrapHighlighted = selectionWrapper(2, '!!'),
|
wrapHighlighted = selectionWrapper(2, '++'),
|
||||||
wrapLifted = selectionWrapper(2, '^^'),
|
wrapLifted = selectionWrapper(2, '^^'),
|
||||||
wrapLowered = selectionWrapper(2, ',,'),
|
wrapLowered = selectionWrapper(2, ',,'),
|
||||||
wrapStrikethrough = selectionWrapper(2, '~~'),
|
wrapStrikethrough = selectionWrapper(2, '~~'),
|
||||||
|
wrapUnderline = selectionWrapper(2, '__'),
|
||||||
wrapLink = selectionWrapper(2, '[[', ']]')
|
wrapLink = selectionWrapper(2, '[[', ']]')
|
||||||
|
|
||||||
const insertHorizontalBar = textInserter('\n----\n'),
|
const insertHorizontalBar = textInserter('\n----\n'),
|
||||||
|
@ -18,7 +18,8 @@
|
|||||||
{"heading3", "insertHeading3()", "### heading"},
|
{"heading3", "insertHeading3()", "### heading"},
|
||||||
{"bold", "wrapBold()", "<b>**Bold**</b>"},
|
{"bold", "wrapBold()", "<b>**Bold**</b>"},
|
||||||
{"italic", "wrapItalic()", "<i>//Italic//</i>"},
|
{"italic", "wrapItalic()", "<i>//Italic//</i>"},
|
||||||
{"highlighted", "wrapHighlighted()", "<mark>!!Highlight!!</mark>"},
|
{"highlighted", "wrapHighlighted()", "<mark>++Highlight++</mark>"},
|
||||||
|
{"underline", "wrapUnderline()", "<u>__Underline__</u>"},
|
||||||
{"monospace", "wrapMonospace()", "<code>`Monospace`</code>"},
|
{"monospace", "wrapMonospace()", "<code>`Monospace`</code>"},
|
||||||
{"lifted", "wrapLifted()", "<sup>^^Lifted^^</sup>"},
|
{"lifted", "wrapLifted()", "<sup>^^Lifted^^</sup>"},
|
||||||
{"lowered", "wrapLowered()", "<sub>,,Lowered,,</sub>"},
|
{"lowered", "wrapLowered()", "<sub>,,Lowered,,</sub>"},
|
||||||
|
@ -48,7 +48,8 @@ func StreamToolbar(qw422016 *qt422016.Writer, u *user.User) {
|
|||||||
{"heading3", "insertHeading3()", "### heading"},
|
{"heading3", "insertHeading3()", "### heading"},
|
||||||
{"bold", "wrapBold()", "<b>**Bold**</b>"},
|
{"bold", "wrapBold()", "<b>**Bold**</b>"},
|
||||||
{"italic", "wrapItalic()", "<i>//Italic//</i>"},
|
{"italic", "wrapItalic()", "<i>//Italic//</i>"},
|
||||||
{"highlighted", "wrapHighlighted()", "<mark>!!Highlight!!</mark>"},
|
{"highlighted", "wrapHighlighted()", "<mark>++Highlight++</mark>"},
|
||||||
|
{"underline", "wrapUnderline()", "<u>__Underline__</u>"},
|
||||||
{"monospace", "wrapMonospace()", "<code>`Monospace`</code>"},
|
{"monospace", "wrapMonospace()", "<code>`Monospace`</code>"},
|
||||||
{"lifted", "wrapLifted()", "<sup>^^Lifted^^</sup>"},
|
{"lifted", "wrapLifted()", "<sup>^^Lifted^^</sup>"},
|
||||||
{"lowered", "wrapLowered()", "<sub>,,Lowered,,</sub>"},
|
{"lowered", "wrapLowered()", "<sub>,,Lowered,,</sub>"},
|
||||||
@ -62,36 +63,36 @@ func StreamToolbar(qw422016 *qt422016.Writer, u *user.User) {
|
|||||||
{"bulletedlist", "insertBulletedList()", "* bullet list"},
|
{"bulletedlist", "insertBulletedList()", "* bullet list"},
|
||||||
{"numberedlist", "insertNumberedList()", "*. number list"},
|
{"numberedlist", "insertNumberedList()", "*. number list"},
|
||||||
} {
|
} {
|
||||||
//line views/mutators.qtpl:34
|
//line views/mutators.qtpl:35
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
<button
|
<button
|
||||||
class="btn edit-toolbar__btn edit-toolbar__`)
|
class="btn edit-toolbar__btn edit-toolbar__`)
|
||||||
//line views/mutators.qtpl:36
|
//line views/mutators.qtpl:37
|
||||||
qw422016.E().S(el.class)
|
qw422016.E().S(el.class)
|
||||||
//line views/mutators.qtpl:36
|
//line views/mutators.qtpl:37
|
||||||
qw422016.N().S(`"
|
qw422016.N().S(`"
|
||||||
onclick="`)
|
onclick="`)
|
||||||
//line views/mutators.qtpl:37
|
//line views/mutators.qtpl:38
|
||||||
qw422016.E().S(el.onclick)
|
qw422016.E().S(el.onclick)
|
||||||
//line views/mutators.qtpl:37
|
//line views/mutators.qtpl:38
|
||||||
qw422016.N().S(`">
|
qw422016.N().S(`">
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:38
|
//line views/mutators.qtpl:39
|
||||||
qw422016.N().S(el.display)
|
qw422016.N().S(el.display)
|
||||||
//line views/mutators.qtpl:38
|
//line views/mutators.qtpl:39
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
</button>
|
</button>
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:40
|
//line views/mutators.qtpl:41
|
||||||
}
|
}
|
||||||
//line views/mutators.qtpl:40
|
//line views/mutators.qtpl:41
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
</section>
|
</section>
|
||||||
<p class="edit-toolbar__ad"><a href="https://mycorrhiza.lesarbr.es/hypha/mycomarkup" target="_blank" class="shy-link">Learn more</a> about mycomarkup</p>
|
<p class="edit-toolbar__ad"><a href="https://mycorrhiza.lesarbr.es/hypha/mycomarkup" target="_blank" class="shy-link">Learn more</a> about mycomarkup</p>
|
||||||
<h2 class="edit-toolbar__title layout-card__title">Actions</h2>
|
<h2 class="edit-toolbar__title layout-card__title">Actions</h2>
|
||||||
<section class="edit-toolbar__buttons">
|
<section class="edit-toolbar__buttons">
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:45
|
//line views/mutators.qtpl:46
|
||||||
for _, el := range []struct {
|
for _, el := range []struct {
|
||||||
class string
|
class string
|
||||||
onclick string
|
onclick string
|
||||||
@ -100,34 +101,34 @@ func StreamToolbar(qw422016 *qt422016.Writer, u *user.User) {
|
|||||||
{"date", "insertDate()", "Insert current date"},
|
{"date", "insertDate()", "Insert current date"},
|
||||||
{"time", "insertTimeUTC()", "Insert current time"},
|
{"time", "insertTimeUTC()", "Insert current time"},
|
||||||
} {
|
} {
|
||||||
//line views/mutators.qtpl:52
|
//line views/mutators.qtpl:53
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
<button
|
<button
|
||||||
class="btn edit-toolbar__btn edit-toolbar__`)
|
class="btn edit-toolbar__btn edit-toolbar__`)
|
||||||
//line views/mutators.qtpl:54
|
//line views/mutators.qtpl:55
|
||||||
qw422016.E().S(el.class)
|
qw422016.E().S(el.class)
|
||||||
//line views/mutators.qtpl:54
|
//line views/mutators.qtpl:55
|
||||||
qw422016.N().S(`"
|
qw422016.N().S(`"
|
||||||
onclick="`)
|
onclick="`)
|
||||||
//line views/mutators.qtpl:55
|
//line views/mutators.qtpl:56
|
||||||
qw422016.E().S(el.onclick)
|
qw422016.E().S(el.onclick)
|
||||||
//line views/mutators.qtpl:55
|
//line views/mutators.qtpl:56
|
||||||
qw422016.N().S(`">
|
qw422016.N().S(`">
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:56
|
//line views/mutators.qtpl:57
|
||||||
qw422016.N().S(el.display)
|
qw422016.N().S(el.display)
|
||||||
//line views/mutators.qtpl:56
|
//line views/mutators.qtpl:57
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
</button>
|
</button>
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:58
|
//line views/mutators.qtpl:59
|
||||||
}
|
}
|
||||||
//line views/mutators.qtpl:58
|
//line views/mutators.qtpl:59
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:59
|
//line views/mutators.qtpl:60
|
||||||
if u.Group != "anon" {
|
if u.Group != "anon" {
|
||||||
//line views/mutators.qtpl:59
|
//line views/mutators.qtpl:60
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
<button
|
<button
|
||||||
class="btn edit-toolbar__btn edit-toolbar__user-link"
|
class="btn edit-toolbar__btn edit-toolbar__user-link"
|
||||||
@ -135,74 +136,74 @@ func StreamToolbar(qw422016 *qt422016.Writer, u *user.User) {
|
|||||||
Link yourself
|
Link yourself
|
||||||
</button>
|
</button>
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:65
|
//line views/mutators.qtpl:66
|
||||||
}
|
}
|
||||||
//line views/mutators.qtpl:65
|
//line views/mutators.qtpl:66
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
</section>
|
</section>
|
||||||
</aside>
|
</aside>
|
||||||
<script src="/static/toolbar.js"></script>
|
<script src="/static/toolbar.js"></script>
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:69
|
//line views/mutators.qtpl:70
|
||||||
}
|
}
|
||||||
|
|
||||||
//line views/mutators.qtpl:69
|
//line views/mutators.qtpl:70
|
||||||
func WriteToolbar(qq422016 qtio422016.Writer, u *user.User) {
|
func WriteToolbar(qq422016 qtio422016.Writer, u *user.User) {
|
||||||
//line views/mutators.qtpl:69
|
//line views/mutators.qtpl:70
|
||||||
qw422016 := qt422016.AcquireWriter(qq422016)
|
qw422016 := qt422016.AcquireWriter(qq422016)
|
||||||
//line views/mutators.qtpl:69
|
//line views/mutators.qtpl:70
|
||||||
StreamToolbar(qw422016, u)
|
StreamToolbar(qw422016, u)
|
||||||
//line views/mutators.qtpl:69
|
//line views/mutators.qtpl:70
|
||||||
qt422016.ReleaseWriter(qw422016)
|
qt422016.ReleaseWriter(qw422016)
|
||||||
//line views/mutators.qtpl:69
|
//line views/mutators.qtpl:70
|
||||||
}
|
}
|
||||||
|
|
||||||
//line views/mutators.qtpl:69
|
//line views/mutators.qtpl:70
|
||||||
func Toolbar(u *user.User) string {
|
func Toolbar(u *user.User) string {
|
||||||
//line views/mutators.qtpl:69
|
//line views/mutators.qtpl:70
|
||||||
qb422016 := qt422016.AcquireByteBuffer()
|
qb422016 := qt422016.AcquireByteBuffer()
|
||||||
//line views/mutators.qtpl:69
|
//line views/mutators.qtpl:70
|
||||||
WriteToolbar(qb422016, u)
|
WriteToolbar(qb422016, u)
|
||||||
//line views/mutators.qtpl:69
|
//line views/mutators.qtpl:70
|
||||||
qs422016 := string(qb422016.B)
|
qs422016 := string(qb422016.B)
|
||||||
//line views/mutators.qtpl:69
|
//line views/mutators.qtpl:70
|
||||||
qt422016.ReleaseByteBuffer(qb422016)
|
qt422016.ReleaseByteBuffer(qb422016)
|
||||||
//line views/mutators.qtpl:69
|
//line views/mutators.qtpl:70
|
||||||
return qs422016
|
return qs422016
|
||||||
//line views/mutators.qtpl:69
|
//line views/mutators.qtpl:70
|
||||||
}
|
}
|
||||||
|
|
||||||
//line views/mutators.qtpl:71
|
//line views/mutators.qtpl:72
|
||||||
func StreamEditHTML(qw422016 *qt422016.Writer, rq *http.Request, hyphaName, textAreaFill, warning string) {
|
func StreamEditHTML(qw422016 *qt422016.Writer, rq *http.Request, hyphaName, textAreaFill, warning string) {
|
||||||
//line views/mutators.qtpl:71
|
//line views/mutators.qtpl:72
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:72
|
//line views/mutators.qtpl:73
|
||||||
qw422016.N().S(NavHTML(rq, hyphaName, "edit"))
|
qw422016.N().S(NavHTML(rq, hyphaName, "edit"))
|
||||||
//line views/mutators.qtpl:72
|
//line views/mutators.qtpl:73
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
<div class="layout">
|
<div class="layout">
|
||||||
<main class="main-width edit edit_no-preview">
|
<main class="main-width edit edit_no-preview">
|
||||||
<h1 class="edit__title">Edit `)
|
<h1 class="edit__title">Edit `)
|
||||||
//line views/mutators.qtpl:75
|
//line views/mutators.qtpl:76
|
||||||
qw422016.E().S(util.BeautifulName(hyphaName))
|
qw422016.E().S(util.BeautifulName(hyphaName))
|
||||||
//line views/mutators.qtpl:75
|
//line views/mutators.qtpl:76
|
||||||
qw422016.N().S(`</h1>
|
qw422016.N().S(`</h1>
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:76
|
//line views/mutators.qtpl:77
|
||||||
qw422016.N().S(warning)
|
qw422016.N().S(warning)
|
||||||
//line views/mutators.qtpl:76
|
//line views/mutators.qtpl:77
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
<form method="post" class="edit-form"
|
<form method="post" class="edit-form"
|
||||||
action="/upload-text/`)
|
action="/upload-text/`)
|
||||||
//line views/mutators.qtpl:78
|
//line views/mutators.qtpl:79
|
||||||
qw422016.E().S(hyphaName)
|
qw422016.E().S(hyphaName)
|
||||||
//line views/mutators.qtpl:78
|
//line views/mutators.qtpl:79
|
||||||
qw422016.N().S(`">
|
qw422016.N().S(`">
|
||||||
<textarea name="text" class="edit-form__textarea" autofocus>`)
|
<textarea name="text" class="edit-form__textarea" autofocus>`)
|
||||||
//line views/mutators.qtpl:79
|
//line views/mutators.qtpl:80
|
||||||
qw422016.E().S(textAreaFill)
|
qw422016.E().S(textAreaFill)
|
||||||
//line views/mutators.qtpl:79
|
//line views/mutators.qtpl:80
|
||||||
qw422016.N().S(`</textarea>
|
qw422016.N().S(`</textarea>
|
||||||
<br><br>
|
<br><br>
|
||||||
<label for="text">Describe your changes:</label><br>
|
<label for="text">Describe your changes:</label><br>
|
||||||
@ -211,194 +212,194 @@ func StreamEditHTML(qw422016 *qt422016.Writer, rq *http.Request, hyphaName, text
|
|||||||
<input type="submit" name="action" class="btn btn_accent edit-form__save" value="Save">
|
<input type="submit" name="action" class="btn btn_accent edit-form__save" value="Save">
|
||||||
<input type="submit" name="action" class="btn edit-form__preview" value="Preview">
|
<input type="submit" name="action" class="btn edit-form__preview" value="Preview">
|
||||||
<a href="/hypha/`)
|
<a href="/hypha/`)
|
||||||
//line views/mutators.qtpl:86
|
//line views/mutators.qtpl:87
|
||||||
qw422016.E().S(hyphaName)
|
qw422016.E().S(hyphaName)
|
||||||
//line views/mutators.qtpl:86
|
//line views/mutators.qtpl:87
|
||||||
qw422016.N().S(`" class="btn btn_weak">Cancel</a>
|
qw422016.N().S(`" class="btn btn_weak">Cancel</a>
|
||||||
</form>
|
</form>
|
||||||
</main>
|
</main>
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:89
|
//line views/mutators.qtpl:90
|
||||||
qw422016.N().S(Toolbar(user.FromRequest(rq)))
|
qw422016.N().S(Toolbar(user.FromRequest(rq)))
|
||||||
//line views/mutators.qtpl:89
|
//line views/mutators.qtpl:90
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
</div>
|
</div>
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:91
|
//line views/mutators.qtpl:92
|
||||||
streameditScripts(qw422016)
|
streameditScripts(qw422016)
|
||||||
//line views/mutators.qtpl:91
|
//line views/mutators.qtpl:92
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:92
|
//line views/mutators.qtpl:93
|
||||||
}
|
}
|
||||||
|
|
||||||
//line views/mutators.qtpl:92
|
//line views/mutators.qtpl:93
|
||||||
func WriteEditHTML(qq422016 qtio422016.Writer, rq *http.Request, hyphaName, textAreaFill, warning string) {
|
func WriteEditHTML(qq422016 qtio422016.Writer, rq *http.Request, hyphaName, textAreaFill, warning string) {
|
||||||
//line views/mutators.qtpl:92
|
//line views/mutators.qtpl:93
|
||||||
qw422016 := qt422016.AcquireWriter(qq422016)
|
qw422016 := qt422016.AcquireWriter(qq422016)
|
||||||
//line views/mutators.qtpl:92
|
//line views/mutators.qtpl:93
|
||||||
StreamEditHTML(qw422016, rq, hyphaName, textAreaFill, warning)
|
StreamEditHTML(qw422016, rq, hyphaName, textAreaFill, warning)
|
||||||
//line views/mutators.qtpl:92
|
//line views/mutators.qtpl:93
|
||||||
qt422016.ReleaseWriter(qw422016)
|
qt422016.ReleaseWriter(qw422016)
|
||||||
//line views/mutators.qtpl:92
|
//line views/mutators.qtpl:93
|
||||||
}
|
}
|
||||||
|
|
||||||
//line views/mutators.qtpl:92
|
//line views/mutators.qtpl:93
|
||||||
func EditHTML(rq *http.Request, hyphaName, textAreaFill, warning string) string {
|
func EditHTML(rq *http.Request, hyphaName, textAreaFill, warning string) string {
|
||||||
//line views/mutators.qtpl:92
|
//line views/mutators.qtpl:93
|
||||||
qb422016 := qt422016.AcquireByteBuffer()
|
qb422016 := qt422016.AcquireByteBuffer()
|
||||||
//line views/mutators.qtpl:92
|
//line views/mutators.qtpl:93
|
||||||
WriteEditHTML(qb422016, rq, hyphaName, textAreaFill, warning)
|
WriteEditHTML(qb422016, rq, hyphaName, textAreaFill, warning)
|
||||||
//line views/mutators.qtpl:92
|
//line views/mutators.qtpl:93
|
||||||
qs422016 := string(qb422016.B)
|
qs422016 := string(qb422016.B)
|
||||||
//line views/mutators.qtpl:92
|
//line views/mutators.qtpl:93
|
||||||
qt422016.ReleaseByteBuffer(qb422016)
|
qt422016.ReleaseByteBuffer(qb422016)
|
||||||
//line views/mutators.qtpl:92
|
//line views/mutators.qtpl:93
|
||||||
return qs422016
|
return qs422016
|
||||||
//line views/mutators.qtpl:92
|
//line views/mutators.qtpl:93
|
||||||
}
|
}
|
||||||
|
|
||||||
//line views/mutators.qtpl:94
|
//line views/mutators.qtpl:95
|
||||||
func StreamPreviewHTML(qw422016 *qt422016.Writer, rq *http.Request, hyphaName, textAreaFill, message, warning string, renderedPage string) {
|
func StreamPreviewHTML(qw422016 *qt422016.Writer, rq *http.Request, hyphaName, textAreaFill, message, warning string, renderedPage string) {
|
||||||
//line views/mutators.qtpl:94
|
//line views/mutators.qtpl:95
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:95
|
//line views/mutators.qtpl:96
|
||||||
qw422016.N().S(NavHTML(rq, hyphaName, "edit"))
|
qw422016.N().S(NavHTML(rq, hyphaName, "edit"))
|
||||||
//line views/mutators.qtpl:95
|
//line views/mutators.qtpl:96
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
<div class="layout">
|
<div class="layout">
|
||||||
<main class="main-width edit edit_with-preview">
|
<main class="main-width edit edit_with-preview">
|
||||||
<h1 class="edit__title">Edit `)
|
<h1 class="edit__title">Edit `)
|
||||||
//line views/mutators.qtpl:98
|
//line views/mutators.qtpl:99
|
||||||
qw422016.E().S(util.BeautifulName(hyphaName))
|
qw422016.E().S(util.BeautifulName(hyphaName))
|
||||||
//line views/mutators.qtpl:98
|
//line views/mutators.qtpl:99
|
||||||
qw422016.N().S(`</h1>
|
qw422016.N().S(`</h1>
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:99
|
//line views/mutators.qtpl:100
|
||||||
qw422016.N().S(warning)
|
qw422016.N().S(warning)
|
||||||
//line views/mutators.qtpl:99
|
//line views/mutators.qtpl:100
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
<form method="post" class="edit-form"
|
<form method="post" class="edit-form"
|
||||||
action="/upload-text/`)
|
action="/upload-text/`)
|
||||||
//line views/mutators.qtpl:101
|
//line views/mutators.qtpl:102
|
||||||
qw422016.E().S(hyphaName)
|
qw422016.E().S(hyphaName)
|
||||||
//line views/mutators.qtpl:101
|
//line views/mutators.qtpl:102
|
||||||
qw422016.N().S(`">
|
qw422016.N().S(`">
|
||||||
<textarea name="text" class="edit-form__textarea" autofocus>`)
|
<textarea name="text" class="edit-form__textarea" autofocus>`)
|
||||||
//line views/mutators.qtpl:102
|
//line views/mutators.qtpl:103
|
||||||
qw422016.E().S(textAreaFill)
|
qw422016.E().S(textAreaFill)
|
||||||
//line views/mutators.qtpl:102
|
//line views/mutators.qtpl:103
|
||||||
qw422016.N().S(`</textarea>
|
qw422016.N().S(`</textarea>
|
||||||
<br><br>
|
<br><br>
|
||||||
<label for="text">Describe your changes:</label><br>
|
<label for="text">Describe your changes:</label><br>
|
||||||
<input id="text" type="text" name="message" class="edit-form__message" value="`)
|
<input id="text" type="text" name="message" class="edit-form__message" value="`)
|
||||||
//line views/mutators.qtpl:105
|
//line views/mutators.qtpl:106
|
||||||
qw422016.E().S(message)
|
qw422016.E().S(message)
|
||||||
//line views/mutators.qtpl:105
|
//line views/mutators.qtpl:106
|
||||||
qw422016.N().S(`">
|
qw422016.N().S(`">
|
||||||
<br><br>
|
<br><br>
|
||||||
<input type="submit" name="action" class="btn btn_accent edit-form__save" value="Save">
|
<input type="submit" name="action" class="btn btn_accent edit-form__save" value="Save">
|
||||||
<input type="submit" name="action" class="btn edit-form__preview" value="Preview">
|
<input type="submit" name="action" class="btn edit-form__preview" value="Preview">
|
||||||
<a href="/hypha/`)
|
<a href="/hypha/`)
|
||||||
//line views/mutators.qtpl:109
|
//line views/mutators.qtpl:110
|
||||||
qw422016.E().S(hyphaName)
|
qw422016.E().S(hyphaName)
|
||||||
//line views/mutators.qtpl:109
|
//line views/mutators.qtpl:110
|
||||||
qw422016.N().S(`" class="btn btn_weak">Cancel</a>
|
qw422016.N().S(`" class="btn btn_weak">Cancel</a>
|
||||||
</form>
|
</form>
|
||||||
<p class="warning">Note that the hypha hasn't been saved yet. Here's the preview:</p>
|
<p class="warning">Note that the hypha hasn't been saved yet. Here's the preview:</p>
|
||||||
<article class="edit__preview">`)
|
<article class="edit__preview">`)
|
||||||
//line views/mutators.qtpl:112
|
//line views/mutators.qtpl:113
|
||||||
qw422016.N().S(renderedPage)
|
qw422016.N().S(renderedPage)
|
||||||
//line views/mutators.qtpl:112
|
//line views/mutators.qtpl:113
|
||||||
qw422016.N().S(`</article>
|
qw422016.N().S(`</article>
|
||||||
</main>
|
</main>
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:114
|
//line views/mutators.qtpl:115
|
||||||
qw422016.N().S(Toolbar(user.FromRequest(rq)))
|
qw422016.N().S(Toolbar(user.FromRequest(rq)))
|
||||||
//line views/mutators.qtpl:114
|
//line views/mutators.qtpl:115
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
</div>
|
</div>
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:116
|
//line views/mutators.qtpl:117
|
||||||
streameditScripts(qw422016)
|
streameditScripts(qw422016)
|
||||||
//line views/mutators.qtpl:116
|
//line views/mutators.qtpl:117
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:117
|
//line views/mutators.qtpl:118
|
||||||
}
|
}
|
||||||
|
|
||||||
//line views/mutators.qtpl:117
|
//line views/mutators.qtpl:118
|
||||||
func WritePreviewHTML(qq422016 qtio422016.Writer, rq *http.Request, hyphaName, textAreaFill, message, warning string, renderedPage string) {
|
func WritePreviewHTML(qq422016 qtio422016.Writer, rq *http.Request, hyphaName, textAreaFill, message, warning string, renderedPage string) {
|
||||||
//line views/mutators.qtpl:117
|
//line views/mutators.qtpl:118
|
||||||
qw422016 := qt422016.AcquireWriter(qq422016)
|
qw422016 := qt422016.AcquireWriter(qq422016)
|
||||||
//line views/mutators.qtpl:117
|
//line views/mutators.qtpl:118
|
||||||
StreamPreviewHTML(qw422016, rq, hyphaName, textAreaFill, message, warning, renderedPage)
|
StreamPreviewHTML(qw422016, rq, hyphaName, textAreaFill, message, warning, renderedPage)
|
||||||
//line views/mutators.qtpl:117
|
//line views/mutators.qtpl:118
|
||||||
qt422016.ReleaseWriter(qw422016)
|
qt422016.ReleaseWriter(qw422016)
|
||||||
//line views/mutators.qtpl:117
|
//line views/mutators.qtpl:118
|
||||||
}
|
}
|
||||||
|
|
||||||
//line views/mutators.qtpl:117
|
//line views/mutators.qtpl:118
|
||||||
func PreviewHTML(rq *http.Request, hyphaName, textAreaFill, message, warning string, renderedPage string) string {
|
func PreviewHTML(rq *http.Request, hyphaName, textAreaFill, message, warning string, renderedPage string) string {
|
||||||
//line views/mutators.qtpl:117
|
//line views/mutators.qtpl:118
|
||||||
qb422016 := qt422016.AcquireByteBuffer()
|
qb422016 := qt422016.AcquireByteBuffer()
|
||||||
//line views/mutators.qtpl:117
|
//line views/mutators.qtpl:118
|
||||||
WritePreviewHTML(qb422016, rq, hyphaName, textAreaFill, message, warning, renderedPage)
|
WritePreviewHTML(qb422016, rq, hyphaName, textAreaFill, message, warning, renderedPage)
|
||||||
//line views/mutators.qtpl:117
|
//line views/mutators.qtpl:118
|
||||||
qs422016 := string(qb422016.B)
|
qs422016 := string(qb422016.B)
|
||||||
//line views/mutators.qtpl:117
|
//line views/mutators.qtpl:118
|
||||||
qt422016.ReleaseByteBuffer(qb422016)
|
qt422016.ReleaseByteBuffer(qb422016)
|
||||||
//line views/mutators.qtpl:117
|
//line views/mutators.qtpl:118
|
||||||
return qs422016
|
return qs422016
|
||||||
//line views/mutators.qtpl:117
|
//line views/mutators.qtpl:118
|
||||||
}
|
}
|
||||||
|
|
||||||
//line views/mutators.qtpl:119
|
//line views/mutators.qtpl:120
|
||||||
func streameditScripts(qw422016 *qt422016.Writer) {
|
func streameditScripts(qw422016 *qt422016.Writer) {
|
||||||
//line views/mutators.qtpl:119
|
//line views/mutators.qtpl:120
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:120
|
//line views/mutators.qtpl:121
|
||||||
for _, scriptPath := range cfg.EditScripts {
|
for _, scriptPath := range cfg.EditScripts {
|
||||||
//line views/mutators.qtpl:120
|
//line views/mutators.qtpl:121
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
<script src="`)
|
<script src="`)
|
||||||
//line views/mutators.qtpl:121
|
//line views/mutators.qtpl:122
|
||||||
qw422016.E().S(scriptPath)
|
qw422016.E().S(scriptPath)
|
||||||
//line views/mutators.qtpl:121
|
//line views/mutators.qtpl:122
|
||||||
qw422016.N().S(`"></script>
|
qw422016.N().S(`"></script>
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:122
|
//line views/mutators.qtpl:123
|
||||||
}
|
}
|
||||||
//line views/mutators.qtpl:122
|
//line views/mutators.qtpl:123
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:123
|
//line views/mutators.qtpl:124
|
||||||
}
|
}
|
||||||
|
|
||||||
//line views/mutators.qtpl:123
|
//line views/mutators.qtpl:124
|
||||||
func writeeditScripts(qq422016 qtio422016.Writer) {
|
func writeeditScripts(qq422016 qtio422016.Writer) {
|
||||||
//line views/mutators.qtpl:123
|
//line views/mutators.qtpl:124
|
||||||
qw422016 := qt422016.AcquireWriter(qq422016)
|
qw422016 := qt422016.AcquireWriter(qq422016)
|
||||||
//line views/mutators.qtpl:123
|
//line views/mutators.qtpl:124
|
||||||
streameditScripts(qw422016)
|
streameditScripts(qw422016)
|
||||||
//line views/mutators.qtpl:123
|
//line views/mutators.qtpl:124
|
||||||
qt422016.ReleaseWriter(qw422016)
|
qt422016.ReleaseWriter(qw422016)
|
||||||
//line views/mutators.qtpl:123
|
//line views/mutators.qtpl:124
|
||||||
}
|
}
|
||||||
|
|
||||||
//line views/mutators.qtpl:123
|
//line views/mutators.qtpl:124
|
||||||
func editScripts() string {
|
func editScripts() string {
|
||||||
//line views/mutators.qtpl:123
|
//line views/mutators.qtpl:124
|
||||||
qb422016 := qt422016.AcquireByteBuffer()
|
qb422016 := qt422016.AcquireByteBuffer()
|
||||||
//line views/mutators.qtpl:123
|
//line views/mutators.qtpl:124
|
||||||
writeeditScripts(qb422016)
|
writeeditScripts(qb422016)
|
||||||
//line views/mutators.qtpl:123
|
//line views/mutators.qtpl:124
|
||||||
qs422016 := string(qb422016.B)
|
qs422016 := string(qb422016.B)
|
||||||
//line views/mutators.qtpl:123
|
//line views/mutators.qtpl:124
|
||||||
qt422016.ReleaseByteBuffer(qb422016)
|
qt422016.ReleaseByteBuffer(qb422016)
|
||||||
//line views/mutators.qtpl:123
|
//line views/mutators.qtpl:124
|
||||||
return qs422016
|
return qs422016
|
||||||
//line views/mutators.qtpl:123
|
//line views/mutators.qtpl:124
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user