wp_short_role_predicate

one of the documented procedures in this installation of the ACS
Usage:
wp_short_role_predicate   role   { title "" }
What it does:
Returns a short plain-English string describing an role (read/write/admin).
Defined in: /web/philip/tcl/wp-defs.tcl

Source code:


    if { $title != "" } {
	set space " "
    } else {
	set space ""
    }

    if { $role == "read" } {
	return "view the presentation$space$title"
    } elseif { $role == "write" || $role == "admin" } {
	return "work on the presentation$space$title"
    }
    error "role must be read, write, or admin"


philg@mit.edu