diff --git a/web/CXM_making_a_web_site.anubis b/web/CXM_making_a_web_site.anubis index 22a76ce..209ac4c 100644 --- a/web/CXM_making_a_web_site.anubis +++ b/web/CXM_making_a_web_site.anubis @@ -6,7 +6,7 @@ *Copyright* Copyright (c) Alain Prouté 2004-2005. Copyright (c) Calexium 2007-2017. - Copyright (c) David René 2007-2019. + Copyright (c) David René 2007-2020. *Authors* Alain Prouté @@ -1364,7 +1364,7 @@ public define HTML_Off_Form div(CoreAttrs attr, List(HTML_Off_Form) content) public define HTML_Off_Form div(CoreAttrs attr, HTML_Off_Form content) = html_tag("div", [attr], [content]). public define HTML_Off_Form div(List(HTML_Off_Form) content) = html_tag("div", [], content). public define HTML_Off_Form div(HTML_Off_Form content) = html_tag("div", [], [content]). -public define HTML_Off_Form div(List(CoreAttrs) attrs) = html_tag("div", attrs, [empty]). +public define HTML_Off_Form div(List(CoreAttrs) attrs) = html_tag("div", attrs, []). public define HTML_Off_Form div(CoreAttrs attr) = html_tag("div", [attr], []). public define HTML_Off_Form div(List(CoreAttrs) attrs, HTML_Partial_Content content) = div(attrs, [content]). @@ -1372,6 +1372,11 @@ public define HTML_Off_Form div(List(HTML_Partial_Content) content) public define HTML_Off_Form div(CoreAttrs attr, HTML_Partial_Content content) = div([attr], [content]). public define HTML_Off_Form div(HTML_Partial_Content content) = div([], [content]). +//public define HTML_Partial_Content div(List(CoreAttrs) attrs, HTML_Partial_Content content) = partial_content([], div(attrs, [content])). +//public define HTML_Partial_Content div(CoreAttrs attr, HTML_Partial_Content content) = partial_content([], div([attr], [content])). +//public define HTML_Partial_Content div(List(HTML_Partial_Content) content) = partial_content([], div([], content)). +//public define HTML_Partial_Content div(HTML_Partial_Content content) = partial_content([], div([], [content])). + //