mirror of
https://github.com/osmarks/mycorrhiza.git
synced 2025-01-31 11:29:09 +00:00
Add a button that inserts current time in UTC
This commit is contained in:
parent
4b21489e7c
commit
4baee749d3
@ -529,6 +529,11 @@ function insertDate() {
|
|||||||
textInserter(date)()
|
textInserter(date)()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function insertTimeUTC() {
|
||||||
|
let time = new Date().toISOString().substring(11, 19) + " UTC"
|
||||||
|
textInserter(time)()
|
||||||
|
}
|
||||||
|
|
||||||
function insertUserlink() {
|
function insertUserlink() {
|
||||||
const userlink = document.querySelector('.header-links__entry_user a')
|
const userlink = document.querySelector('.header-links__entry_user a')
|
||||||
const userHypha = userlink.getAttribute('href').substring(7) // no /hypha/
|
const userHypha = userlink.getAttribute('href').substring(7) // no /hypha/
|
||||||
|
@ -63,6 +63,11 @@ function insertDate() {
|
|||||||
textInserter(date)()
|
textInserter(date)()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function insertTimeUTC() {
|
||||||
|
let time = new Date().toISOString().substring(11, 19) + " UTC"
|
||||||
|
textInserter(time)()
|
||||||
|
}
|
||||||
|
|
||||||
function insertUserlink() {
|
function insertUserlink() {
|
||||||
const userlink = document.querySelector('.header-links__entry_user a')
|
const userlink = document.querySelector('.header-links__entry_user a')
|
||||||
const userHypha = userlink.getAttribute('href').substring(7) // no /hypha/
|
const userHypha = userlink.getAttribute('href').substring(7) // no /hypha/
|
||||||
|
@ -46,6 +46,7 @@
|
|||||||
display string
|
display string
|
||||||
}{
|
}{
|
||||||
{"date", "insertDate()", "Insert current date"},
|
{"date", "insertDate()", "Insert current date"},
|
||||||
|
{"time", "insertTimeUTC()", "Insert current time"},
|
||||||
} %}
|
} %}
|
||||||
<button
|
<button
|
||||||
class="edit-toolbar__btn edit-toolbar__{%s el.class %}"
|
class="edit-toolbar__btn edit-toolbar__{%s el.class %}"
|
||||||
|
@ -95,35 +95,36 @@ func StreamToolbar(qw422016 *qt422016.Writer, u *user.User) {
|
|||||||
display string
|
display string
|
||||||
}{
|
}{
|
||||||
{"date", "insertDate()", "Insert current date"},
|
{"date", "insertDate()", "Insert current date"},
|
||||||
|
{"time", "insertTimeUTC()", "Insert current time"},
|
||||||
} {
|
} {
|
||||||
//line views/mutators.qtpl:49
|
//line views/mutators.qtpl:50
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
<button
|
<button
|
||||||
class="edit-toolbar__btn edit-toolbar__`)
|
class="edit-toolbar__btn edit-toolbar__`)
|
||||||
//line views/mutators.qtpl:51
|
//line views/mutators.qtpl:52
|
||||||
qw422016.E().S(el.class)
|
qw422016.E().S(el.class)
|
||||||
//line views/mutators.qtpl:51
|
//line views/mutators.qtpl:52
|
||||||
qw422016.N().S(`"
|
qw422016.N().S(`"
|
||||||
onclick="`)
|
onclick="`)
|
||||||
//line views/mutators.qtpl:52
|
//line views/mutators.qtpl:53
|
||||||
qw422016.E().S(el.onclick)
|
qw422016.E().S(el.onclick)
|
||||||
//line views/mutators.qtpl:52
|
//line views/mutators.qtpl:53
|
||||||
qw422016.N().S(`">
|
qw422016.N().S(`">
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:53
|
//line views/mutators.qtpl:54
|
||||||
qw422016.N().S(el.display)
|
qw422016.N().S(el.display)
|
||||||
//line views/mutators.qtpl:53
|
//line views/mutators.qtpl:54
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
</button>
|
</button>
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:55
|
//line views/mutators.qtpl:56
|
||||||
}
|
}
|
||||||
//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
|
||||||
if u.Group != "anon" {
|
if u.Group != "anon" {
|
||||||
//line views/mutators.qtpl:56
|
//line views/mutators.qtpl:57
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
<button
|
<button
|
||||||
class="edit-toolbar__btn edit-toolbar__user-link"
|
class="edit-toolbar__btn edit-toolbar__user-link"
|
||||||
@ -131,201 +132,201 @@ func StreamToolbar(qw422016 *qt422016.Writer, u *user.User) {
|
|||||||
Link yourself
|
Link yourself
|
||||||
</button>
|
</button>
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:62
|
//line views/mutators.qtpl:63
|
||||||
}
|
}
|
||||||
//line views/mutators.qtpl:62
|
//line views/mutators.qtpl:63
|
||||||
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:66
|
//line views/mutators.qtpl:67
|
||||||
}
|
}
|
||||||
|
|
||||||
//line views/mutators.qtpl:66
|
//line views/mutators.qtpl:67
|
||||||
func WriteToolbar(qq422016 qtio422016.Writer, u *user.User) {
|
func WriteToolbar(qq422016 qtio422016.Writer, u *user.User) {
|
||||||
//line views/mutators.qtpl:66
|
//line views/mutators.qtpl:67
|
||||||
qw422016 := qt422016.AcquireWriter(qq422016)
|
qw422016 := qt422016.AcquireWriter(qq422016)
|
||||||
//line views/mutators.qtpl:66
|
//line views/mutators.qtpl:67
|
||||||
StreamToolbar(qw422016, u)
|
StreamToolbar(qw422016, u)
|
||||||
//line views/mutators.qtpl:66
|
//line views/mutators.qtpl:67
|
||||||
qt422016.ReleaseWriter(qw422016)
|
qt422016.ReleaseWriter(qw422016)
|
||||||
//line views/mutators.qtpl:66
|
//line views/mutators.qtpl:67
|
||||||
}
|
}
|
||||||
|
|
||||||
//line views/mutators.qtpl:66
|
//line views/mutators.qtpl:67
|
||||||
func Toolbar(u *user.User) string {
|
func Toolbar(u *user.User) string {
|
||||||
//line views/mutators.qtpl:66
|
//line views/mutators.qtpl:67
|
||||||
qb422016 := qt422016.AcquireByteBuffer()
|
qb422016 := qt422016.AcquireByteBuffer()
|
||||||
//line views/mutators.qtpl:66
|
//line views/mutators.qtpl:67
|
||||||
WriteToolbar(qb422016, u)
|
WriteToolbar(qb422016, u)
|
||||||
//line views/mutators.qtpl:66
|
//line views/mutators.qtpl:67
|
||||||
qs422016 := string(qb422016.B)
|
qs422016 := string(qb422016.B)
|
||||||
//line views/mutators.qtpl:66
|
//line views/mutators.qtpl:67
|
||||||
qt422016.ReleaseByteBuffer(qb422016)
|
qt422016.ReleaseByteBuffer(qb422016)
|
||||||
//line views/mutators.qtpl:66
|
//line views/mutators.qtpl:67
|
||||||
return qs422016
|
return qs422016
|
||||||
//line views/mutators.qtpl:66
|
//line views/mutators.qtpl:67
|
||||||
}
|
}
|
||||||
|
|
||||||
//line views/mutators.qtpl:68
|
//line views/mutators.qtpl:69
|
||||||
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:68
|
//line views/mutators.qtpl:69
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:69
|
//line views/mutators.qtpl:70
|
||||||
qw422016.N().S(NavHTML(rq, hyphaName, "edit"))
|
qw422016.N().S(NavHTML(rq, hyphaName, "edit"))
|
||||||
//line views/mutators.qtpl:69
|
//line views/mutators.qtpl:70
|
||||||
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:72
|
//line views/mutators.qtpl:73
|
||||||
qw422016.E().S(util.BeautifulName(hyphaName))
|
qw422016.E().S(util.BeautifulName(hyphaName))
|
||||||
//line views/mutators.qtpl:72
|
//line views/mutators.qtpl:73
|
||||||
qw422016.N().S(`</h1>
|
qw422016.N().S(`</h1>
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:73
|
//line views/mutators.qtpl:74
|
||||||
qw422016.N().S(warning)
|
qw422016.N().S(warning)
|
||||||
//line views/mutators.qtpl:73
|
//line views/mutators.qtpl:74
|
||||||
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:75
|
//line views/mutators.qtpl:76
|
||||||
qw422016.E().S(hyphaName)
|
qw422016.E().S(hyphaName)
|
||||||
//line views/mutators.qtpl:75
|
//line views/mutators.qtpl:76
|
||||||
qw422016.N().S(`">
|
qw422016.N().S(`">
|
||||||
<textarea name="text" class="edit-form__textarea">`)
|
<textarea name="text" class="edit-form__textarea">`)
|
||||||
//line views/mutators.qtpl:76
|
//line views/mutators.qtpl:77
|
||||||
qw422016.E().S(textAreaFill)
|
qw422016.E().S(textAreaFill)
|
||||||
//line views/mutators.qtpl:76
|
//line views/mutators.qtpl:77
|
||||||
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:80
|
//line views/mutators.qtpl:81
|
||||||
qw422016.E().S(hyphaName)
|
qw422016.E().S(hyphaName)
|
||||||
//line views/mutators.qtpl:80
|
//line views/mutators.qtpl:81
|
||||||
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:83
|
//line views/mutators.qtpl:84
|
||||||
qw422016.N().S(Toolbar(user.FromRequest(rq)))
|
qw422016.N().S(Toolbar(user.FromRequest(rq)))
|
||||||
//line views/mutators.qtpl:83
|
//line views/mutators.qtpl:84
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
</div>
|
</div>
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:85
|
//line views/mutators.qtpl:86
|
||||||
}
|
}
|
||||||
|
|
||||||
//line views/mutators.qtpl:85
|
//line views/mutators.qtpl:86
|
||||||
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:85
|
//line views/mutators.qtpl:86
|
||||||
qw422016 := qt422016.AcquireWriter(qq422016)
|
qw422016 := qt422016.AcquireWriter(qq422016)
|
||||||
//line views/mutators.qtpl:85
|
//line views/mutators.qtpl:86
|
||||||
StreamEditHTML(qw422016, rq, hyphaName, textAreaFill, warning)
|
StreamEditHTML(qw422016, rq, hyphaName, textAreaFill, warning)
|
||||||
//line views/mutators.qtpl:85
|
//line views/mutators.qtpl:86
|
||||||
qt422016.ReleaseWriter(qw422016)
|
qt422016.ReleaseWriter(qw422016)
|
||||||
//line views/mutators.qtpl:85
|
//line views/mutators.qtpl:86
|
||||||
}
|
}
|
||||||
|
|
||||||
//line views/mutators.qtpl:85
|
//line views/mutators.qtpl:86
|
||||||
func EditHTML(rq *http.Request, hyphaName, textAreaFill, warning string) string {
|
func EditHTML(rq *http.Request, hyphaName, textAreaFill, warning string) string {
|
||||||
//line views/mutators.qtpl:85
|
//line views/mutators.qtpl:86
|
||||||
qb422016 := qt422016.AcquireByteBuffer()
|
qb422016 := qt422016.AcquireByteBuffer()
|
||||||
//line views/mutators.qtpl:85
|
//line views/mutators.qtpl:86
|
||||||
WriteEditHTML(qb422016, rq, hyphaName, textAreaFill, warning)
|
WriteEditHTML(qb422016, rq, hyphaName, textAreaFill, warning)
|
||||||
//line views/mutators.qtpl:85
|
//line views/mutators.qtpl:86
|
||||||
qs422016 := string(qb422016.B)
|
qs422016 := string(qb422016.B)
|
||||||
//line views/mutators.qtpl:85
|
//line views/mutators.qtpl:86
|
||||||
qt422016.ReleaseByteBuffer(qb422016)
|
qt422016.ReleaseByteBuffer(qb422016)
|
||||||
//line views/mutators.qtpl:85
|
//line views/mutators.qtpl:86
|
||||||
return qs422016
|
return qs422016
|
||||||
//line views/mutators.qtpl:85
|
//line views/mutators.qtpl:86
|
||||||
}
|
}
|
||||||
|
|
||||||
//line views/mutators.qtpl:87
|
//line views/mutators.qtpl:88
|
||||||
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:87
|
//line views/mutators.qtpl:88
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:88
|
//line views/mutators.qtpl:89
|
||||||
qw422016.N().S(NavHTML(rq, hyphaName, "edit"))
|
qw422016.N().S(NavHTML(rq, hyphaName, "edit"))
|
||||||
//line views/mutators.qtpl:88
|
//line views/mutators.qtpl:89
|
||||||
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:91
|
//line views/mutators.qtpl:92
|
||||||
qw422016.E().S(util.BeautifulName(hyphaName))
|
qw422016.E().S(util.BeautifulName(hyphaName))
|
||||||
//line views/mutators.qtpl:91
|
//line views/mutators.qtpl:92
|
||||||
qw422016.N().S(` (preview)</h1>
|
qw422016.N().S(` (preview)</h1>
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:92
|
//line views/mutators.qtpl:93
|
||||||
qw422016.N().S(warning)
|
qw422016.N().S(warning)
|
||||||
//line views/mutators.qtpl:92
|
//line views/mutators.qtpl:93
|
||||||
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:94
|
//line views/mutators.qtpl:95
|
||||||
qw422016.E().S(hyphaName)
|
qw422016.E().S(hyphaName)
|
||||||
//line views/mutators.qtpl:94
|
//line views/mutators.qtpl:95
|
||||||
qw422016.N().S(`">
|
qw422016.N().S(`">
|
||||||
<textarea class="edit-form__textarea" name="text">`)
|
<textarea class="edit-form__textarea" name="text">`)
|
||||||
//line views/mutators.qtpl:95
|
//line views/mutators.qtpl:96
|
||||||
qw422016.E().S(textAreaFill)
|
qw422016.E().S(textAreaFill)
|
||||||
//line views/mutators.qtpl:95
|
//line views/mutators.qtpl:96
|
||||||
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:99
|
//line views/mutators.qtpl:100
|
||||||
qw422016.E().S(hyphaName)
|
qw422016.E().S(hyphaName)
|
||||||
//line views/mutators.qtpl:99
|
//line views/mutators.qtpl:100
|
||||||
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:102
|
//line views/mutators.qtpl:103
|
||||||
qw422016.N().S(renderedPage)
|
qw422016.N().S(renderedPage)
|
||||||
//line views/mutators.qtpl:102
|
//line views/mutators.qtpl:103
|
||||||
qw422016.N().S(`</article>
|
qw422016.N().S(`</article>
|
||||||
</main>
|
</main>
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:104
|
//line views/mutators.qtpl:105
|
||||||
qw422016.N().S(Toolbar(user.FromRequest(rq)))
|
qw422016.N().S(Toolbar(user.FromRequest(rq)))
|
||||||
//line views/mutators.qtpl:104
|
//line views/mutators.qtpl:105
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
</div>
|
</div>
|
||||||
`)
|
`)
|
||||||
//line views/mutators.qtpl:106
|
//line views/mutators.qtpl:107
|
||||||
}
|
}
|
||||||
|
|
||||||
//line views/mutators.qtpl:106
|
//line views/mutators.qtpl:107
|
||||||
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:106
|
//line views/mutators.qtpl:107
|
||||||
qw422016 := qt422016.AcquireWriter(qq422016)
|
qw422016 := qt422016.AcquireWriter(qq422016)
|
||||||
//line views/mutators.qtpl:106
|
//line views/mutators.qtpl:107
|
||||||
StreamPreviewHTML(qw422016, rq, hyphaName, textAreaFill, warning, renderedPage)
|
StreamPreviewHTML(qw422016, rq, hyphaName, textAreaFill, warning, renderedPage)
|
||||||
//line views/mutators.qtpl:106
|
//line views/mutators.qtpl:107
|
||||||
qt422016.ReleaseWriter(qw422016)
|
qt422016.ReleaseWriter(qw422016)
|
||||||
//line views/mutators.qtpl:106
|
//line views/mutators.qtpl:107
|
||||||
}
|
}
|
||||||
|
|
||||||
//line views/mutators.qtpl:106
|
//line views/mutators.qtpl:107
|
||||||
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:106
|
//line views/mutators.qtpl:107
|
||||||
qb422016 := qt422016.AcquireByteBuffer()
|
qb422016 := qt422016.AcquireByteBuffer()
|
||||||
//line views/mutators.qtpl:106
|
//line views/mutators.qtpl:107
|
||||||
WritePreviewHTML(qb422016, rq, hyphaName, textAreaFill, warning, renderedPage)
|
WritePreviewHTML(qb422016, rq, hyphaName, textAreaFill, warning, renderedPage)
|
||||||
//line views/mutators.qtpl:106
|
//line views/mutators.qtpl:107
|
||||||
qs422016 := string(qb422016.B)
|
qs422016 := string(qb422016.B)
|
||||||
//line views/mutators.qtpl:106
|
//line views/mutators.qtpl:107
|
||||||
qt422016.ReleaseByteBuffer(qb422016)
|
qt422016.ReleaseByteBuffer(qb422016)
|
||||||
//line views/mutators.qtpl:106
|
//line views/mutators.qtpl:107
|
||||||
return qs422016
|
return qs422016
|
||||||
//line views/mutators.qtpl:106
|
//line views/mutators.qtpl:107
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user