Reporter: Warren Jones Tue Mar 26 17:28:31 1996 Problem: Users were puzzled because the reset button wouldn't clear the keyword field when they wanted to submit a second query. Instead, it would restore the keywords used for the first query. Solution: Don't pass back a value for the keyword field with the query results. This value is redundant, since you also get the message: Here is the result of your search using the keyword(s) "whatever": Now the reset button will always clear the keyword field, which is what people seem to expect. Index: wwwwais.c =================================================================== RCS file: /usr0/wjones/src/CVS.repo/wwwwais/wwwwais.c,v retrieving revision 1.3 diff -c -r1.3 wwwwais.c *** wwwwais.c 1995/10/20 18:52:18 1.3 --- wwwwais.c 1995/10/26 17:29:53 *************** *** 1112,1118 **** printf("capable browser.

\n"); printf("Enter keyword(s): "); printf(" ", ! keywords); printf(" "); printf("\n

\n"); if (indexsources > 1) { --- 1112,1118 ---- printf("capable browser.

\n"); printf("Enter keyword(s): "); printf(" ", ! "" /* keywords */ ); /* Don't send back keywords. */ printf(" "); printf("\n

\n"); if (indexsources > 1) {