Diff for /Amaya/amaya/query.c between versions 1.143 and 1.144

version 1.143, 1998/09/22 10:14:54 version 1.144, 1998/09/22 10:47:00
Line 1800  static int          LoopForStop (AHTReqC Line 1800  static int          LoopForStop (AHTReqC
             exit (0);              exit (0);
   
          status = XtAppPending (app_cont);           status = XtAppPending (app_cont);
          if (status & XtIMXEvent) {           if (status & XtIMXEvent)
             XtAppNextEvent (app_cont, &ev);             {
             TtaHandleOneEvent (&ev);               XtAppNextEvent (app_cont, &ev);
          } else if (status & (XtIMAll & (~XtIMXEvent))) {               TtaHandleOneEvent (&ev);
                 XtAppProcessEvent (app_cont, (XtIMAll & (~XtIMXEvent)));             } 
          } else {           else if (status != 0) 
                XtAppNextEvent (app_cont, &ev);             XtAppProcessEvent (app_cont, XtIMAll);
                TtaHandleOneEvent (&ev);  
          }  
    }     }
 #endif /* _WINDOWS */  #endif /* _WINDOWS */
    switch (me->reqStatus) {     switch (me->reqStatus) {
Line 2206  char       *content_type; Line 2204  char       *content_type;
    if (mode & AMAYA_NOCACHE)      if (mode & AMAYA_NOCACHE) 
       HTRequest_setReloadMode (me->request, HT_CACHE_FLUSH);        HTRequest_setReloadMode (me->request, HT_CACHE_FLUSH);
    else     else
      HTRequest_setReloadMode (me->request, HT_CACHE_FLUSH_MEM);       HTRequest_setReloadMode (me->request, HT_CACHE_OK);
   
    /* prepare the query string and format for POST */     /* prepare the query string and format for POST */
    if (mode & AMAYA_FORM_POST)     if (mode & AMAYA_FORM_POST)

Removed from v.1.143  
changed lines
  Added in v.1.144


Webmaster