Commit b98938515b305d04506c9cee5a7e1e79f369b718
Merge branch 'release/ANUBIS_1_14' of ssh://gitlab.anubis-lang.com:33000/anubis/…
…xlib into release/ANUBIS_1_14
Showing
2 changed files
with
7 additions
and
5 deletions
Show diff stats
net_services_protocols/logger_server.anubis
| ... | ... | @@ -267,10 +267,10 @@ define One |
| 267 | 267 | public define Maybe(UDP_Server) |
| 268 | 268 | start_logger_server |
| 269 | 269 | ( |
| 270 | - Var(List(UID_loggers)) logs, | |
| 271 | - Logger anb_logger, | |
| 272 | - Word32 logger_listen_port, | |
| 273 | - String base_directory | |
| 270 | + Var(List(UID_loggers)) logs, //list of all registered loggers | |
| 271 | + Logger anb_logger, //logger for anb_log itself | |
| 272 | + Word32 logger_listen_port, // | |
| 273 | + String base_directory // | |
| 274 | 274 | ) = |
| 275 | 275 | if start_udp_server(0, |
| 276 | 276 | logger_listen_port, |
| ... | ... | @@ -317,6 +317,6 @@ global define One |
| 317 | 317 | //create own logger |
| 318 | 318 | with anb_logger = createLogger("anb_log", 7, base_directory + "anb_log.log", logTrace, logTrace), |
| 319 | 319 | logInfo(anb_logger, "start anb_log "+datef_ymd(product_time) + " " + dhour_format(product_time)); |
| 320 | - | |
| 320 | + //get saved logger | |
| 321 | 321 | forget(start_logger_server(create_default_loggers(base_directory), anb_logger, server_port, base_directory)) |
| 322 | 322 | . | ... | ... |
web/CXM_making_a_web_site.anubis
| ... | ... | @@ -1495,6 +1495,8 @@ public define HTML_Off_Form option(HTML_Off_Form content) |
| 1495 | 1495 | // <p> |
| 1496 | 1496 | public define HTML_Off_Form p(List(CoreAttrs) attrs, List(HTML_Off_Form) content) = html_tag("p", attrs, content). |
| 1497 | 1497 | public define HTML_Off_Form p(List(CoreAttrs) attrs, HTML_Off_Form content) = html_tag("p", attrs, [content]). |
| 1498 | +public define HTML_Off_Form p(CoreAttrs attr, List(HTML_Off_Form) content) = html_tag("p", [attr], content). | |
| 1499 | +public define HTML_Off_Form p(CoreAttrs attr, HTML_Off_Form content) = html_tag("p", [attr], [content]). | |
| 1498 | 1500 | public define HTML_Off_Form p(List(HTML_Off_Form) content) = html_tag("p", [], content). |
| 1499 | 1501 | public define HTML_Off_Form p(HTML_Off_Form content) = html_tag("p", [], [content]). |
| 1500 | 1502 | ... | ... |