mirror of
https://github.com/mjl-/mox.git
synced 2024-12-26 16:33:47 +03:00
show goversion and goos/goarch on admin page
This commit is contained in:
parent
b115c7b10d
commit
4699504c9f
6 changed files with 17 additions and 5 deletions
|
@ -10,6 +10,7 @@ import (
|
|||
"log/slog"
|
||||
"net/http"
|
||||
"os"
|
||||
"runtime"
|
||||
"strings"
|
||||
"sync"
|
||||
"time"
|
||||
|
@ -124,7 +125,7 @@ func (a *WebappFile) Serve(ctx context.Context, log mlog.Log, w http.ResponseWri
|
|||
}
|
||||
var b bytes.Buffer
|
||||
b.Write(html[:index])
|
||||
fmt.Fprintf(&b, "<script>\n// Javascript is generated from typescript, don't modify the javascript because changes will be lost.\nconst moxversion = \"%s\";\n", moxvar.Version)
|
||||
fmt.Fprintf(&b, "<script>\n// Javascript is generated from typescript, don't modify the javascript because changes will be lost.\nconst moxversion = \"%s\";\nconst moxgoversion = \"%s\";\nconst moxgoos = \"%s\";\nconst moxgoarch = \"%s\";\n", moxvar.Version, runtime.Version(), runtime.GOOS, runtime.GOARCH)
|
||||
b.Write(js)
|
||||
b.WriteString("\t\t</script>")
|
||||
b.Write(html[index+len(script):])
|
||||
|
|
|
@ -3,6 +3,9 @@
|
|||
// From HTML.
|
||||
declare let page: HTMLElement
|
||||
declare let moxversion: string
|
||||
declare let moxgoversion: string
|
||||
declare let moxgoos: string
|
||||
declare let moxgoarch: string
|
||||
|
||||
const login = async (reason: string) => {
|
||||
return new Promise<string>((resolve: (v: string) => void, _) => {
|
||||
|
|
|
@ -1479,7 +1479,7 @@ const crumbs = (...l) => [
|
|||
dom.br()
|
||||
];
|
||||
const errmsg = (err) => '' + (err.message || '(no error message)');
|
||||
const footer = dom.div(style({ marginTop: '6ex', opacity: 0.75 }), link('https://www.xmox.nl', 'mox'), ' ', moxversion);
|
||||
const footer = dom.div(style({ marginTop: '6ex', opacity: 0.75 }), link('https://www.xmox.nl', 'mox'), ' ', moxversion, ' ', moxgoversion, ' ', moxgoos, '/', moxgoarch);
|
||||
const age = (date, future, nowSecs) => {
|
||||
if (!nowSecs) {
|
||||
nowSecs = new Date().getTime() / 1000;
|
||||
|
|
|
@ -3,6 +3,9 @@
|
|||
// From HTML.
|
||||
declare let page: HTMLElement
|
||||
declare let moxversion: string
|
||||
declare let moxgoversion: string
|
||||
declare let moxgoos: string
|
||||
declare let moxgoarch: string
|
||||
|
||||
const login = async (reason: string) => {
|
||||
return new Promise<string>((resolve: (v: string) => void, _) => {
|
||||
|
@ -120,7 +123,9 @@ const footer = dom.div(
|
|||
style({marginTop: '6ex', opacity: 0.75}),
|
||||
link('https://www.xmox.nl', 'mox'),
|
||||
' ',
|
||||
moxversion,
|
||||
moxversion, ' ',
|
||||
moxgoversion, ' ',
|
||||
moxgoos, '/', moxgoarch,
|
||||
)
|
||||
|
||||
const age = (date: Date, future: boolean, nowSecs: number) => {
|
||||
|
|
|
@ -2182,7 +2182,7 @@ const cmdHelp = async () => {
|
|||
return;
|
||||
}
|
||||
window.alert('"mailto:" protocol handler unregistered.');
|
||||
})), dom.div(style({ marginTop: '2ex' }), 'Mox is open source email server software, this is version ' + moxversion + '. Feedback, including bug reports, is appreciated! ', link('https://github.com/mjl-/mox/issues/new'), '.'))));
|
||||
})), dom.div(style({ marginTop: '2ex' }), 'Mox is open source email server software, this is version ', moxversion, ', built with ', moxgoversion, '. Feedback, including bug reports, is appreciated! ', link('https://github.com/mjl-/mox/issues/new'), '.'))));
|
||||
};
|
||||
// Show tooltips for either the focused element, or otherwise for all elements
|
||||
// that aren't reachable with tabindex and aren't marked specially to prevent
|
||||
|
|
|
@ -112,6 +112,9 @@ const zindexes = {
|
|||
// From HTML.
|
||||
declare let page: HTMLElement
|
||||
declare let moxversion: string
|
||||
declare let moxgoversion: string
|
||||
declare let moxgoos: string
|
||||
declare let moxgoarch: string
|
||||
|
||||
// All logging goes through log() instead of console.log, except "should not happen" logging.
|
||||
let log: (...args: any[]) => void = () => {}
|
||||
|
@ -1197,7 +1200,7 @@ const cmdHelp = async () => {
|
|||
window.alert('"mailto:" protocol handler unregistered.')
|
||||
}),
|
||||
),
|
||||
dom.div(style({marginTop: '2ex'}), 'Mox is open source email server software, this is version '+moxversion+'. Feedback, including bug reports, is appreciated! ', link('https://github.com/mjl-/mox/issues/new'), '.'),
|
||||
dom.div(style({marginTop: '2ex'}), 'Mox is open source email server software, this is version ', moxversion, ', built with ', moxgoversion, '. Feedback, including bug reports, is appreciated! ', link('https://github.com/mjl-/mox/issues/new'), '.'),
|
||||
),
|
||||
),
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue