<<>> <> <> <> DIRECTORY Rope USING [ROPE]; SystemSite: CEDAR DEFINITIONS ~ { ROPE: TYPE ~ Rope.ROPE; Names: TYPE ~ RECORD [registry, domain, organization: ROPE ¬ NIL]; Get: PROC RETURNS [Names]; <<... returns the default names for users at this site:>> <> <> <> <<>> Set: PROC [Names]; <<... sets the default names. Set is normally called only by Iago during system initialization; don't use it unless you really know what you're doing.>> <<>> }.