category::indent_html (public, deprecated)

 category::indent_html indent_width

Defined in packages/categories/tcl/categories-procs.tcl

Deprecated. Invoking this procedure generates a warning.

Creates a series of   to indent subcatories in html output.

Parameters:
indent_width - width of the html indent.
Author:
Timo Hentschel <timo@timohentschel.de>
See Also:
  • string repeat " " $i

Partial Call Graph (max 5 caller/called nodes):
%3 ad_log_deprecated ad_log_deprecated (public) category::indent_html category::indent_html category::indent_html->ad_log_deprecated

Testcases:
No testcase defined.
Source code:
ad_log_deprecated proc category::indent_html
    set indent_string ""
    for { set i 0 } { $i < $indent_width } { incr i } {
        append indent_string "&nbsp;"
    }

    return $indent_string
XQL Not present:
Generic
PostgreSQL XQL file:
packages/categories/tcl/categories-procs-postgresql.xql

Oracle XQL file:
packages/categories/tcl/categories-procs-oracle.xql

[ hide source ] | [ make this the default ]
Show another procedure: