1-Apr-2000 10:51 T.E.Dickey wrote:
>> > 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:
Hmm, you are right
(I had a wrong impression because there was no po/lynx.pot file update,
which is the secondary problem).
> 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
# ------------------------------------------------------------------------------
# 2.8.3pre.1/README.jp | 133 ++++++++++++++++++++++
# CHANGES | 50 +++++++-
# INSTALLATION | 14 --
# LYMessages_en.h | 2
# WWW/Library/Implementation/HTFile.c | 4
# WWW/Library/Implementation/HTFile.h | 2
# WWW/Library/Implementation/HTFormat.c | 12 +-
# WWW/Library/Implementation/HTFormat.h | 6 -
# WWW/Library/Implementation/HTRules.c | 6 -
# WWW/Library/Implementation/HTTCP.c | 26 ++--
# WWW/Library/Implementation/HTTCP.h | 5
# WWW/Library/Implementation/HTVMSUtils.c | 9 -
# WWW/Library/Implementation/www_tcp.h | 2
# config.hin | 3
# lynx.cfg | 178 +++++++++++++++++++++++++-----
# makefile.in | 12 +-
# makefile.msc | 9 +
# scripts/cfg2html.pl | 1
# src/GridText.c | 5
# src/HTFWriter.c | 12 ++
# src/HTInit.c | 2
# src/LYCharUtils.c | 4
# src/LYCurses.c | 6 -
# src/LYCurses.h | 29 +++-
# src/LYForms.c | 8 -
# src/LYHistory.c | 7 -
# src/LYMain.c | 105 +++++------------
# src/LYOptions.c | 6 -
# src/LYReadCFG.c | 34 +++--
# src/LYStrings.c | 12 +-
# src/LYUtils.c | 17 ++
# src/Xsystem.c | 6 -
# userdefs.h | 35 +++++
# 33 files changed, 551 insertions(+), 211 deletions(-)
# ------------------------------------------------------------------------------
Index: CHANGES
--- 2.8.3dev.23/CHANGES Sun Mar 26 19:14:00 2000
+++ 2.8.3pre.1/CHANGES Fri Mar 31 16:33:40 2000
@@ -1,6 +1,50 @@
Changes since Lynx 2.8 release
===============================================================================
+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