doc_get_property

one of the documented procedures in this installation of the ACS
Usage:
doc_get_property   name
What it does:
Returns a property (or an empty string if no such property exists).
Defined in: /web/philip/packages/acs-core/document-procs.tcl

Source code:


    global doc_properties
    if { [info exists doc_properties($name)] } {
	return $doc_properties($name)
    }
    return ""


philg@mit.edu