wp_role_predicate

one of the documented procedures in this installation of the ACS
Usage:
wp_role_predicate   role   { title "" }
What it does:
Returns a 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" } {
	return "view and make changes to the presentation$space$title"
    } elseif { $role == "admin" } {
	return "view and make changes to the presentation$space$title, and decide who gets to view/edit it"
    }
    error "role must be read, write, or admin"


philg@mit.edu