mirror of
https://github.com/osmarks/mycorrhiza.git
synced 2024-12-12 05:20:26 +00:00
Editor: Split the toolbar into two parts
Better usage of space, actually
This commit is contained in:
parent
05b6452308
commit
9950956654
@ -60,7 +60,8 @@ header { width: 100%; margin-bottom: 1rem; }
|
|||||||
.layout { display: grid; grid-template-columns: auto 1fr; column-gap: 1rem; margin: 0 1rem; row-gap: 1rem; }
|
.layout { display: grid; grid-template-columns: auto 1fr; column-gap: 1rem; margin: 0 1rem; row-gap: 1rem; }
|
||||||
.main-width { margin: 0; }
|
.main-width { margin: 0; }
|
||||||
main { grid-column: 1 / span 1; grid-row: 1 / span 2; }
|
main { grid-column: 1 / span 1; grid-row: 1 / span 2; }
|
||||||
.sibling-hyphae, .edit-toolbar, .help-topics { grid-column: 2 / span 1; grid-row: 1 / span 1; }
|
.sibling-hyphae, .markup-toolbar, .help-topics { grid-column: 2 / span 1; grid-row: 1 / span 1; }
|
||||||
|
.action-toolbar { grid-column: 2 / span 1; grid-row: 2 / span 1; }
|
||||||
.layout-card { width: 100%; }
|
.layout-card { width: 100%; }
|
||||||
.edit-toolbar__buttons {display: grid; }
|
.edit-toolbar__buttons {display: grid; }
|
||||||
}
|
}
|
||||||
@ -73,8 +74,10 @@ header { width: 100%; margin-bottom: 1rem; }
|
|||||||
.layout { grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); }
|
.layout { grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); }
|
||||||
.layout-card {max-width: 18rem;}
|
.layout-card {max-width: 18rem;}
|
||||||
.main-width { margin: 0 auto; }
|
.main-width { margin: 0 auto; }
|
||||||
main { grid-column: 2 / span 1; }
|
main { grid-column: 2 / span 1; grid-row: 1 / span 2; }
|
||||||
.sibling-hyphae, .edit-toolbar, .help-topics { grid-column: 3 / span 1; margin-left: 0; }
|
.sibling-hyphae, .markup-toolbar, .help-topics { grid-column: 3 / span 1; margin-left: 0; }
|
||||||
|
.markup-toolbar { grid-column: 3 / span 1; grid-row: 1 / span 2; }
|
||||||
|
.action-toolbar { grid-column: 1 / span 1; grid-row: 1 / span 1; }
|
||||||
.edit-toolbar__buttons { grid-template-columns: 1fr; }
|
.edit-toolbar__buttons { grid-template-columns: 1fr; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
{% import "github.com/bouncepaw/mycorrhiza/user" %}
|
{% import "github.com/bouncepaw/mycorrhiza/user" %}
|
||||||
|
|
||||||
{% func Toolbar(u *user.User, lc *l18n.Localizer) %}
|
{% func Toolbar(u *user.User, lc *l18n.Localizer) %}
|
||||||
<aside class="edit-toolbar layout-card">
|
<aside class="edit-toolbar markup-toolbar layout-card">
|
||||||
<h2 class="edit-toolbar__title layout-card__title">{%s lc.Get("edit.markup")%}</h2>
|
<h2 class="edit-toolbar__title layout-card__title">{%s lc.Get("edit.markup")%}</h2>
|
||||||
<section class="edit-toolbar__buttons">
|
<section class="edit-toolbar__buttons">
|
||||||
{% for _, el := range []struct{
|
{% for _, el := range []struct{
|
||||||
@ -43,6 +43,8 @@
|
|||||||
{% endfor %}
|
{% endfor %}
|
||||||
</section>
|
</section>
|
||||||
<p class="edit-toolbar__ad">{%s= lc.Get("edit.help", &l18n.Replacements{"link": fmt.Sprintf("<a href=\"/help/%s/mycomarkup\" target=\"_blank\" class=\"shy-link\">%s</a>", lc.Locale, lc.Get("edit.help_link"))}) %}</p>
|
<p class="edit-toolbar__ad">{%s= lc.Get("edit.help", &l18n.Replacements{"link": fmt.Sprintf("<a href=\"/help/%s/mycomarkup\" target=\"_blank\" class=\"shy-link\">%s</a>", lc.Locale, lc.Get("edit.help_link"))}) %}</p>
|
||||||
|
</aside>
|
||||||
|
<aside class="edit-toolbar action-toolbar layout-card">
|
||||||
<h2 class="edit-toolbar__title layout-card__title">{%s lc.Get("edit.actions")%}</h2>
|
<h2 class="edit-toolbar__title layout-card__title">{%s lc.Get("edit.actions")%}</h2>
|
||||||
<section class="edit-toolbar__buttons">
|
<section class="edit-toolbar__buttons">
|
||||||
{% for _, el := range []struct{
|
{% for _, el := range []struct{
|
||||||
|
@ -36,7 +36,7 @@ var (
|
|||||||
func StreamToolbar(qw422016 *qt422016.Writer, u *user.User, lc *l18n.Localizer) {
|
func StreamToolbar(qw422016 *qt422016.Writer, u *user.User, lc *l18n.Localizer) {
|
||||||
//line views/mutators.qtpl:8
|
//line views/mutators.qtpl:8
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
<aside class="edit-toolbar layout-card">
|
<aside class="edit-toolbar markup-toolbar layout-card">
|
||||||
<h2 class="edit-toolbar__title layout-card__title">`)
|
<h2 class="edit-toolbar__title layout-card__title">`)
|
||||||
//line views/mutators.qtpl:10
|
//line views/mutators.qtpl:10
|
||||||
qw422016.E().S(lc.Get("edit.markup"))
|
qw422016.E().S(lc.Get("edit.markup"))
|
||||||
@ -101,14 +101,16 @@ func StreamToolbar(qw422016 *qt422016.Writer, u *user.User, lc *l18n.Localizer)
|
|||||||
qw422016.N().S(lc.Get("edit.help", &l18n.Replacements{"link": fmt.Sprintf("<a href=\"/help/%s/mycomarkup\" target=\"_blank\" class=\"shy-link\">%s</a>", lc.Locale, lc.Get("edit.help_link"))}))
|
qw422016.N().S(lc.Get("edit.help", &l18n.Replacements{"link": fmt.Sprintf("<a href=\"/help/%s/mycomarkup\" target=\"_blank\" class=\"shy-link\">%s</a>", lc.Locale, lc.Get("edit.help_link"))}))
|
||||||
//line views/mutators.qtpl:45
|
//line views/mutators.qtpl:45
|
||||||
qw422016.N().S(`</p>
|
qw422016.N().S(`</p>
|
||||||
|
</aside>
|
||||||
|
<aside class="edit-toolbar action-toolbar layout-card">
|
||||||
<h2 class="edit-toolbar__title layout-card__title">`)
|
<h2 class="edit-toolbar__title layout-card__title">`)
|
||||||
//line views/mutators.qtpl:46
|
//line views/mutators.qtpl:48
|
||||||
qw422016.E().S(lc.Get("edit.actions"))
|
qw422016.E().S(lc.Get("edit.actions"))
|
||||||
//line views/mutators.qtpl:46
|
//line views/mutators.qtpl:48
|
||||||
qw422016.N().S(`</h2>
|
qw422016.N().S(`</h2>
|
||||||
<section class="edit-toolbar__buttons">
|
<section class="edit-toolbar__buttons">
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:48
|
//line views/mutators.qtpl:50
|
||||||
for _, el := range []struct {
|
for _, el := range []struct {
|
||||||
class string
|
class string
|
||||||
onclick string
|
onclick string
|
||||||
@ -117,348 +119,348 @@ func StreamToolbar(qw422016 *qt422016.Writer, u *user.User, lc *l18n.Localizer)
|
|||||||
{"date", "insertDate()", lc.Get("edit.date")},
|
{"date", "insertDate()", lc.Get("edit.date")},
|
||||||
{"time", "insertTimeUTC()", lc.Get("edit.time")},
|
{"time", "insertTimeUTC()", lc.Get("edit.time")},
|
||||||
} {
|
} {
|
||||||
//line views/mutators.qtpl:55
|
//line views/mutators.qtpl:57
|
||||||
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:57
|
//line views/mutators.qtpl:59
|
||||||
qw422016.E().S(el.class)
|
qw422016.E().S(el.class)
|
||||||
//line views/mutators.qtpl:57
|
//line views/mutators.qtpl:59
|
||||||
qw422016.N().S(`"
|
qw422016.N().S(`"
|
||||||
onclick="`)
|
onclick="`)
|
||||||
//line views/mutators.qtpl:58
|
//line views/mutators.qtpl:60
|
||||||
qw422016.E().S(el.onclick)
|
qw422016.E().S(el.onclick)
|
||||||
//line views/mutators.qtpl:58
|
//line views/mutators.qtpl:60
|
||||||
qw422016.N().S(`">
|
qw422016.N().S(`">
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:59
|
//line views/mutators.qtpl:61
|
||||||
qw422016.N().S(el.display)
|
qw422016.N().S(el.display)
|
||||||
//line views/mutators.qtpl:59
|
//line views/mutators.qtpl:61
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
</button>
|
</button>
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:61
|
//line views/mutators.qtpl:63
|
||||||
}
|
}
|
||||||
//line views/mutators.qtpl:61
|
//line views/mutators.qtpl:63
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:62
|
//line views/mutators.qtpl:64
|
||||||
if u.Group != "anon" {
|
if u.Group != "anon" {
|
||||||
//line views/mutators.qtpl:62
|
//line views/mutators.qtpl:64
|
||||||
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"
|
||||||
onclick="insertUserlink()">
|
onclick="insertUserlink()">
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:66
|
//line views/mutators.qtpl:68
|
||||||
qw422016.E().S(lc.Get("edit.selflink"))
|
qw422016.E().S(lc.Get("edit.selflink"))
|
||||||
//line views/mutators.qtpl:66
|
//line views/mutators.qtpl:68
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
</button>
|
</button>
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:68
|
//line views/mutators.qtpl:70
|
||||||
}
|
}
|
||||||
//line views/mutators.qtpl:68
|
//line views/mutators.qtpl:70
|
||||||
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:72
|
//line views/mutators.qtpl:74
|
||||||
}
|
}
|
||||||
|
|
||||||
//line views/mutators.qtpl:72
|
//line views/mutators.qtpl:74
|
||||||
func WriteToolbar(qq422016 qtio422016.Writer, u *user.User, lc *l18n.Localizer) {
|
func WriteToolbar(qq422016 qtio422016.Writer, u *user.User, lc *l18n.Localizer) {
|
||||||
//line views/mutators.qtpl:72
|
//line views/mutators.qtpl:74
|
||||||
qw422016 := qt422016.AcquireWriter(qq422016)
|
qw422016 := qt422016.AcquireWriter(qq422016)
|
||||||
//line views/mutators.qtpl:72
|
//line views/mutators.qtpl:74
|
||||||
StreamToolbar(qw422016, u, lc)
|
StreamToolbar(qw422016, u, lc)
|
||||||
//line views/mutators.qtpl:72
|
//line views/mutators.qtpl:74
|
||||||
qt422016.ReleaseWriter(qw422016)
|
qt422016.ReleaseWriter(qw422016)
|
||||||
//line views/mutators.qtpl:72
|
//line views/mutators.qtpl:74
|
||||||
}
|
}
|
||||||
|
|
||||||
//line views/mutators.qtpl:72
|
//line views/mutators.qtpl:74
|
||||||
func Toolbar(u *user.User, lc *l18n.Localizer) string {
|
func Toolbar(u *user.User, lc *l18n.Localizer) string {
|
||||||
//line views/mutators.qtpl:72
|
//line views/mutators.qtpl:74
|
||||||
qb422016 := qt422016.AcquireByteBuffer()
|
qb422016 := qt422016.AcquireByteBuffer()
|
||||||
//line views/mutators.qtpl:72
|
//line views/mutators.qtpl:74
|
||||||
WriteToolbar(qb422016, u, lc)
|
WriteToolbar(qb422016, u, lc)
|
||||||
//line views/mutators.qtpl:72
|
//line views/mutators.qtpl:74
|
||||||
qs422016 := string(qb422016.B)
|
qs422016 := string(qb422016.B)
|
||||||
//line views/mutators.qtpl:72
|
//line views/mutators.qtpl:74
|
||||||
qt422016.ReleaseByteBuffer(qb422016)
|
qt422016.ReleaseByteBuffer(qb422016)
|
||||||
//line views/mutators.qtpl:72
|
//line views/mutators.qtpl:74
|
||||||
return qs422016
|
return qs422016
|
||||||
//line views/mutators.qtpl:72
|
//line views/mutators.qtpl:74
|
||||||
}
|
}
|
||||||
|
|
||||||
//line views/mutators.qtpl:74
|
//line views/mutators.qtpl:76
|
||||||
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:74
|
//line views/mutators.qtpl:76
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:76
|
//line views/mutators.qtpl:78
|
||||||
lc := l18n.FromRequest(rq)
|
lc := l18n.FromRequest(rq)
|
||||||
|
|
||||||
//line views/mutators.qtpl:77
|
//line views/mutators.qtpl:79
|
||||||
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">`)
|
<h1 class="edit__title">`)
|
||||||
//line views/mutators.qtpl:80
|
//line views/mutators.qtpl:82
|
||||||
qw422016.N().S(fmt.Sprintf(lc.Get("edit.title"), beautifulLink(hyphaName)))
|
qw422016.N().S(fmt.Sprintf(lc.Get("edit.title"), beautifulLink(hyphaName)))
|
||||||
//line views/mutators.qtpl:80
|
//line views/mutators.qtpl:82
|
||||||
qw422016.N().S(`</h1>
|
qw422016.N().S(`</h1>
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:81
|
//line views/mutators.qtpl:83
|
||||||
qw422016.N().S(warning)
|
qw422016.N().S(warning)
|
||||||
//line views/mutators.qtpl:81
|
//line views/mutators.qtpl:83
|
||||||
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:83
|
//line views/mutators.qtpl:85
|
||||||
qw422016.E().S(hyphaName)
|
qw422016.E().S(hyphaName)
|
||||||
//line views/mutators.qtpl:83
|
//line views/mutators.qtpl:85
|
||||||
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:84
|
//line views/mutators.qtpl:86
|
||||||
qw422016.E().S(textAreaFill)
|
qw422016.E().S(textAreaFill)
|
||||||
//line views/mutators.qtpl:84
|
//line views/mutators.qtpl:86
|
||||||
qw422016.N().S(`</textarea>
|
qw422016.N().S(`</textarea>
|
||||||
<br><br>
|
<br><br>
|
||||||
<label for="text">`)
|
<label for="text">`)
|
||||||
//line views/mutators.qtpl:86
|
//line views/mutators.qtpl:88
|
||||||
qw422016.E().S(lc.Get("edit.tag"))
|
qw422016.E().S(lc.Get("edit.tag"))
|
||||||
//line views/mutators.qtpl:86
|
//line views/mutators.qtpl:88
|
||||||
qw422016.N().S(`</label><br>
|
qw422016.N().S(`</label><br>
|
||||||
<input id="text" type="text" name="message" class="edit-form__message">
|
<input id="text" type="text" name="message" class="edit-form__message">
|
||||||
<br><br>
|
<br><br>
|
||||||
<button type="submit" name="action" class="btn btn_accent edit-form__save" value="Save">`)
|
<button type="submit" name="action" class="btn btn_accent edit-form__save" value="Save">`)
|
||||||
//line views/mutators.qtpl:89
|
//line views/mutators.qtpl:91
|
||||||
qw422016.E().S(lc.Get("edit.save"))
|
qw422016.E().S(lc.Get("edit.save"))
|
||||||
//line views/mutators.qtpl:89
|
//line views/mutators.qtpl:91
|
||||||
qw422016.N().S(`</button>
|
qw422016.N().S(`</button>
|
||||||
<button type="submit" name="action" class="btn edit-form__preview" value="Preview">`)
|
<button type="submit" name="action" class="btn edit-form__preview" value="Preview">`)
|
||||||
//line views/mutators.qtpl:90
|
//line views/mutators.qtpl:92
|
||||||
qw422016.E().S(lc.Get("edit.preview"))
|
qw422016.E().S(lc.Get("edit.preview"))
|
||||||
//line views/mutators.qtpl:90
|
//line views/mutators.qtpl:92
|
||||||
qw422016.N().S(`</button>
|
qw422016.N().S(`</button>
|
||||||
<a href="/hypha/`)
|
<a href="/hypha/`)
|
||||||
//line views/mutators.qtpl:91
|
//line views/mutators.qtpl:93
|
||||||
qw422016.E().S(hyphaName)
|
qw422016.E().S(hyphaName)
|
||||||
//line views/mutators.qtpl:91
|
//line views/mutators.qtpl:93
|
||||||
qw422016.N().S(`" class="btn btn_weak">`)
|
qw422016.N().S(`" class="btn btn_weak">`)
|
||||||
//line views/mutators.qtpl:91
|
//line views/mutators.qtpl:93
|
||||||
qw422016.E().S(lc.Get("ui.cancel"))
|
qw422016.E().S(lc.Get("ui.cancel"))
|
||||||
//line views/mutators.qtpl:91
|
//line views/mutators.qtpl:93
|
||||||
qw422016.N().S(`</a>
|
qw422016.N().S(`</a>
|
||||||
</form>
|
</form>
|
||||||
</main>
|
</main>
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:94
|
//line views/mutators.qtpl:96
|
||||||
qw422016.N().S(Toolbar(user.FromRequest(rq), lc))
|
qw422016.N().S(Toolbar(user.FromRequest(rq), lc))
|
||||||
//line views/mutators.qtpl:94
|
//line views/mutators.qtpl:96
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
</div>
|
</div>
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:96
|
//line views/mutators.qtpl:98
|
||||||
streameditScripts(qw422016)
|
streameditScripts(qw422016)
|
||||||
//line views/mutators.qtpl:96
|
//line views/mutators.qtpl:98
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:97
|
//line views/mutators.qtpl:99
|
||||||
}
|
}
|
||||||
|
|
||||||
//line views/mutators.qtpl:97
|
//line views/mutators.qtpl:99
|
||||||
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:97
|
//line views/mutators.qtpl:99
|
||||||
qw422016 := qt422016.AcquireWriter(qq422016)
|
qw422016 := qt422016.AcquireWriter(qq422016)
|
||||||
//line views/mutators.qtpl:97
|
//line views/mutators.qtpl:99
|
||||||
StreamEditHTML(qw422016, rq, hyphaName, textAreaFill, warning)
|
StreamEditHTML(qw422016, rq, hyphaName, textAreaFill, warning)
|
||||||
//line views/mutators.qtpl:97
|
//line views/mutators.qtpl:99
|
||||||
qt422016.ReleaseWriter(qw422016)
|
qt422016.ReleaseWriter(qw422016)
|
||||||
//line views/mutators.qtpl:97
|
//line views/mutators.qtpl:99
|
||||||
}
|
}
|
||||||
|
|
||||||
//line views/mutators.qtpl:97
|
//line views/mutators.qtpl:99
|
||||||
func EditHTML(rq *http.Request, hyphaName, textAreaFill, warning string) string {
|
func EditHTML(rq *http.Request, hyphaName, textAreaFill, warning string) string {
|
||||||
//line views/mutators.qtpl:97
|
//line views/mutators.qtpl:99
|
||||||
qb422016 := qt422016.AcquireByteBuffer()
|
qb422016 := qt422016.AcquireByteBuffer()
|
||||||
//line views/mutators.qtpl:97
|
//line views/mutators.qtpl:99
|
||||||
WriteEditHTML(qb422016, rq, hyphaName, textAreaFill, warning)
|
WriteEditHTML(qb422016, rq, hyphaName, textAreaFill, warning)
|
||||||
//line views/mutators.qtpl:97
|
//line views/mutators.qtpl:99
|
||||||
qs422016 := string(qb422016.B)
|
qs422016 := string(qb422016.B)
|
||||||
//line views/mutators.qtpl:97
|
//line views/mutators.qtpl:99
|
||||||
qt422016.ReleaseByteBuffer(qb422016)
|
qt422016.ReleaseByteBuffer(qb422016)
|
||||||
//line views/mutators.qtpl:97
|
//line views/mutators.qtpl:99
|
||||||
return qs422016
|
return qs422016
|
||||||
//line views/mutators.qtpl:97
|
//line views/mutators.qtpl:99
|
||||||
}
|
}
|
||||||
|
|
||||||
//line views/mutators.qtpl:99
|
//line views/mutators.qtpl:101
|
||||||
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:99
|
//line views/mutators.qtpl:101
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:101
|
//line views/mutators.qtpl:103
|
||||||
lc := l18n.FromRequest(rq)
|
lc := l18n.FromRequest(rq)
|
||||||
|
|
||||||
//line views/mutators.qtpl:102
|
//line views/mutators.qtpl:104
|
||||||
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">`)
|
<h1 class="edit__title">`)
|
||||||
//line views/mutators.qtpl:105
|
//line views/mutators.qtpl:107
|
||||||
qw422016.N().S(fmt.Sprintf(lc.Get("edit.title"), beautifulLink(hyphaName)))
|
qw422016.N().S(fmt.Sprintf(lc.Get("edit.title"), beautifulLink(hyphaName)))
|
||||||
//line views/mutators.qtpl:105
|
//line views/mutators.qtpl:107
|
||||||
qw422016.N().S(`</h1>
|
qw422016.N().S(`</h1>
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:106
|
//line views/mutators.qtpl:108
|
||||||
qw422016.N().S(warning)
|
qw422016.N().S(warning)
|
||||||
//line views/mutators.qtpl:106
|
//line views/mutators.qtpl:108
|
||||||
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:108
|
//line views/mutators.qtpl:110
|
||||||
qw422016.E().S(hyphaName)
|
qw422016.E().S(hyphaName)
|
||||||
//line views/mutators.qtpl:108
|
//line views/mutators.qtpl:110
|
||||||
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:109
|
//line views/mutators.qtpl:111
|
||||||
qw422016.E().S(textAreaFill)
|
qw422016.E().S(textAreaFill)
|
||||||
//line views/mutators.qtpl:109
|
//line views/mutators.qtpl:111
|
||||||
qw422016.N().S(`</textarea>
|
qw422016.N().S(`</textarea>
|
||||||
<br><br>
|
<br><br>
|
||||||
<label for="text">`)
|
<label for="text">`)
|
||||||
//line views/mutators.qtpl:111
|
//line views/mutators.qtpl:113
|
||||||
qw422016.E().S(lc.Get("edit.tag"))
|
qw422016.E().S(lc.Get("edit.tag"))
|
||||||
//line views/mutators.qtpl:111
|
//line views/mutators.qtpl:113
|
||||||
qw422016.N().S(`</label><br>
|
qw422016.N().S(`</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:112
|
//line views/mutators.qtpl:114
|
||||||
qw422016.E().S(message)
|
qw422016.E().S(message)
|
||||||
//line views/mutators.qtpl:112
|
//line views/mutators.qtpl:114
|
||||||
qw422016.N().S(`">
|
qw422016.N().S(`">
|
||||||
<br><br>
|
<br><br>
|
||||||
<button type="submit" name="action" class="btn btn_accent edit-form__save" value="Save">`)
|
<button type="submit" name="action" class="btn btn_accent edit-form__save" value="Save">`)
|
||||||
//line views/mutators.qtpl:114
|
//line views/mutators.qtpl:116
|
||||||
qw422016.E().S(lc.Get("edit.save"))
|
qw422016.E().S(lc.Get("edit.save"))
|
||||||
//line views/mutators.qtpl:114
|
//line views/mutators.qtpl:116
|
||||||
qw422016.N().S(`</button>
|
qw422016.N().S(`</button>
|
||||||
<button type="submit" name="action" class="btn edit-form__preview" value="Preview">`)
|
<button type="submit" name="action" class="btn edit-form__preview" value="Preview">`)
|
||||||
//line views/mutators.qtpl:115
|
//line views/mutators.qtpl:117
|
||||||
qw422016.E().S(lc.Get("edit.preview"))
|
qw422016.E().S(lc.Get("edit.preview"))
|
||||||
//line views/mutators.qtpl:115
|
//line views/mutators.qtpl:117
|
||||||
qw422016.N().S(`</button>
|
qw422016.N().S(`</button>
|
||||||
<a href="/hypha/`)
|
<a href="/hypha/`)
|
||||||
//line views/mutators.qtpl:116
|
//line views/mutators.qtpl:118
|
||||||
qw422016.E().S(hyphaName)
|
qw422016.E().S(hyphaName)
|
||||||
//line views/mutators.qtpl:116
|
//line views/mutators.qtpl:118
|
||||||
qw422016.N().S(`" class="btn btn_weak">`)
|
qw422016.N().S(`" class="btn btn_weak">`)
|
||||||
//line views/mutators.qtpl:116
|
//line views/mutators.qtpl:118
|
||||||
qw422016.E().S(lc.Get("ui.cancel"))
|
qw422016.E().S(lc.Get("ui.cancel"))
|
||||||
//line views/mutators.qtpl:116
|
//line views/mutators.qtpl:118
|
||||||
qw422016.N().S(`</a>
|
qw422016.N().S(`</a>
|
||||||
</form>
|
</form>
|
||||||
<p class="warning">`)
|
<p class="warning">`)
|
||||||
//line views/mutators.qtpl:118
|
//line views/mutators.qtpl:120
|
||||||
qw422016.E().S(lc.Get("edit.preview_tip"))
|
qw422016.E().S(lc.Get("edit.preview_tip"))
|
||||||
//line views/mutators.qtpl:118
|
//line views/mutators.qtpl:120
|
||||||
qw422016.N().S(`</p>
|
qw422016.N().S(`</p>
|
||||||
<article class="edit__preview">`)
|
<article class="edit__preview">`)
|
||||||
//line views/mutators.qtpl:119
|
//line views/mutators.qtpl:121
|
||||||
qw422016.N().S(renderedPage)
|
qw422016.N().S(renderedPage)
|
||||||
//line views/mutators.qtpl:119
|
//line views/mutators.qtpl:121
|
||||||
qw422016.N().S(`</article>
|
qw422016.N().S(`</article>
|
||||||
</main>
|
</main>
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:121
|
//line views/mutators.qtpl:123
|
||||||
qw422016.N().S(Toolbar(user.FromRequest(rq), lc))
|
qw422016.N().S(Toolbar(user.FromRequest(rq), lc))
|
||||||
//line views/mutators.qtpl:121
|
//line views/mutators.qtpl:123
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
</div>
|
</div>
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:123
|
//line views/mutators.qtpl:125
|
||||||
streameditScripts(qw422016)
|
streameditScripts(qw422016)
|
||||||
//line views/mutators.qtpl:123
|
//line views/mutators.qtpl:125
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:124
|
//line views/mutators.qtpl:126
|
||||||
}
|
}
|
||||||
|
|
||||||
//line views/mutators.qtpl:124
|
//line views/mutators.qtpl:126
|
||||||
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:124
|
//line views/mutators.qtpl:126
|
||||||
qw422016 := qt422016.AcquireWriter(qq422016)
|
qw422016 := qt422016.AcquireWriter(qq422016)
|
||||||
//line views/mutators.qtpl:124
|
//line views/mutators.qtpl:126
|
||||||
StreamPreviewHTML(qw422016, rq, hyphaName, textAreaFill, message, warning, renderedPage)
|
StreamPreviewHTML(qw422016, rq, hyphaName, textAreaFill, message, warning, renderedPage)
|
||||||
//line views/mutators.qtpl:124
|
//line views/mutators.qtpl:126
|
||||||
qt422016.ReleaseWriter(qw422016)
|
qt422016.ReleaseWriter(qw422016)
|
||||||
//line views/mutators.qtpl:124
|
//line views/mutators.qtpl:126
|
||||||
}
|
}
|
||||||
|
|
||||||
//line views/mutators.qtpl:124
|
//line views/mutators.qtpl:126
|
||||||
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:124
|
//line views/mutators.qtpl:126
|
||||||
qb422016 := qt422016.AcquireByteBuffer()
|
qb422016 := qt422016.AcquireByteBuffer()
|
||||||
//line views/mutators.qtpl:124
|
//line views/mutators.qtpl:126
|
||||||
WritePreviewHTML(qb422016, rq, hyphaName, textAreaFill, message, warning, renderedPage)
|
WritePreviewHTML(qb422016, rq, hyphaName, textAreaFill, message, warning, renderedPage)
|
||||||
//line views/mutators.qtpl:124
|
//line views/mutators.qtpl:126
|
||||||
qs422016 := string(qb422016.B)
|
qs422016 := string(qb422016.B)
|
||||||
//line views/mutators.qtpl:124
|
//line views/mutators.qtpl:126
|
||||||
qt422016.ReleaseByteBuffer(qb422016)
|
qt422016.ReleaseByteBuffer(qb422016)
|
||||||
//line views/mutators.qtpl:124
|
//line views/mutators.qtpl:126
|
||||||
return qs422016
|
return qs422016
|
||||||
//line views/mutators.qtpl:124
|
//line views/mutators.qtpl:126
|
||||||
}
|
}
|
||||||
|
|
||||||
//line views/mutators.qtpl:126
|
//line views/mutators.qtpl:128
|
||||||
func streameditScripts(qw422016 *qt422016.Writer) {
|
func streameditScripts(qw422016 *qt422016.Writer) {
|
||||||
//line views/mutators.qtpl:126
|
//line views/mutators.qtpl:128
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
<script src="/static/editor.js"></script>
|
<script src="/static/editor.js"></script>
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:128
|
//line views/mutators.qtpl:130
|
||||||
for _, scriptPath := range cfg.EditScripts {
|
for _, scriptPath := range cfg.EditScripts {
|
||||||
//line views/mutators.qtpl:128
|
//line views/mutators.qtpl:130
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
<script src="`)
|
<script src="`)
|
||||||
//line views/mutators.qtpl:129
|
//line views/mutators.qtpl:131
|
||||||
qw422016.E().S(scriptPath)
|
qw422016.E().S(scriptPath)
|
||||||
//line views/mutators.qtpl:129
|
//line views/mutators.qtpl:131
|
||||||
qw422016.N().S(`"></script>
|
qw422016.N().S(`"></script>
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:130
|
//line views/mutators.qtpl:132
|
||||||
}
|
}
|
||||||
//line views/mutators.qtpl:130
|
//line views/mutators.qtpl:132
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:131
|
//line views/mutators.qtpl:133
|
||||||
}
|
}
|
||||||
|
|
||||||
//line views/mutators.qtpl:131
|
//line views/mutators.qtpl:133
|
||||||
func writeeditScripts(qq422016 qtio422016.Writer) {
|
func writeeditScripts(qq422016 qtio422016.Writer) {
|
||||||
//line views/mutators.qtpl:131
|
//line views/mutators.qtpl:133
|
||||||
qw422016 := qt422016.AcquireWriter(qq422016)
|
qw422016 := qt422016.AcquireWriter(qq422016)
|
||||||
//line views/mutators.qtpl:131
|
//line views/mutators.qtpl:133
|
||||||
streameditScripts(qw422016)
|
streameditScripts(qw422016)
|
||||||
//line views/mutators.qtpl:131
|
//line views/mutators.qtpl:133
|
||||||
qt422016.ReleaseWriter(qw422016)
|
qt422016.ReleaseWriter(qw422016)
|
||||||
//line views/mutators.qtpl:131
|
//line views/mutators.qtpl:133
|
||||||
}
|
}
|
||||||
|
|
||||||
//line views/mutators.qtpl:131
|
//line views/mutators.qtpl:133
|
||||||
func editScripts() string {
|
func editScripts() string {
|
||||||
//line views/mutators.qtpl:131
|
//line views/mutators.qtpl:133
|
||||||
qb422016 := qt422016.AcquireByteBuffer()
|
qb422016 := qt422016.AcquireByteBuffer()
|
||||||
//line views/mutators.qtpl:131
|
//line views/mutators.qtpl:133
|
||||||
writeeditScripts(qb422016)
|
writeeditScripts(qb422016)
|
||||||
//line views/mutators.qtpl:131
|
//line views/mutators.qtpl:133
|
||||||
qs422016 := string(qb422016.B)
|
qs422016 := string(qb422016.B)
|
||||||
//line views/mutators.qtpl:131
|
//line views/mutators.qtpl:133
|
||||||
qt422016.ReleaseByteBuffer(qb422016)
|
qt422016.ReleaseByteBuffer(qb422016)
|
||||||
//line views/mutators.qtpl:131
|
//line views/mutators.qtpl:133
|
||||||
return qs422016
|
return qs422016
|
||||||
//line views/mutators.qtpl:131
|
//line views/mutators.qtpl:133
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user