<> <> <> <> <<>> <<-- Create a tioga viewer onto a rope, allow the user to edit it, >> <<-- Return the new rope and destroy the viewer after the user hits >> <<-- the save button.>> DIRECTORY Rope USING [ROPE]; CDRopeViewer: CEDAR DEFINITIONS = BEGIN SaveProc: TYPE = PROC[contents, formatting: Rope.ROPE, clientData: REF, discard: BOOL]; Edit: PROC [contents, caption, formatting: Rope.ROPE_NIL, save: SaveProc_NIL, clientData: REF_NIL, fork: BOOL_TRUE, saveOnDiscard: BOOL_FALSE ]; <<--if contents#NIL tiogaContents is ignored>> END.