clean up remaining mentions of "framed_template"

This commit is contained in:
2026-02-10 17:03:17 -07:00
parent 080f78a414
commit 34f64b3f76
6 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -133,7 +133,7 @@ func (mb *MessageBox) Render(ctxt AmContext) (string, any) {
ctxt.VarMap().Set("warningLines", mb.def.WarningLines)
ctxt.VarMap().Set("buttons", mb.def.Buttons)
ctxt.VarMap().Set("buttonLinks", blinks)
return "framed_template", "messagebox.jet"
return "framed", "messagebox.jet"
}
// Validate validates that the correct button was clicked by verifying the confirmation parameter.
+1 -1
View File
@@ -42,7 +42,7 @@ func IPBanTest(next echo.HandlerFunc) echo.HandlerFunc {
amctxt.VarMap().Set("amsterdam_pageTitle", "IP Address Banned")
amctxt.VarMap().Set("message", banmsg)
amctxt.SetRC(http.StatusForbidden)
return AmSendPageData(c, amctxt, "framed_template", "ipban.jet")
return AmSendPageData(c, amctxt, "framed", "ipban.jet")
}
return next(c)
}
+3 -3
View File
@@ -29,7 +29,7 @@ import (
* "redirect" - Treat "data" as a URL to be redirected to and send a 302 Redirect.
* "string" - Output "data" as a string.
* "template" - Treat "data" as a template name, and output that template.
* "framed_template" - Treat "data" as an inner template name, and output that template rendered
* "framed" - Treat "data" as an inner template name, and output that template rendered
* within the outer "frame.jet" template.
* data - The data to be output, as determined by the command.
* Returns:
@@ -84,7 +84,7 @@ func AmSendPageData(ctxt echo.Context, amctxt AmContext, command string, data an
err = ctxt.String(amctxt.RC(), data.(string))
case "template":
err = ctxt.Render(amctxt.RC(), data.(string), amctxt)
case "framed", "framed_template":
case "framed":
amctxt.VarMap().Set("amsterdam_innerPage", data)
menus := make([]*MenuDefinition, 2)
switch amctxt.LeftMenu() {
@@ -126,7 +126,7 @@ func ErrorPage(ctxt AmContext, input_err error) (string, any, error) {
}
ctxt.VarMap().Set("amsterdam_pageTitle", "Internal Server Error")
ctxt.VarMap().Set("error", input_err.Error())
return "framed_template", "error.jet", nil
return "framed", "error.jet", nil
}
// expireTime is the expiration time sent in the dynamic headers.