template::stack_dump (public)

 template::stack_dump

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

Return the whole call stack as HTML

Partial Call Graph (max 5 caller/called nodes):
%3 stack_dump stack_dump (public, deprecated) template::stack_dump template::stack_dump stack_dump->template::stack_dump template::stack_frame_values template::stack_frame_values (private) template::stack_dump->template::stack_frame_values

Testcases:
No testcase defined.
Source code:
    append page "<h1>Tcl Call Trace</h1>\n<ul>"

    for {set x [info level]} {$x > 0} {incr x -1} {
        append page "<li>$x.  [info level $x]<ul>[template::stack_frame_values $x]</ul>\n"
    }

    append page "</ul>\n<h2>Globals</h2>\n<ul> [template::stack_frame_values 0] </ul>\n"
XQL Not present:
Generic, PostgreSQL, Oracle
[ hide source ] | [ make this the default ]
Show another procedure: