> > 2000-03-31 (2.8.3pre.1)
> > * remove annoying trailing period from two statusline messages ending with host
> > name ("Looking up host.foo:81." and "Making HTTP connection to foo.bar.") -LP
>
> It seems you lost this item during the integration process
> (just include a note first): I cannot find this code in dev23->pre1
> incremental patch.
I checked the patch against this:
From [EMAIL PROTECTED] Wed Mar 30 12:58:59 2000
Return-Path: <[EMAIL PROTECTED]>
Received: from dfw-smtpin1.email.verio.net ([129.250.38.51]) by
dfw-spool1.email.verio.net (Netscape Messaging Server 4.1) with
ESMTP id FS8K2B01.G8O for <[EMAIL PROTECTED]>; Thu, 30 Mar 2000
12:58:59 +0000
Received: from [192.195.85.203] (helo=roadrunner.sig.net)
by dfw-smtpin1.email.verio.net with esmtp (Exim 3.12 #7)
id 12aeXL-0000kk-00
for [EMAIL PROTECTED]; Thu, 30 Mar 2000 12:58:59 +0000
Received: (from majordom@localhost)
by roadrunner.sig.net (8.10.0/8.10.0) id e2UCkHY28376;
Thu, 30 Mar 2000 06:46:17 -0600 (CST)
X-Authentication-Warning: roadrunner.sig.net: majordom set sender to
[EMAIL PROTECTED] using -f
To: [EMAIL PROTECTED]
Message-Id: <[EMAIL PROTECTED]>
From: "Leonid Pauzner" <[EMAIL PROTECTED]>
Date: Thu, 30 Mar 2000 16:43:47 +0400 (MSD)
X-Mailer: dMail [Demos Mail for DOS v2.07b6]
Subject: lynx-dev (patch) remove "." period from two status messages
Lines: 39
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Sender: [EMAIL PROTECTED]
Precedence: bulk
Reply-To: [EMAIL PROTECTED]
Status: OR
* remove annoying trailing period from two statusline messages
ended with host name ("Looking up host.foo:81." and
"Making HTTP connection to foo.bar.")
diff -u -r LYNX2-8-.D23/lymessag.h LYNX2-8-/lymessag.h
--- LYNX2-8-.D23/lymessag.h Tue Nov 30 19:33:02 1999
+++ LYNX2-8-/lymessag.h Thu Mar 30 16:26:28 2000
@@ -576,7 +576,7 @@
#define CONTENT_TYPE_MSG gettext("Content-type: %s")
#define COMMAND_PROMPT gettext("Command: ")
#define VERSION_SEGMENT gettext(" Version ")
-#define FIRST_SEGMENT gettext(" first.")
+#define FIRST_SEGMENT gettext(" first")
#define GUESSING_SEGMENT gettext(", guessing...")
#define PERMISSIONS_SEGMENT gettext("Permissions for ")
#define SELECT_SEGMENT gettext("Select ")
diff -u -r LYNX2-8-.D23/www/library/implemen/httcp.c
LYNX2-8-/www/library/implemen/httcp.c
--- LYNX2-8-.D23/www/library/implemen/httcp.c Sun Mar 26 19:14:00 2000
+++ LYNX2-8-/www/library/implemen/httcp.c Thu Mar 30 16:32:52 2000
@@ -1471,7 +1471,7 @@
}
FREE(p1);
- HTSprintf0 (&line, gettext("Looking up %s."), host);
+ HTSprintf0 (&line, "%s%s", WWW_FIND_MESSAGE, host);
_HTProgress (line);
status = HTParseInet(soc_in, host);
if (status) {
@@ -1494,7 +1494,7 @@
return status;
}
- HTSprintf0 (&line, gettext("Making %s connection to %s."), protocol,
host);
+ HTSprintf0 (&line, gettext("Making %s connection to %s"), protocol,
host);
_HTProgress (line);
FREE(host);
FREE(line);
--
Thomas E. Dickey
[EMAIL PROTECTED]
http://www.clark.net/pub/dickey