template::template_tag_if_concat_params (private)

 template::template_tag_if_concat_params params

Defined in packages/acs-templating/tcl/tag-procs.tcl

Append all the tags together. Note that the tokens inside an IF-tag are parsed just as attribute names, since these are not followed by an equals sign such as HTML-like attributes. These tokens can contain variable names, which are case-sensitive. This disallows NaviServer to treat attribute names lower case (in HTML, attribute names are case-insensitive).

Parameters:
params (required)

Partial Call Graph (max 5 caller/called nodes):
template::template_tag_if_condition template::template_tag_if_condition (private) template::template_tag_if_concat_params template::template_tag_if_concat_params template::template_tag_if_condition->template::template_tag_if_concat_params

Testcases:
No testcase defined.
Source code:
    
    set tokens [join [lmap {key value} [ns_set array $params] {
        string cat [expr {$key eq $value ? $key : "$key=$value"}]
    }] " "]
    #ns_log notice template::template_tag_if_concat_params $tokens

    return $tokens
XQL Not present:
Generic, PostgreSQL, Oracle
[ hide source ] | [ make this the default ]
Show another procedure: