Received: from jimi.CS.UNLV.EDU by JIMI.CS.UNLV.EDU id aa25831; 22 Dec 94 22:46 PST To: jay@JIMI.CS.UNLV.EDU Subject: bug-chimera aug 94 Date: Thu, 22 Dec 1994 22:46:38 -0800 From: Jay Nietling ------- Forwarded Messages Received: from cory.EECS.Berkeley.EDU by JIMI.CS.UNLV.EDU id aa10567; 1 Aug 94 3:54 PDT Received: (asami@localhost) by cory.EECS.Berkeley.EDU (8.6.8/8.6.4) id DAA23834; Mon, 1 Aug 1994 03:53:07 -0700 Date: Mon, 1 Aug 1994 03:53:07 -0700 From: Satoshi ASAMI Message-Id: <199408011053.DAA23834@cory.EECS.Berkeley.EDU> To: bug-chimera@cs.unlv.edu Subject: small bug in src/Imakefile and an extended feature (1) The Imakefile in src lacks the local library dependencies. Please see the end of attached patch. This will make src/chimera to be recompiled when the library changes. Obviously, I found this while trying to make the following change, which leads to.... (2) I miss the one-line scroll of Mosaic, so I hacked up one. The following patch to HTML.c is my implementation. It is not particularly clean, but I think this is about the minimum change of code required. I didn't change the help. You can use jk or arrow up/down to move the screen one line. Actually, it may not be exactly "one line", since the font sizes may differ, but I just used the DEFAULT_INCREMENT (18 pixels). Sincerely, Satoshi asami@cs.berkeley.edu ====== - --- chimera-1.54/libhtmlw/HTML.c.org Mon Aug 1 02:18:37 1994 +++ chimera-1.54/libhtmlw/HTML.c Mon Aug 1 03:50:44 1994 @@ -201,8 +201,12 @@ : select-start()\n\ : extend-adjust()\n\ : extend-end(PRIMARY, CUT_BUFFER0) \n\ - -space: scroll-up()\n\ - -b: scroll-down()\n\ +space: scroll-up(\"Halfscreen\")\n\ +b: scroll-down(\"Halfscreen\")\n\ +j: scroll-up(\"Oneline\")\n\ +k: scroll-down(\"Oneline\")\n\ +Down: scroll-up(\"Oneline\")\n\ +Up: scroll-down(\"Oneline\")\n\ : track-motion()\n\ : track-motion()\n\ : track-motion()\n\ @@ -995,6 +999,7 @@ /* * Either the vertical or hortizontal scrollbar has been moved + * call_data of 1/-1 means half screen, otherwise number of pixels to scroll vertically */ void ScrollMove(w, client_data, call_data) @@ -1016,7 +1021,10 @@ { totalLength = hw->html.doc_height; currentLength = hw->html.view_height; - - value = hw->html.scroll_y + scrollDir * currentLength; + if ((int)call_data == 1 || (int)call_data == -1) + value = hw->html.scroll_y + scrollDir * currentLength; + else + value = hw->html.scroll_y + (int)call_data; } else { @@ -3483,14 +3491,20 @@ ScrollUp(w, event, params, num_params) Widget w; XEvent *event; - - String *params; /* unused */ - - Cardinal *num_params; /* unused */ + String *params; + Cardinal *num_params; { HTMLWidget hw = (HTMLWidget)XtParent(w); if (XtClass(XtParent(w)) == htmlWidgetClass) { - - ScrollMove(hw->html.vbar, (caddr_t)hw, 1); + if (*num_params == 1) + { + if (!strcmp(params[0], "Oneline")) + ScrollMove(hw->html.vbar, (caddr_t)hw, DEFAULT_INCREMENT); + else + ScrollMove(hw->html.vbar, (caddr_t)hw, 1); + } } } @@ -3498,14 +3512,20 @@ ScrollDown(w, event, params, num_params) Widget w; XEvent *event; - - String *params; /* unused */ - - Cardinal *num_params; /* unused */ + String *params; + Cardinal *num_params; { HTMLWidget hw = (HTMLWidget)XtParent(w); if (XtClass(XtParent(w)) == htmlWidgetClass) { - - ScrollMove(hw->html.vbar, (caddr_t)hw, -1); + if (*num_params == 1) + { + if (!strcmp(params[0], "Oneline")) + ScrollMove(hw->html.vbar, (caddr_t)hw, -DEFAULT_INCREMENT); + else + ScrollMove(hw->html.vbar, (caddr_t)hw, -1); + } } } - --- chimera-1.54/src/Imakefile.org Mon Aug 1 03:07:58 1994 +++ chimera-1.54/src/Imakefile Mon Aug 1 03:11:13 1994 @@ -22,9 +22,11 @@ $(XAWLIB) $(XTOOLLIB) $(XMULIB) $(XLIB) \ $(SOCKSLIB) $(TERMLIB) $(MPROFLIB) +LOCAL_DEPLIBS = ../mxw/libmxw.a ../libhtmlw/libhtmlw.a + AllTarget(chimera) - -NormalProgramTarget(chimera,$(OBJS),MyNull,$(LOCAL_LIBRARIES),MyNull) +NormalProgramTarget(chimera,$(OBJS),$(LOCAL_DEPLIBS),$(LOCAL_LIBRARIES),MyNull) InstallProgram(chimera,$(BINDIR)) InstallScript(dotelnet,$(BINDIR)) ------- Message 2 Received: from techfac.TechFak.Uni-Bielefeld.DE by JIMI.CS.UNLV.EDU id aa26491; 1 Aug 94 10:00 PDT Received: from lilie.TechFak.Uni-Bielefeld.DE by techfac.TechFak.Uni-Bielefeld.DE id AA28465; Mon, 1 Aug 1994 19:00:40 +0200 Received: by lilie.techfak.uni-bielefeld.de (5.0/tp.29.0890) id AA10893; Mon, 1 Aug 1994 19:00:38 --100 Date: Mon, 1 Aug 1994 19:00:38 --100 From: armin@TechFak.Uni-Bielefeld.DE Message-Id: <9408011700.AA10893@lilie.techfak.uni-bielefeld.de> To: bug-chimera@cs.unlv.edu Cc: armin@TechFak.Uni-Bielefeld.DE Subject: bugs, additions Content-Length: 8206 Hi, I've been working on chimera version 1.60 under SunOS 5.3. The following bugs will be fixed with my diffs to ftp://ftp.cs.unlv.edu/pub/chimera-misc/xc8-1.60.tar.gz : - - gopher query types 7 were interpreted as gopherp (e.q.: the gopher://gopher.techfak.uni-bielefeld.de:70/11/OtherGopher converts the 'Veronica (Stichwortsuche in einem grossen Teil des "GopherSpace"' line to :gopherp://veronica.uni-koeln.de:2347/7 ) gopher.c - - further, the answer from a gopher query will be incorrectly converted because the method is missing. I don't know if this is bug of the gopher daemon, but Mosaic is doing the right thing. url.c - - Calling external programms and the piping commands fails under SunOS 5.3 because the PATH variable has to be re-exported after changing it. For the sake of portability, the semicolon should be replaced by a space. convert.c, mime.c Finally, I added functions to display status messages ( e.g. "Display document", the upload counting ) and the URL ( which is going to be retrieved by pressing the left mouse button) in a separate labelWidget. I didn't like the one line displaying after pressing the right button. - ------------------------------------------------------------------------------ Armin Buehler armin@TechFak.Uni-Bielefeld.DE Technische Fakultaet Universitaet Bielefeld Universitaetsstr. 25 33615 Bielefeld GERMANY ===================== cut ===================== diff -u src/Chimera.ad new/Chimera.ad - --- src/Chimera.ad Tue Jul 12 06:49:47 1994 +++ new/Chimera.ad Mon Aug 1 17:30:22 1994 @@ -83,6 +83,12 @@ *titledisplay.fromHoriz: titlelabel *titledisplay.width: 500 +*status.left: ChainLeft +*status.right: ChainRight +*status*sensitive: false +*status.width: 500 +*status.font: 6x10 + *file.label: File *open.label: Open *cancel.label: Cancel diff -u src/convert.c new/convert.c - --- src/convert.c Thu Jul 7 02:05:50 1994 +++ new/convert.c Fri Jul 29 17:42:35 1994 @@ -134,7 +134,7 @@ if (path != NULL) { t = alloc_mem(strlen(path) + strlen(cmdline) + 7); - - sprintf(t, "PATH=%s;%s", path, cmdline); + sprintf(t, "PATH=%s %s", path, cmdline); free(cmdline); cmdline = t; } diff -u src/gopher.c new/gopher.c - --- src/gopher.c Sat Jul 2 08:24:02 1994 +++ new/gopher.c Fri Jul 29 17:47:20 1994 @@ -530,7 +530,8 @@ break; default: - - if (gf[GOPHER_EXTRA][0] == '+' && gf[GOPHER_SELECTOR][0] != '1') + if (gtype != '7' && + gf[GOPHER_EXTRA][0] == '+' && gf[GOPHER_SELECTOR][0] != '1') { form = eformat; } diff -u src/main.c new/main.c - --- src/main.c Tue Jul 12 09:00:41 1994 +++ new/main.c Mon Aug 1 12:28:33 1994 @@ -82,6 +82,7 @@ static void HandleDoc(Document *, int); static void AddMessage(char *); static void DisplayCurrent(void); +static void SetStatus(char *); static void SetTitle(char *); static void SetURL(URLParts *); static void SetSensitive(int); @@ -101,6 +102,7 @@ static void HandleDoc(); static void AddMessage(); static void DisplayCurrent(); +static void SetStatus(); static void SetTitle(); static void SetURL(); static void SetSensitive(); @@ -160,6 +162,8 @@ offset(showURL), XtRString, "True" }, { "showTitle", "ShowTitle", XtRBoolean, sizeof(Boolean), offset(showTitle), XtRString, "True" }, + { "showStatus", "ShowStatus", XtRBoolean, sizeof(Boolean), + offset(showStatus), XtRString, "True" }, { "button1Box", "Button1Box", XtRString, sizeof(char *), offset(button1Box), XtRImmediate, "quit, open, home, back, source, reload, file, help, bookmark, search, cancel" }, { "button2Box", "Button2Box", XtRString, sizeof(char *), @@ -263,6 +267,10 @@ "*titledisplay*displayCaret: False", "*titledisplay*editType: read", + "*status.left: ChainLeft", + "*status.right: ChainRight", + "*status*sensitive: false", + "*status.width: 500", NULL }; @@ -381,6 +389,28 @@ XtAppMainLoop(root.appcon); } +void SetStatus( str ) +char *str; +{ + Arg args[1]; + XEvent event; + String s; + + if( root.showStatus ) { + s = XtNewString( str ); + XtSetArg(args[0], XtNlabel, s ); + XtSetValues( root.status, args, 1 ); + XtFree( s ); + while( XtAppPending( root.appcon ) ) { + XtAppNextEvent( root.appcon, &event ); + XtDispatchEvent( &event ); + } + } + else + { + SetTitle( str ); + } +} /* * SetTitle * @@ -475,7 +505,7 @@ XtSetArg(args[1], WbNhorizontalScrollPos, root.dlist->hpos); XtSetValues(root.w, args, 2); - - SetTitle("Displaying document..."); + SetStatus("Displaying document..."); SetURL(root.dlist->up); d = root.dlist->doc; @@ -557,11 +587,11 @@ if (reload || (d = ReadCache(nup, !root.cacheOff)) == NULL) { - - SetTitle("Downloading document..."); + SetStatus("Downloading document..."); d = LoadDocument(nup, reload); } - - SetTitle(""); + SetStatus(""); if (tup != NULL) DestroyURLParts(tup); @@ -661,6 +691,33 @@ return; } +void PointerMotion(w, href) +Widget w; +char *href; +{ + if( root.showStatus ) + { + char *s; + char *nurl = NULL; + URLParts *tup, *nup; + + if( href != NULL && *href != '\0' ) + { + if( (tup = ParseURL(href)) == NULL ) + return; + + nup = MakeURLParts(tup, root.dlist->up); + s = MakeURL(nup, 0); + DestroyURLParts(nup); + } + else + { + s = alloc_string(""); + } + SetStatus(s); + free(s); + } +} /* * Anchor * @@ -1444,7 +1501,7 @@ if (root.rflag || (d = ReadCache(nup, !root.cacheOff)) == NULL) { - - SetTitle("Downloading inline image..."); + SetStatus("Downloading inline image..."); d = LoadDocument(nup, 0); @@ -1718,7 +1775,7 @@ if (max > 0) sprintf (buffer, "%d bytes out of %d loaded", n, max); else sprintf (buffer, "%d bytes loaded", n); - - SetTitle(buffer); + SetStatus(buffer); } if (root.cancel) diff -u src/mime.c new/mime.c - --- src/mime.c Wed Jul 13 01:56:08 1994 +++ new/mime.c Fri Jul 29 18:33:17 1994 @@ -434,7 +434,7 @@ char *t; t = alloc_mem(strlen(path) + strlen(cmdline) + 7); - - sprintf(t, "PATH=%s;%s", path, cmdline); + sprintf(t, "PATH=%s %s", path, cmdline); free(cmdline); cmdline = t; } diff -u src/url.c new/url.c - --- src/url.c Tue Jul 12 12:17:27 1994 +++ new/url.c Fri Jul 29 18:00:44 1994 @@ -448,7 +448,16 @@ } else if (*cp == '/') { - - state = 3; + if (cp[1] == '/') + { + state = 1; + cp += 2; + scp = cp; + } + else + { + state = 3; + } } break; diff -u src/widget.c new/widget.c - --- src/widget.c Thu Jul 7 03:38:14 1994 +++ new/widget.c Fri Jul 29 17:54:32 1994 @@ -164,8 +164,8 @@ CreateWidgets(r) HTMLRoot *r; { - - Widget paned, box, form; - - Arg args[3]; + Widget paned, box, form, status; + Arg args[4]; XtCallbackRec cbrec[2]; /* @@ -231,7 +231,20 @@ } /* - - * Fifth pane, the HTML viewing area + * Fifth pane. Status display + */ + if( r->showStatus ) + { + status = XtCreateManagedWidget("form", + formWidgetClass, paned, + NULL, ZERO); + r->status = XtCreateManagedWidget("status", + labelWidgetClass, status, + NULL,ZERO); + } + + /* + * sixth pane, the HTML viewing area */ r->w = XtCreateManagedWidget("html", htmlWidgetClass, paned, @@ -249,8 +262,9 @@ cbrec[1].callback = 0; cbrec[1].closure = 0; XtSetArg(args[2], WbNsubmitFormCallback, cbrec); + XtSetArg(args[3], WbNpointerMotionCallback, PointerMotion ); - - XtSetValues(r->w, args, 3); + XtSetValues(r->w, args, 4); return; } diff -u src/widget.h new/widget.h - --- src/widget.h Tue Jul 12 06:46:27 1994 +++ new/widget.h Fri Jul 29 17:55:38 1994 @@ -61,6 +61,7 @@ Widget source; Widget urldisplay; Widget titledisplay; + Widget status; Widget bookmark; Widget reload; Widget home; @@ -88,6 +89,7 @@ char *cacheDir; int cacheSize; Boolean cacheOff; + Boolean showStatus; int docTTL; Boolean showURL; Boolean showTitle; @@ -113,6 +115,7 @@ */ void Quit(); void OpenDocument(); +void PointerMotion(); void Anchor(); void Home(); void Back(); ------- Message 3 Received: from aun.uninett.no by JIMI.CS.UNLV.EDU id aa29224; 2 Aug 94 11:00 PDT Received: from snorre.uninett.no by aun.uninett.no with SMTP (PP) id <07492-0@aun.uninett.no>; Tue, 2 Aug 1994 19:59:52 +0200 Received: from localhost (oak@localhost) by snorre.uninett.no (8.6.4/8.6.4) with SMTP id TAA02078 for ; Tue, 2 Aug 1994 19:59:47 +0200 Message-Id: <199408021759.TAA02078@snorre.uninett.no> X-Authentication-Warning: snorre.uninett.no: Host localhost didn't use HELO protocol X-Authentication-Warning: snorre.uninett.no: oak owned process doing -bs To: bug-chimera@cs.unlv.edu From: Olav.Kvittem@uninett.no Subject: chiera 1.54 no images displayed X-Mailer: exmh version 1.4 6/24/94 Date: Tue, 02 Aug 1994 19:59:43 +0200 Sender: oak@snorre.uninett.no Hello, I just got the chimera 1.54 from sunet.se and compiled it my linux Slackware 1.2.0 and kernel 1.1.18. I starts fine, but no graphics are displayed (even if it reports loading them). Not even the https://www.unlv.edu/chimera/ inline image was diplayed. Only the standard "no image" bitmap is displayed. I did not notice any error messages. I use a slow speed line - can you delay loading of images ? Olav ------- Message 4 Received: from charles.CS.UNLV.EDU by JIMI.CS.UNLV.EDU id aa03326; 2 Aug 94 12:40 PDT To: Olav.Kvittem@uninett.no cc: bug-chimera@cs.unlv.edu Subject: Re: chiera 1.54 no images displayed In-reply-to: Your message of "Tue, 02 Aug 1994 19:59:43 +0200." <199408021759.TAA02078@snorre.uninett.no> Date: Tue, 02 Aug 1994 12:40:21 -0700 From: John Kilburg >I just got the chimera 1.54 from sunet.se and compiled it my >linux Slackware 1.2.0 and kernel 1.1.18. >I starts fine, but no graphics are displayed (even if it >reports loading them). Not even the https://www.unlv.edu/chimera/ >inline image was diplayed. Make sure you have the netpbm utilities in your path. >I use a slow speed line - can you delay loading of images ? The code to do this has been contributed...I will see about adding it. -john ------- Message 5 Received: from quaver.urbana.mcd.mot.com by JIMI.CS.UNLV.EDU id aa25272; 4 Aug 94 14:35 PDT Received: by quaver.urbana.mcd.mot.com (5.61/1.34.quaver) id AA08908; Thu, 4 Aug 94 16:32:12 -0500 From: Mark Scott Message-Id: <9408042132.AA08908@quaver.urbana.mcd.mot.com> Subject: malloc troubles To: bug-chimera@cs.unlv.edu Date: Thu, 4 Aug 1994 16:32:11 +0000 (CDT) X-Mailer: ELM [version 2.4 PL21] Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Length: 909 I hit a bug in Chimera 1.54. In content.c, the ReadContentDB() runs off the end of the linked list on our system sometimes. This is due to an assumption by mymalloc() in util.c that the system returns zeroed memory. I fixed it by changing it to the following: static char * mymalloc(len) int len; { char *s; s = (char *)malloc(len); if (s == NULL) OutOfMemory(); else bzero(s,len); /* zero out the memory */ return(s); } Also, is there any way to deal with inlined XPM files with Chimera? ____________________________________________________________________ | Mark Scott | | | Motorola Computer Group | | | Baseline Testing Team | Promise Keepers - Men of Integrity | | mscott@mcd.mot.com | | | Ph# (217) 384-8536 | | -------------------------------------------------------------------- ------- Message 6 Received: from ns.bbc.co.uk by JIMI.CS.UNLV.EDU id aa07485; 5 Aug 94 9:45 PDT Received: from ant.rd.eng.bbc.co.uk (rdmailgate.rd.eng.bbc.co.uk) by ns.bbc.co.uk with SMTP id AA17525 (5.65c/IDA-1.4.4 for ); Fri, 5 Aug 1994 17:45:37 +0100 From: Rob May Message-Id: <22382.9408051645@ant.rd.eng.bbc.co.uk> Subject: Chimera 1.60b: Bug in local.c To: Chimera Bugs Date: Fri, 5 Aug 1994 17:45:35 +0100 (BST) X-Phone: +44 737 836535 (Direct line). +44 737 832361 (Switchboard). X-Fax: +44 737 832336 X-Mailer: ELM [version 2.4 PL21] Content-Type: text Content-Length: 629 There is a bug in the new telnet handling code, in telnet_main(), in src/local.c. Having parsed hostname for an included username, if none is found, then the index(i) needs to be reset to zero. Fix: add code after line 268 of local.c: 268: if (username == NULL || i == len) username = alloc_string(""); add 269: if (i == len) i = 0; This seems to fix it, but I may have mis-understood what was happening before (I don't understand why we look for a ':' in the hostname, or if why we find one we leave the hostname unaltered). Anyhow, it doesn't work as is. Hope this is helpful. Rob. email:robert.may@rd.eng.bbc.co.uk ------- Message 7 Received: from stepsun.uni-kl.de by JIMI.CS.UNLV.EDU id aa14972; 10 Aug 94 3:29 PDT Received: from uklirb.informatik.uni-kl.de by stepsun.uni-kl.de id aa06598; 10 Aug 94 12:29 MET DST Received: from rhein.informatik.uni-kl.de by uklirb.informatik.uni-kl.de id aa15861; 10 Aug 94 12:19 MET DST To: bug-chimera@cs.unlv.edu CC: Subject: Problems with Veronica access Reply-to: jreinert@informatik.uni-kl.de Date: Wed, 10 Aug 94 12:17:17 MET DST From: jreinert@informatik.uni-kl.de Sender: jreinert@informatik.uni-kl.de Message-ID: <9408101217.aa03003@rhein.informatik.uni-kl.de> Source-Info: From (or Sender) name not authenticated. Hi! I'm new with chimera. Therefore it may be an FAQ: When I connect me with chimera to a Veronica-search-server (searching in the gopher space) everything looks ok: A form is shown with an field for entering the search keywords and an SUBMIT button is included. But if I enter a keyword and submit the query nothing is retrieved. If do the same with the mosaic browsers it works (another (relevant(?)) difference is that with mosaic no SUBMIT button is shown). Have I forgotten to make some configuration? Thanks for any input. Joachim - -- Joachim Reinert UNI Kaiserslautern, AG-DVS fax : +49 631 205 3558 P.O. Box 3049 phone : +49 631 205 3282 67653 Kaiserslautern - Germany e-mail: jreinert@informatik.uni-kl.de ------- Message 8 Received: from charles.CS.UNLV.EDU by JIMI.CS.UNLV.EDU id aa15800; 10 Aug 94 4:04 PDT To: jreinert@informatik.uni-kl.de cc: bug-chimera@cs.unlv.edu Subject: Re: Problems with Veronica access In-reply-to: Your message of "Wed, 10 Aug 1994 12:17:17 +0700." <9408101217.aa03003@rhein.informatik.uni-kl.de> Date: Wed, 10 Aug 1994 04:04:01 -0700 From: John Kilburg >I'm new with chimera. Therefore it may be an FAQ: >When I connect me with chimera to a Veronica-search-server (searching >in the gopher space) everything looks ok: A form is shown with an >field for entering the search keywords and an SUBMIT button is >included. But if I enter a keyword and submit the query nothing is >retrieved. If do the same with the mosaic browsers it works (another >(relevant(?)) difference is that with mosaic no SUBMIT button is >shown). > >Have I forgotten to make some configuration? No. It could be a bug. There was a patch submitted recently which deals with this problem, I think. I'll try to make sure it makes it into the next release. -john ------- Message 9 Received: from charles.CS.UNLV.EDU by JIMI.CS.UNLV.EDU id aa18885; 10 Aug 94 4:16 PDT To: bug-chimera@charles.CS.UNLV.EDU Subject: progress report Date: Wed, 10 Aug 1994 04:16:17 -0700 From: John Kilburg I've been working on 1.60 again now that the department I work for has been mostly moved. I will try to release another 1.60 beta soon just to keep everyone on their toes. -john ------- Message 10 Received: from fuhainf.fernuni-hagen.de by JIMI.CS.UNLV.EDU id aa05177; 12 Aug 94 2:22 PDT Received: from ES-sun1.lg-es (ES-sun1.fernuni-hagen.de) by fuhainf.fernuni-hagen.de (4.1/SMI-4.1-fu-ha) id AA24032; Fri, 12 Aug 94 11:22:30 +0200 Received: from ES-sun2.lg-es by ES-sun1.lg-es (4.1/SMI-4.1) id AA25156; Fri, 12 Aug 94 11:22:29 +0200 Date: Fri, 12 Aug 94 11:22:29 +0200 From: Johann Friedrich Heinrichmeyer Message-Id: <9408120922.AA25156@ES-sun1.lg-es> Received: by ES-sun2.lg-es (4.1/SMI-4.1) id AA11409; Fri, 12 Aug 94 11:19:26 +0200 Subject: cursor keys in chimera? To: bug-chimera@cs.unlv.edu is there a non-patch way to use the page-up and page-down key instead or together with the "b" and the "space" key? Would be very convenient. Mit freundlichen Gruessen Fritz Heinrichmeyer Fritz Heinrichmeyer FernUniversitaet Hagen FAX: +49 2371/5221 LG Elektronische Schaltungen EMAIL: fritz.heinrichmeyer@fernuni-hagen.de Frauenstuhlweg 31 PHONE: +49 02371/566-243 58644 Iserlohn (Germany) WWW: https://ES-sun2.fernuni-hagen.de ------- Message 11 Received: from igw.merck.com by JIMI.CS.UNLV.EDU id aa29412; 15 Aug 94 13:04 PDT Received: by igw.merck.com (5.65/fma-120691); id AA28192; Mon, 15 Aug 94 16:09:21 -0400 Message-Id: <9408152009.AA28192@igw.merck.com> Date: Mon, 15 Aug 1994 16:01:50 -0400 From: Anthony Starks To: bug-chimera@cs.unlv.edu Subject: gopher bug in 1.60 beta? go to: gopher://gopher.panix.com/ and pick: New York Art Line and chimera 1.60 beta croaks with: - --1 - --1 1 The Panix Gopher Support Team 0'opher.panix.com:70/11/nyart' does not exist!! The generated URL is the bogus: gopher://gopher.panix.com//gopher.panix.com:70/11/nyart If you pick the correct URL: gopher://gopher.panix.com/11/nyart it works fine. Whose fault? chimera or bogus gopher server? ------- Message 12 Received: from ns.tip.net by JIMI.CS.UNLV.EDU id aa20044; 15 Aug 94 23:59 PDT Received: by ns.tip.net (5.57/Ultrix3.0-C) id AA15157; Tue, 16 Aug 94 07:58:58 +0100 Received: from axisab.axis.se by gatekeeper.axis.se with smtp (Smail3.1.28.1 #20) id m0qaIU5-000tkDC; Tue, 16 Aug 94 08:58 GMT-1:00 Received: from axis.se by axisab.axis.se with smtp (Smail3.1.28.1 #1) id m0qaIWQ-000pfsC; Tue, 16 Aug 94 09:01 MET DST Message-Id: To: bug-chimera@cs.unlv.edu Subject: caching and CGI? In-Reply-To: Your message of "Mon, 15 Aug 1994 16:01:50 MET DST." <9408152009.AA28192@igw.merck.com> Date: Tue, 16 Aug 1994 08:58:54 MET DST From: Joergen Haegg Is there any way to bypass the caching and retrying the same URL again? Load (l) should do it, but it removes everything after the question-mark (?). That makes it hard to retry programs with the same argument. (1.54) /Jvrgen. ------- Message 13 Received: from little-charlie.ISRI.UNLV.EDU by JIMI.CS.UNLV.EDU id aa01152; 16 Aug 94 4:31 PDT To: Joergen Haegg cc: bug-chimera@cs.unlv.edu Subject: Re: caching and CGI? In-reply-to: Your message of "Tue, 16 Aug 1994 08:58:54 +0700." Date: Tue, 16 Aug 1994 04:31:32 -0700 From: John Kilburg >Is there any way to bypass the caching and retrying the same URL again? >Load (l) should do it, but it removes everything after the question-mark (?). >That makes it hard to retry programs with the same argument. Reload should work. 1.60 will have better luck with the '?'. -john ------- Message 14 Received: from rock.esc.cam.ac.uk by JIMI.CS.UNLV.EDU id aa25260; 18 Aug 94 9:04 PDT Received: by rock.esc.cam.ac.uk (UK-Smail 3.1.25.1/5) id ; Thu, 18 Aug 94 17:06 BST Message-Id: From: "Dr P.G. Sjoerdsma" Subject: unsubscribe To: bug-chimera@cs.unlv.edu Date: Thu, 18 Aug 94 17:06:50 BST X-Mailer: ELM [version 2.3 PL3] unsubscribe ------- Message 15 Received: from relay2.UU.NET by JIMI.CS.UNLV.EDU id aa02101; 19 Aug 94 12:39 PDT Received: from cygnus.com by relay2.UU.NET with ESMTP id QQxdra22930; Fri, 19 Aug 1994 15:39:05 -0400 Received: from tweedledumb.cygnus.com (tweedledumb.cygnus.com [192.80.44.1]) by cygnus.com (8.6.9/8.6.9) with SMTP id MAA18597; Fri, 19 Aug 1994 12:39:01 -0700 From: Mark Eichin Received: from tweedledumber.cygnus.com by tweedledumb.cygnus.com (4.1/4.7) id AA03109; Fri, 19 Aug 94 15:38:50 EDT Received: from localhost (eichin@localhost) by tweedledumber.cygnus.com (8.6.4/8.6.4) id PAA03463; Fri, 19 Aug 1994 15:38:48 -0400 Date: Fri, 19 Aug 1994 15:38:48 -0400 Message-Id: <199408191938.PAA03463@tweedledumber.cygnus.com> To: bug-chimera@cs.unlv.edu Subject: chimera-1.54 pre-initialized forms problem I was experimenting with the WSPS server (https://sparc57.cs.uiuc.edu:8000/) and found that it attempts to initialize

To submit this form, make sure all of the fields have been They seem to expect that the

> To submit this form, make sure all of the fields have been > >They seem to expect that the