From dcb8efd90f4220467b4cb77fed552fd657c414c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Kr=C3=BCger?= Date: Fri, 27 May 2022 15:56:43 +0200 Subject: [PATCH] fixup! model template method --- .../usr/lib/lua/gluon/web/model/classes.lua | 24 ++++--------------- 1 file changed, 5 insertions(+), 19 deletions(-) diff --git a/package/gluon-web-model/luasrc/usr/lib/lua/gluon/web/model/classes.lua b/package/gluon-web-model/luasrc/usr/lib/lua/gluon/web/model/classes.lua index 173fc85e..7f704f5f 100644 --- a/package/gluon-web-model/luasrc/usr/lib/lua/gluon/web/model/classes.lua +++ b/package/gluon-web-model/luasrc/usr/lib/lua/gluon/web/model/classes.lua @@ -196,25 +196,6 @@ function Template:__init__(template) self.template = template end -local Warning = class(Node) -M.Warning = Warning - -function Warning:__init__(...) - Node.__init__(self, ...) - - self.default = nil - self.size = nil - self.optional = false - - self.template = "model/warning" - - self.error = false -end - -function Warning:setcontent(content) - self.content = content -end - local AbstractValue = class(Node) M.AbstractValue = AbstractValue @@ -445,6 +426,11 @@ function Section:option(t, ...) return obj end +function Section:template(...) + local obj = Template(...) + self:append(obj) + return obj +end local Form = class(Node) M.Form = Form