mirror of
https://github.com/osmarks/mycorrhiza.git
synced 2025-04-06 02:37:21 +00:00
Turn BodyAttributes into a map
BodyAttributes is now a map of attribute name -> attribute value. This was done because attribute names have a restricted set of characters, but attribute values are much less restrictive
This commit is contained in:
parent
e0f2868d34
commit
c1946d8849
16
auth/web.go
16
auth/web.go
@ -39,7 +39,7 @@ func handlerUserList(w http.ResponseWriter, rq *http.Request) {
|
||||
lc := l18n.FromRequest(rq)
|
||||
w.Header().Set("Content-Type", mime.TypeByExtension(".html"))
|
||||
w.WriteHeader(http.StatusOK)
|
||||
w.Write([]byte(viewutil.Base(viewutil.MetaFrom(w, rq), lc.Get("ui.users_title"), UserList(lc), []string{})))
|
||||
w.Write([]byte(viewutil.Base(viewutil.MetaFrom(w, rq), lc.Get("ui.users_title"), UserList(lc), map[string]string{})))
|
||||
}
|
||||
|
||||
func handlerLock(w http.ResponseWriter, rq *http.Request) {
|
||||
@ -57,7 +57,7 @@ func handlerRegister(w http.ResponseWriter, rq *http.Request) {
|
||||
viewutil.MetaFrom(w, rq),
|
||||
lc.Get("auth.register_title"),
|
||||
Register(rq),
|
||||
[]string{},
|
||||
map[string]string{},
|
||||
),
|
||||
)
|
||||
return
|
||||
@ -82,7 +82,7 @@ func handlerRegister(w http.ResponseWriter, rq *http.Request) {
|
||||
err.Error(),
|
||||
lc.Get("auth.try_again"),
|
||||
),
|
||||
[]string{},
|
||||
map[string]string{},
|
||||
),
|
||||
)
|
||||
return
|
||||
@ -113,7 +113,7 @@ func handlerLogout(w http.ResponseWriter, rq *http.Request) {
|
||||
}
|
||||
_, _ = io.WriteString(
|
||||
w,
|
||||
viewutil.Base(viewutil.MetaFrom(w, rq), lc.Get("auth.logout_title"), Logout(can, lc), []string{}),
|
||||
viewutil.Base(viewutil.MetaFrom(w, rq), lc.Get("auth.logout_title"), Logout(can, lc), map[string]string{}),
|
||||
)
|
||||
} else if rq.Method == http.MethodPost {
|
||||
user.LogoutFromRequest(w, rq)
|
||||
@ -133,7 +133,7 @@ func handlerLogin(w http.ResponseWriter, rq *http.Request) {
|
||||
viewutil.MetaFrom(w, rq),
|
||||
lc.Get("auth.login_title"),
|
||||
Login(lc),
|
||||
[]string{},
|
||||
map[string]string{},
|
||||
),
|
||||
)
|
||||
} else if rq.Method == http.MethodPost {
|
||||
@ -145,7 +145,7 @@ func handlerLogin(w http.ResponseWriter, rq *http.Request) {
|
||||
if err != nil {
|
||||
w.Header().Set("Content-Type", "text/html;charset=utf-8")
|
||||
w.WriteHeader(http.StatusInternalServerError)
|
||||
_, _ = io.WriteString(w, viewutil.Base(viewutil.MetaFrom(w, rq), err.Error(), LoginError(err.Error(), lc), []string{}))
|
||||
_, _ = io.WriteString(w, viewutil.Base(viewutil.MetaFrom(w, rq), err.Error(), LoginError(err.Error(), lc), map[string]string{}))
|
||||
return
|
||||
}
|
||||
http.Redirect(w, rq, "/", http.StatusSeeOther)
|
||||
@ -192,7 +192,7 @@ func handlerTelegramLogin(w http.ResponseWriter, rq *http.Request) {
|
||||
err.Error(),
|
||||
lc.Get("auth.go_login"),
|
||||
),
|
||||
[]string{},
|
||||
map[string]string{},
|
||||
),
|
||||
)
|
||||
return
|
||||
@ -213,7 +213,7 @@ func handlerTelegramLogin(w http.ResponseWriter, rq *http.Request) {
|
||||
err.Error(),
|
||||
lc.Get("auth.go_login"),
|
||||
),
|
||||
[]string{},
|
||||
map[string]string{},
|
||||
),
|
||||
)
|
||||
return
|
||||
|
@ -125,7 +125,7 @@ func handlerAbout(w http.ResponseWriter, rq *http.Request) {
|
||||
viewutil.MetaFrom(w, rq),
|
||||
title,
|
||||
AboutHTML(lc),
|
||||
[]string{},
|
||||
map[string]string{},
|
||||
))
|
||||
if err != nil {
|
||||
log.Println(err)
|
||||
|
@ -15,7 +15,7 @@
|
||||
<script src="/static/shortcuts.js"></script>
|
||||
{{range .HeadElements}}{{.}}{{end}}
|
||||
</head>
|
||||
<body data-rrh-addr="{{if .Addr}}{{.Addr}}{{else}}{{.Meta.Addr}}{{end}}"{{range .BodyAttributes}} data-rrh-{{.}}=""{{end}}>
|
||||
<body data-rrh-addr="{{if .Addr}}{{.Addr}}{{else}}{{.Meta.Addr}}{{end}}"{{range $key, $value := .BodyAttributes}} data-rrh-{{$key}}="{{$value}}"{{end}}>
|
||||
<header>
|
||||
<nav class="main-width top-bar">
|
||||
<ul class="top-bar__wrapper">
|
||||
|
@ -22,7 +22,7 @@ func HttpErr(meta Meta, status int, name, errMsg string) {
|
||||
name,
|
||||
meta.Lc.Get("ui.error_go_back"),
|
||||
),
|
||||
[]string{},
|
||||
map[string]string{},
|
||||
),
|
||||
)
|
||||
}
|
||||
|
@ -98,7 +98,7 @@ type BaseData struct {
|
||||
Addr string
|
||||
Title string // TODO: remove
|
||||
Body string // TODO: remove
|
||||
BodyAttributes []string
|
||||
BodyAttributes map[string]string
|
||||
}
|
||||
|
||||
func (bd *BaseData) withBaseValues(meta Meta, headerLinks []HeaderLink, commonScripts []string) {
|
||||
@ -109,7 +109,7 @@ func (bd *BaseData) withBaseValues(meta Meta, headerLinks []HeaderLink, commonSc
|
||||
|
||||
// Base is a temporary wrapper around BaseEn and BaseRu, meant to facilitate the migration from qtpl.
|
||||
// TODO: get rid of this
|
||||
func Base(meta Meta, title, body string, extraData []string, headElements ...string) string {
|
||||
func Base(meta Meta, title, body string, bodyAttributes map[string]string, headElements ...string) string {
|
||||
var w strings.Builder
|
||||
meta.W = &w
|
||||
t := localizedBaseWithWeirdBody(meta)
|
||||
@ -120,7 +120,7 @@ func Base(meta Meta, title, body string, extraData []string, headElements ...str
|
||||
HeaderLinks: HeaderLinks,
|
||||
CommonScripts: cfg.CommonScripts,
|
||||
Body: body,
|
||||
BodyAttributes: extraData,
|
||||
BodyAttributes: bodyAttributes,
|
||||
})
|
||||
if err != nil {
|
||||
log.Println(err)
|
||||
|
@ -50,7 +50,7 @@ func handlerRemoveMedia(w http.ResponseWriter, rq *http.Request) {
|
||||
meta,
|
||||
fmt.Sprintf(lc.Get("ui.ask_remove_media"), util.BeautifulName(h.CanonicalName())),
|
||||
hypview.RemoveMediaAsk(rq, h.CanonicalName()),
|
||||
[]string{},
|
||||
map[string]string{},
|
||||
))
|
||||
return
|
||||
}
|
||||
@ -178,7 +178,7 @@ func handlerEdit(w http.ResponseWriter, rq *http.Request) {
|
||||
meta,
|
||||
fmt.Sprintf(lc.Get("edit.title"), util.BeautifulName(hyphaName)),
|
||||
hypview.Editor(rq, hyphaName, textAreaFill, warning),
|
||||
[]string{}))
|
||||
map[string]string{}))
|
||||
}
|
||||
|
||||
// handlerUploadText uploads a new text part for the hypha.
|
||||
@ -217,7 +217,7 @@ func handlerUploadText(w http.ResponseWriter, rq *http.Request) {
|
||||
message,
|
||||
"",
|
||||
mycomarkup.BlocksToHTML(ctx, mycomarkup.BlockTree(ctx))),
|
||||
[]string{},
|
||||
map[string]string{},
|
||||
))
|
||||
} else {
|
||||
http.Redirect(w, rq, "/hypha/"+hyphaName, http.StatusSeeOther)
|
||||
|
@ -50,7 +50,7 @@ func handlerMedia(w http.ResponseWriter, rq *http.Request) {
|
||||
viewutil.MetaFrom(w, rq),
|
||||
lc.Get("ui.media_title", &l18n.Replacements{"name": util.BeautifulName(hyphaName)}),
|
||||
views2.MediaMenu(rq, h, u),
|
||||
[]string{},
|
||||
map[string]string{},
|
||||
))
|
||||
}
|
||||
|
||||
@ -144,7 +144,7 @@ func handlerRevision(w http.ResponseWriter, rq *http.Request) {
|
||||
viewutil.MetaFrom(w, rq),
|
||||
lc.Get("ui.revision_title", &l18n.Replacements{"name": util.BeautifulName(hyphaName), "rev": revHash}),
|
||||
page,
|
||||
[]string{},
|
||||
map[string]string{},
|
||||
),
|
||||
)
|
||||
}
|
||||
@ -195,7 +195,7 @@ func handlerHypha(w http.ResponseWriter, rq *http.Request) {
|
||||
viewutil.MetaFrom(w, rq),
|
||||
util.BeautifulName(hyphaName),
|
||||
views2.Hypha(viewutil.MetaFrom(w, rq), h, contents),
|
||||
[]string{},
|
||||
map[string]string{},
|
||||
openGraph))
|
||||
case hyphae.ExistingHypha:
|
||||
fileContentsT, errT := os.ReadFile(h.TextFilePath())
|
||||
@ -211,17 +211,14 @@ func handlerHypha(w http.ResponseWriter, rq *http.Request) {
|
||||
contents = mycoopts.Media(h, lc) + contents
|
||||
}
|
||||
|
||||
cats := []string{}
|
||||
for _, category := range categories.CategoriesWithHypha(h.CanonicalName()) {
|
||||
cats = append(cats, "cat-" + category)
|
||||
}
|
||||
category_list := ":" + strings.Join(categories.CategoriesWithHypha(h.CanonicalName()), ":") + ":"
|
||||
|
||||
util.HTTP200Page(w,
|
||||
viewutil.Base(
|
||||
viewutil.MetaFrom(w, rq),
|
||||
util.BeautifulName(hyphaName),
|
||||
views2.Hypha(viewutil.MetaFrom(w, rq), h, contents),
|
||||
cats,
|
||||
map[string]string{"cats": category_list},
|
||||
openGraph))
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user