edu_maybe_display_text

one of the documented procedures in this installation of the ACS
Usage:
edu_maybe_display_text   text_to_display
What it does:
Takes in text and returns the text if it is not the empty string. It is is the empty string, it returns the word 'None'
Defined in: /web/philip/tcl/education.tcl

Source code:


    if {[empty_string_p $text_to_display]} {
	return "None"
    } else {
	return $text_to_display
    }


philg@mit.edu