From - Thu May 13 14:23:34 1999 Received: from db.stanford.edu (Amberjack.Stanford.EDU [171.64.75.94]) by DB.Stanford.EDU (8.8.8/8.8.8) with ESMTP id OAA07437 for ; Thu, 13 May 1999 14:17:34 -0700 Sender: beringer@DB.Stanford.EDU Message-ID: <373B416E.CFB73D3A@db.stanford.edu> Date: Thu, 13 May 1999 14:17:34 -0700 From: Dorothea Beringer X-Mailer: Mozilla 4.08 [en] (X11; I; SunOS 5.6 sun4u) MIME-Version: 1.0 To: chaims@DB.Stanford.EDU Subject: Minutes last meeting Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Mozilla-Status: 8001 Minutes meeting May 11, 1999 ============================ 1) Incremental extraction As with the new syntax for EXAMINE there is no clean way for having an EXAMINE statement directly in the boolean expression of an IF or WHILE statement (EXAMINE gives now back two parameters), we take that out of the CLAM language. The following statement is no more possible: WHILE (h1.EXAMINE() != DONE) {} It has to be replaced by: (s=status)=h1.EXAMINE() WHILE (s != DONE) {(s=status)=h1.EXAMINE()} or: (s=status, p=progress)=h1.EXAMINE() WHILE (s != DONE) { IF p>50 {....} (s=status, p=progress)=h1.EXAMINE()} 2) I gave the first part of an introduction into XML 3) We went over the slides of Laurence for her CAiSE talk Dorothea -- Dorothea Beringer Stanford University beringer@db.stanford.edu http://www-db.stanford.edu/people/beringer.html --