wp_only_if

one of the documented procedures in this installation of the ACS
Usage:
wp_only_if   condition   text   { elsetext "" }
What it does:
If condition, returns text; otherwise returns elsetext.
Defined in: /web/philip/tcl/wp-defs.tcl

Source code:


    if [uplevel expr "{ $condition }"] {
	return $text
    } else {
	return $elsetext
    }


philg@mit.edu