SystemSite.mesa
Copyright
Ó 1987, 1991 by Xerox Corporation. All rights reserved.
Doug Wyatt, January 24, 1987 7:52:10 pm PST
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:
registry: Grapevine Registry, for example "pa"
domain:
XNS Domain, for example "PARC"
organization:
XNS Organization, for example "Xerox"
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.
}.