mirror of
https://github.com/osmarks/mycorrhiza.git
synced 2025-01-31 19:39:09 +00:00
Add numbered and bulleted lists to the toolbar
This commit is contained in:
parent
9f8003e8c9
commit
317081b69f
@ -488,14 +488,14 @@ const wrapBold = selectionWrapper(2, '**'),
|
|||||||
wrapStrikethrough = selectionWrapper(2, '~~'),
|
wrapStrikethrough = selectionWrapper(2, '~~'),
|
||||||
wrapLink = selectionWrapper(2, '[[', ']]')
|
wrapLink = selectionWrapper(2, '[[', ']]')
|
||||||
|
|
||||||
const insertHorizontalBar = textInserter('----\n'),
|
const insertHorizontalBar = textInserter('\n----\n'),
|
||||||
insertImgBlock = textInserter('img {\n\t\n}\n', 7),
|
insertImgBlock = textInserter('\nimg {\n \n}\n', 10),
|
||||||
insertTableBlock = textInserter('table {\n\t\n}\n', 9),
|
insertTableBlock = textInserter('\ntable {\n \n}\n', 12),
|
||||||
insertRocket = textInserter('=> '),
|
insertRocket = textInserter('\n=> '),
|
||||||
insertXcl = textInserter('<= '),
|
insertXcl = textInserter('\n<= '),
|
||||||
insertHeading2 = textInserter('## '),
|
insertHeading2 = textInserter('\n## '),
|
||||||
insertHeading3 = textInserter('### '),
|
insertHeading3 = textInserter('\n### '),
|
||||||
insertCodeblock = textInserter('`)
|
insertCodeblock = textInserter('\n`)
|
||||||
//line assets/assets.qtpl:14
|
//line assets/assets.qtpl:14
|
||||||
qw422016.N().S("`")
|
qw422016.N().S("`")
|
||||||
//line assets/assets.qtpl:14
|
//line assets/assets.qtpl:14
|
||||||
@ -519,7 +519,9 @@ const insertHorizontalBar = textInserter('----\n'),
|
|||||||
//line assets/assets.qtpl:14
|
//line assets/assets.qtpl:14
|
||||||
qw422016.N().S("`")
|
qw422016.N().S("`")
|
||||||
//line assets/assets.qtpl:14
|
//line assets/assets.qtpl:14
|
||||||
qw422016.N().S(`\n', 4)
|
qw422016.N().S(`\n', 5),
|
||||||
|
insertBulletedList = textInserter('\n* '),
|
||||||
|
insertNumberedList = textInserter('\n*. ')
|
||||||
|
|
||||||
function insertDate() {
|
function insertDate() {
|
||||||
let date = new Date().toISOString().split('T')[0]
|
let date = new Date().toISOString().split('T')[0]
|
||||||
|
@ -47,14 +47,16 @@ const wrapBold = selectionWrapper(2, '**'),
|
|||||||
wrapStrikethrough = selectionWrapper(2, '~~'),
|
wrapStrikethrough = selectionWrapper(2, '~~'),
|
||||||
wrapLink = selectionWrapper(2, '[[', ']]')
|
wrapLink = selectionWrapper(2, '[[', ']]')
|
||||||
|
|
||||||
const insertHorizontalBar = textInserter('----\n'),
|
const insertHorizontalBar = textInserter('\n----\n'),
|
||||||
insertImgBlock = textInserter('img {\n\t\n}\n', 7),
|
insertImgBlock = textInserter('\nimg {\n \n}\n', 10),
|
||||||
insertTableBlock = textInserter('table {\n\t\n}\n', 9),
|
insertTableBlock = textInserter('\ntable {\n \n}\n', 12),
|
||||||
insertRocket = textInserter('=> '),
|
insertRocket = textInserter('\n=> '),
|
||||||
insertXcl = textInserter('<= '),
|
insertXcl = textInserter('\n<= '),
|
||||||
insertHeading2 = textInserter('## '),
|
insertHeading2 = textInserter('\n## '),
|
||||||
insertHeading3 = textInserter('### '),
|
insertHeading3 = textInserter('\n### '),
|
||||||
insertCodeblock = textInserter('```\n\n```\n', 4)
|
insertCodeblock = textInserter('\n```\n\n```\n', 5),
|
||||||
|
insertBulletedList = textInserter('\n* '),
|
||||||
|
insertNumberedList = textInserter('\n*. ')
|
||||||
|
|
||||||
function insertDate() {
|
function insertDate() {
|
||||||
let date = new Date().toISOString().split('T')[0]
|
let date = new Date().toISOString().split('T')[0]
|
||||||
|
@ -27,6 +27,8 @@
|
|||||||
{"table", "insertTableBlock()", "<code>table {}</code>"},
|
{"table", "insertTableBlock()", "<code>table {}</code>"},
|
||||||
{"hr", "insertHorizontalBar()", "Horizontal bar"},
|
{"hr", "insertHorizontalBar()", "Horizontal bar"},
|
||||||
{"codeblock", "insertCodeblock()", "Code block"},
|
{"codeblock", "insertCodeblock()", "Code block"},
|
||||||
|
{"bulletedlist", "insertBulletedList()", "* bullet list"},
|
||||||
|
{"numberedlist", "insertNumberedList()", "*. number list"},
|
||||||
} %}
|
} %}
|
||||||
<button
|
<button
|
||||||
class="edit-toolbar__btn edit-toolbar__{%s el.class %}"
|
class="edit-toolbar__btn edit-toolbar__{%s el.class %}"
|
||||||
|
@ -56,37 +56,39 @@ func StreamToolbar(qw422016 *qt422016.Writer, u *user.User) {
|
|||||||
{"table", "insertTableBlock()", "<code>table {}</code>"},
|
{"table", "insertTableBlock()", "<code>table {}</code>"},
|
||||||
{"hr", "insertHorizontalBar()", "Horizontal bar"},
|
{"hr", "insertHorizontalBar()", "Horizontal bar"},
|
||||||
{"codeblock", "insertCodeblock()", "Code block"},
|
{"codeblock", "insertCodeblock()", "Code block"},
|
||||||
|
{"bulletedlist", "insertBulletedList()", "* bullet list"},
|
||||||
|
{"numberedlist", "insertNumberedList()", "*. number list"},
|
||||||
} {
|
} {
|
||||||
//line views/mutators.qtpl:30
|
//line views/mutators.qtpl:32
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
<button
|
<button
|
||||||
class="edit-toolbar__btn edit-toolbar__`)
|
class="edit-toolbar__btn edit-toolbar__`)
|
||||||
//line views/mutators.qtpl:32
|
//line views/mutators.qtpl:34
|
||||||
qw422016.E().S(el.class)
|
qw422016.E().S(el.class)
|
||||||
//line views/mutators.qtpl:32
|
//line views/mutators.qtpl:34
|
||||||
qw422016.N().S(`"
|
qw422016.N().S(`"
|
||||||
onclick="`)
|
onclick="`)
|
||||||
//line views/mutators.qtpl:33
|
//line views/mutators.qtpl:35
|
||||||
qw422016.E().S(el.onclick)
|
qw422016.E().S(el.onclick)
|
||||||
//line views/mutators.qtpl:33
|
//line views/mutators.qtpl:35
|
||||||
qw422016.N().S(`">
|
qw422016.N().S(`">
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:34
|
//line views/mutators.qtpl:36
|
||||||
qw422016.N().S(el.display)
|
qw422016.N().S(el.display)
|
||||||
//line views/mutators.qtpl:34
|
//line views/mutators.qtpl:36
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
</button>
|
</button>
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:36
|
//line views/mutators.qtpl:38
|
||||||
}
|
}
|
||||||
//line views/mutators.qtpl:36
|
//line views/mutators.qtpl:38
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
</section>
|
</section>
|
||||||
<p class="edit-toolbar__ad"><a href="https://mycorrhiza.lesarbr.es/hypha/mycomarkup" target="_blank">Learn more</a> about mycomarkup</p>
|
<p class="edit-toolbar__ad"><a href="https://mycorrhiza.lesarbr.es/hypha/mycomarkup" target="_blank">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:41
|
//line views/mutators.qtpl:43
|
||||||
for _, el := range []struct {
|
for _, el := range []struct {
|
||||||
class string
|
class string
|
||||||
onclick string
|
onclick string
|
||||||
@ -94,34 +96,34 @@ func StreamToolbar(qw422016 *qt422016.Writer, u *user.User) {
|
|||||||
}{
|
}{
|
||||||
{"date", "insertDate()", "Insert current date"},
|
{"date", "insertDate()", "Insert current date"},
|
||||||
} {
|
} {
|
||||||
//line views/mutators.qtpl:47
|
//line views/mutators.qtpl:49
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
<button
|
<button
|
||||||
class="edit-toolbar__btn edit-toolbar__`)
|
class="edit-toolbar__btn edit-toolbar__`)
|
||||||
//line views/mutators.qtpl:49
|
//line views/mutators.qtpl:51
|
||||||
qw422016.E().S(el.class)
|
qw422016.E().S(el.class)
|
||||||
//line views/mutators.qtpl:49
|
//line views/mutators.qtpl:51
|
||||||
qw422016.N().S(`"
|
qw422016.N().S(`"
|
||||||
onclick="`)
|
onclick="`)
|
||||||
//line views/mutators.qtpl:50
|
//line views/mutators.qtpl:52
|
||||||
qw422016.E().S(el.onclick)
|
qw422016.E().S(el.onclick)
|
||||||
//line views/mutators.qtpl:50
|
//line views/mutators.qtpl:52
|
||||||
qw422016.N().S(`">
|
qw422016.N().S(`">
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:51
|
//line views/mutators.qtpl:53
|
||||||
qw422016.N().S(el.display)
|
qw422016.N().S(el.display)
|
||||||
//line views/mutators.qtpl:51
|
//line views/mutators.qtpl:53
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
</button>
|
</button>
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:53
|
//line views/mutators.qtpl:55
|
||||||
}
|
}
|
||||||
//line views/mutators.qtpl:53
|
//line views/mutators.qtpl:55
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:54
|
//line views/mutators.qtpl:56
|
||||||
if u.Group != "anon" {
|
if u.Group != "anon" {
|
||||||
//line views/mutators.qtpl:54
|
//line views/mutators.qtpl:56
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
<button
|
<button
|
||||||
class="edit-toolbar__btn edit-toolbar__user-link"
|
class="edit-toolbar__btn edit-toolbar__user-link"
|
||||||
@ -129,201 +131,201 @@ func StreamToolbar(qw422016 *qt422016.Writer, u *user.User) {
|
|||||||
Link yourself
|
Link yourself
|
||||||
</button>
|
</button>
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:60
|
//line views/mutators.qtpl:62
|
||||||
}
|
}
|
||||||
//line views/mutators.qtpl:60
|
//line views/mutators.qtpl:62
|
||||||
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:64
|
//line views/mutators.qtpl:66
|
||||||
}
|
}
|
||||||
|
|
||||||
//line views/mutators.qtpl:64
|
//line views/mutators.qtpl:66
|
||||||
func WriteToolbar(qq422016 qtio422016.Writer, u *user.User) {
|
func WriteToolbar(qq422016 qtio422016.Writer, u *user.User) {
|
||||||
//line views/mutators.qtpl:64
|
//line views/mutators.qtpl:66
|
||||||
qw422016 := qt422016.AcquireWriter(qq422016)
|
qw422016 := qt422016.AcquireWriter(qq422016)
|
||||||
//line views/mutators.qtpl:64
|
//line views/mutators.qtpl:66
|
||||||
StreamToolbar(qw422016, u)
|
StreamToolbar(qw422016, u)
|
||||||
//line views/mutators.qtpl:64
|
//line views/mutators.qtpl:66
|
||||||
qt422016.ReleaseWriter(qw422016)
|
qt422016.ReleaseWriter(qw422016)
|
||||||
//line views/mutators.qtpl:64
|
//line views/mutators.qtpl:66
|
||||||
}
|
}
|
||||||
|
|
||||||
//line views/mutators.qtpl:64
|
//line views/mutators.qtpl:66
|
||||||
func Toolbar(u *user.User) string {
|
func Toolbar(u *user.User) string {
|
||||||
//line views/mutators.qtpl:64
|
//line views/mutators.qtpl:66
|
||||||
qb422016 := qt422016.AcquireByteBuffer()
|
qb422016 := qt422016.AcquireByteBuffer()
|
||||||
//line views/mutators.qtpl:64
|
//line views/mutators.qtpl:66
|
||||||
WriteToolbar(qb422016, u)
|
WriteToolbar(qb422016, u)
|
||||||
//line views/mutators.qtpl:64
|
//line views/mutators.qtpl:66
|
||||||
qs422016 := string(qb422016.B)
|
qs422016 := string(qb422016.B)
|
||||||
//line views/mutators.qtpl:64
|
//line views/mutators.qtpl:66
|
||||||
qt422016.ReleaseByteBuffer(qb422016)
|
qt422016.ReleaseByteBuffer(qb422016)
|
||||||
//line views/mutators.qtpl:64
|
//line views/mutators.qtpl:66
|
||||||
return qs422016
|
return qs422016
|
||||||
//line views/mutators.qtpl:64
|
//line views/mutators.qtpl:66
|
||||||
}
|
}
|
||||||
|
|
||||||
//line views/mutators.qtpl:66
|
//line views/mutators.qtpl:68
|
||||||
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:66
|
//line views/mutators.qtpl:68
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:67
|
//line views/mutators.qtpl:69
|
||||||
qw422016.N().S(NavHTML(rq, hyphaName, "edit"))
|
qw422016.N().S(NavHTML(rq, hyphaName, "edit"))
|
||||||
//line views/mutators.qtpl:67
|
//line views/mutators.qtpl:69
|
||||||
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:70
|
//line views/mutators.qtpl:72
|
||||||
qw422016.E().S(util.BeautifulName(hyphaName))
|
qw422016.E().S(util.BeautifulName(hyphaName))
|
||||||
//line views/mutators.qtpl:70
|
//line views/mutators.qtpl:72
|
||||||
qw422016.N().S(`</h1>
|
qw422016.N().S(`</h1>
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:71
|
//line views/mutators.qtpl:73
|
||||||
qw422016.N().S(warning)
|
qw422016.N().S(warning)
|
||||||
//line views/mutators.qtpl:71
|
//line views/mutators.qtpl:73
|
||||||
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:73
|
//line views/mutators.qtpl:75
|
||||||
qw422016.E().S(hyphaName)
|
qw422016.E().S(hyphaName)
|
||||||
//line views/mutators.qtpl:73
|
//line views/mutators.qtpl:75
|
||||||
qw422016.N().S(`">
|
qw422016.N().S(`">
|
||||||
<textarea name="text" class="edit-form__textarea">`)
|
<textarea name="text" class="edit-form__textarea">`)
|
||||||
//line views/mutators.qtpl:74
|
//line views/mutators.qtpl:76
|
||||||
qw422016.E().S(textAreaFill)
|
qw422016.E().S(textAreaFill)
|
||||||
//line views/mutators.qtpl:74
|
//line views/mutators.qtpl:76
|
||||||
qw422016.N().S(`</textarea>
|
qw422016.N().S(`</textarea>
|
||||||
<br/>
|
<br/>
|
||||||
<input type="submit" name="action" value="Save" class="edit-form__save"/>
|
<input type="submit" name="action" value="Save" class="edit-form__save"/>
|
||||||
<input type="submit" name="action" value="Preview" class="edit-form__preview">
|
<input type="submit" name="action" value="Preview" class="edit-form__preview">
|
||||||
<a href="/page/`)
|
<a href="/page/`)
|
||||||
//line views/mutators.qtpl:78
|
//line views/mutators.qtpl:80
|
||||||
qw422016.E().S(hyphaName)
|
qw422016.E().S(hyphaName)
|
||||||
//line views/mutators.qtpl:78
|
//line views/mutators.qtpl:80
|
||||||
qw422016.N().S(`" class="edit-form__cancel">Cancel</a>
|
qw422016.N().S(`" class="edit-form__cancel">Cancel</a>
|
||||||
</form>
|
</form>
|
||||||
</main>
|
</main>
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:81
|
//line views/mutators.qtpl:83
|
||||||
qw422016.N().S(Toolbar(user.FromRequest(rq)))
|
qw422016.N().S(Toolbar(user.FromRequest(rq)))
|
||||||
//line views/mutators.qtpl:81
|
//line views/mutators.qtpl:83
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
</div>
|
</div>
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:83
|
//line views/mutators.qtpl:85
|
||||||
}
|
}
|
||||||
|
|
||||||
//line views/mutators.qtpl:83
|
//line views/mutators.qtpl:85
|
||||||
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:83
|
//line views/mutators.qtpl:85
|
||||||
qw422016 := qt422016.AcquireWriter(qq422016)
|
qw422016 := qt422016.AcquireWriter(qq422016)
|
||||||
//line views/mutators.qtpl:83
|
//line views/mutators.qtpl:85
|
||||||
StreamEditHTML(qw422016, rq, hyphaName, textAreaFill, warning)
|
StreamEditHTML(qw422016, rq, hyphaName, textAreaFill, warning)
|
||||||
//line views/mutators.qtpl:83
|
//line views/mutators.qtpl:85
|
||||||
qt422016.ReleaseWriter(qw422016)
|
qt422016.ReleaseWriter(qw422016)
|
||||||
//line views/mutators.qtpl:83
|
//line views/mutators.qtpl:85
|
||||||
}
|
}
|
||||||
|
|
||||||
//line views/mutators.qtpl:83
|
//line views/mutators.qtpl:85
|
||||||
func EditHTML(rq *http.Request, hyphaName, textAreaFill, warning string) string {
|
func EditHTML(rq *http.Request, hyphaName, textAreaFill, warning string) string {
|
||||||
//line views/mutators.qtpl:83
|
//line views/mutators.qtpl:85
|
||||||
qb422016 := qt422016.AcquireByteBuffer()
|
qb422016 := qt422016.AcquireByteBuffer()
|
||||||
//line views/mutators.qtpl:83
|
//line views/mutators.qtpl:85
|
||||||
WriteEditHTML(qb422016, rq, hyphaName, textAreaFill, warning)
|
WriteEditHTML(qb422016, rq, hyphaName, textAreaFill, warning)
|
||||||
//line views/mutators.qtpl:83
|
//line views/mutators.qtpl:85
|
||||||
qs422016 := string(qb422016.B)
|
qs422016 := string(qb422016.B)
|
||||||
//line views/mutators.qtpl:83
|
//line views/mutators.qtpl:85
|
||||||
qt422016.ReleaseByteBuffer(qb422016)
|
qt422016.ReleaseByteBuffer(qb422016)
|
||||||
//line views/mutators.qtpl:83
|
//line views/mutators.qtpl:85
|
||||||
return qs422016
|
return qs422016
|
||||||
//line views/mutators.qtpl:83
|
//line views/mutators.qtpl:85
|
||||||
}
|
}
|
||||||
|
|
||||||
//line views/mutators.qtpl:85
|
//line views/mutators.qtpl:87
|
||||||
func StreamPreviewHTML(qw422016 *qt422016.Writer, rq *http.Request, hyphaName, textAreaFill, warning string, renderedPage string) {
|
func StreamPreviewHTML(qw422016 *qt422016.Writer, rq *http.Request, hyphaName, textAreaFill, warning string, renderedPage string) {
|
||||||
//line views/mutators.qtpl:85
|
//line views/mutators.qtpl:87
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:86
|
//line views/mutators.qtpl:88
|
||||||
qw422016.N().S(NavHTML(rq, hyphaName, "edit"))
|
qw422016.N().S(NavHTML(rq, hyphaName, "edit"))
|
||||||
//line views/mutators.qtpl:86
|
//line views/mutators.qtpl:88
|
||||||
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>Edit `)
|
<h1>Edit `)
|
||||||
//line views/mutators.qtpl:89
|
//line views/mutators.qtpl:91
|
||||||
qw422016.E().S(util.BeautifulName(hyphaName))
|
qw422016.E().S(util.BeautifulName(hyphaName))
|
||||||
//line views/mutators.qtpl:89
|
//line views/mutators.qtpl:91
|
||||||
qw422016.N().S(` (preview)</h1>
|
qw422016.N().S(` (preview)</h1>
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:90
|
//line views/mutators.qtpl:92
|
||||||
qw422016.N().S(warning)
|
qw422016.N().S(warning)
|
||||||
//line views/mutators.qtpl:90
|
//line views/mutators.qtpl:92
|
||||||
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:92
|
//line views/mutators.qtpl:94
|
||||||
qw422016.E().S(hyphaName)
|
qw422016.E().S(hyphaName)
|
||||||
//line views/mutators.qtpl:92
|
//line views/mutators.qtpl:94
|
||||||
qw422016.N().S(`">
|
qw422016.N().S(`">
|
||||||
<textarea class="edit-form__textarea" name="text">`)
|
<textarea class="edit-form__textarea" name="text">`)
|
||||||
//line views/mutators.qtpl:93
|
//line views/mutators.qtpl:95
|
||||||
qw422016.E().S(textAreaFill)
|
qw422016.E().S(textAreaFill)
|
||||||
//line views/mutators.qtpl:93
|
//line views/mutators.qtpl:95
|
||||||
qw422016.N().S(`</textarea>
|
qw422016.N().S(`</textarea>
|
||||||
<br/>
|
<br/>
|
||||||
<input type="submit" name="action" value="Save" class="edit-form__save"/>
|
<input type="submit" name="action" value="Save" class="edit-form__save"/>
|
||||||
<input type="submit" name="action" value="Preview" class="edit-form__preview">
|
<input type="submit" name="action" value="Preview" class="edit-form__preview">
|
||||||
<a href="/page/`)
|
<a href="/page/`)
|
||||||
//line views/mutators.qtpl:97
|
//line views/mutators.qtpl:99
|
||||||
qw422016.E().S(hyphaName)
|
qw422016.E().S(hyphaName)
|
||||||
//line views/mutators.qtpl:97
|
//line views/mutators.qtpl:99
|
||||||
qw422016.N().S(`" class="edit-form__cancel">Cancel</a>
|
qw422016.N().S(`" class="edit-form__cancel">Cancel</a>
|
||||||
</form>
|
</form>
|
||||||
<p class="warning">Note that the hypha is not saved yet. You can preview the changes ↓</p>
|
<p class="warning">Note that the hypha is not saved yet. You can preview the changes ↓</p>
|
||||||
<article class="edit__preview">`)
|
<article class="edit__preview">`)
|
||||||
//line views/mutators.qtpl:100
|
//line views/mutators.qtpl:102
|
||||||
qw422016.N().S(renderedPage)
|
qw422016.N().S(renderedPage)
|
||||||
//line views/mutators.qtpl:100
|
//line views/mutators.qtpl:102
|
||||||
qw422016.N().S(`</article>
|
qw422016.N().S(`</article>
|
||||||
</main>
|
</main>
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:102
|
//line views/mutators.qtpl:104
|
||||||
qw422016.N().S(Toolbar(user.FromRequest(rq)))
|
qw422016.N().S(Toolbar(user.FromRequest(rq)))
|
||||||
//line views/mutators.qtpl:102
|
//line views/mutators.qtpl:104
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
</div>
|
</div>
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:104
|
//line views/mutators.qtpl:106
|
||||||
}
|
}
|
||||||
|
|
||||||
//line views/mutators.qtpl:104
|
//line views/mutators.qtpl:106
|
||||||
func WritePreviewHTML(qq422016 qtio422016.Writer, rq *http.Request, hyphaName, textAreaFill, warning string, renderedPage string) {
|
func WritePreviewHTML(qq422016 qtio422016.Writer, rq *http.Request, hyphaName, textAreaFill, warning string, renderedPage string) {
|
||||||
//line views/mutators.qtpl:104
|
//line views/mutators.qtpl:106
|
||||||
qw422016 := qt422016.AcquireWriter(qq422016)
|
qw422016 := qt422016.AcquireWriter(qq422016)
|
||||||
//line views/mutators.qtpl:104
|
//line views/mutators.qtpl:106
|
||||||
StreamPreviewHTML(qw422016, rq, hyphaName, textAreaFill, warning, renderedPage)
|
StreamPreviewHTML(qw422016, rq, hyphaName, textAreaFill, warning, renderedPage)
|
||||||
//line views/mutators.qtpl:104
|
//line views/mutators.qtpl:106
|
||||||
qt422016.ReleaseWriter(qw422016)
|
qt422016.ReleaseWriter(qw422016)
|
||||||
//line views/mutators.qtpl:104
|
//line views/mutators.qtpl:106
|
||||||
}
|
}
|
||||||
|
|
||||||
//line views/mutators.qtpl:104
|
//line views/mutators.qtpl:106
|
||||||
func PreviewHTML(rq *http.Request, hyphaName, textAreaFill, warning string, renderedPage string) string {
|
func PreviewHTML(rq *http.Request, hyphaName, textAreaFill, warning string, renderedPage string) string {
|
||||||
//line views/mutators.qtpl:104
|
//line views/mutators.qtpl:106
|
||||||
qb422016 := qt422016.AcquireByteBuffer()
|
qb422016 := qt422016.AcquireByteBuffer()
|
||||||
//line views/mutators.qtpl:104
|
//line views/mutators.qtpl:106
|
||||||
WritePreviewHTML(qb422016, rq, hyphaName, textAreaFill, warning, renderedPage)
|
WritePreviewHTML(qb422016, rq, hyphaName, textAreaFill, warning, renderedPage)
|
||||||
//line views/mutators.qtpl:104
|
//line views/mutators.qtpl:106
|
||||||
qs422016 := string(qb422016.B)
|
qs422016 := string(qb422016.B)
|
||||||
//line views/mutators.qtpl:104
|
//line views/mutators.qtpl:106
|
||||||
qt422016.ReleaseByteBuffer(qb422016)
|
qt422016.ReleaseByteBuffer(qb422016)
|
||||||
//line views/mutators.qtpl:104
|
//line views/mutators.qtpl:106
|
||||||
return qs422016
|
return qs422016
|
||||||
//line views/mutators.qtpl:104
|
//line views/mutators.qtpl:106
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user