lynx-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

lynx-dev Re: 2.8.1dev.19 typo & lynx.man/lynx.hlp/lynx.cfg fix


From: Leonid Pauzner
Subject: lynx-dev Re: 2.8.1dev.19 typo & lynx.man/lynx.hlp/lynx.cfg fix
Date: Sat, 1 Aug 1998 18:04:16 +0400 (MSD)

Few minore typos and forgotten notes in man/hlp/cfg files fixed here.
I also quote Bela's note on lynx.cfg INCLUDE facility.
Patch against dev19.

LP.



diff -u old/changes ./changes
--- old/changes Fri Jul 31 09:34:40 1998
+++ ./changes   Sat Aug  1 13:08:48 1998
@@ -8,7 +8,7 @@
   with EXP_FORMS_OPTIONS and configured with --enable-forms-options.
 * add option -eat_all_cookies and corresponding config variable
   EAT_ALL_COOKIES (Brian J Pardy <address@hidden>).
-* correct spurious 'Content' string versus newline after X-URL in LYMain.c
+* correct spurious 'Content' string versus newline after X-URL in LYMail.c
   (Bela Lubkin and Larry Virden).
 * updated versions of config.guess and config.sub based on automake 1.3 - TD
 * updated experimental persistent-cookie support based on RP's patch:  Replaced
Only in .: dif
Only in .: help.txt
diff -u old/lynx.cfg ./lynx.cfg
--- old/lynx.cfg        Sat Jul 25 03:01:02 1998
+++ ./lynx.cfg  Sat Aug  1 15:04:52 1998
@@ -2,6 +2,7 @@
 # The default placement for this file is /usr/local/lib/lynx.cfg (Unix)
 #                                     or Lynx_Dir:lynx.cfg (VMS)
 #
+#
 # Definition pairs are of the form  VARIABLE:DEFINITION
 # NO spaces are allowed between the pair items.
 #
@@ -15,6 +16,24 @@
 # All definitions must be flush left and have NO spaces.!!!
 #
 #
+#
+# Starting with Lynx 2.8.1dev.1, the lynx.cfg file has a crude "include"
+# facility.  This means that you can take advantage of the global lynx.cfg
+# while also supplying your own tweaks.
+#
+# You can use a command-line argument (-cfg /where/is/lynx.cfg) or an
+# environment variable (LYNX_CFG=/where/is/lynx.cfg).
+# For instance, put in your .profile or .login:
+#
+#   LYNX_CFG=~/lynx.cfg; export LYNX_CFG   # in .profile for sh/ksh/bash/etc.
+#   setenv LYNX_CFG ~/lynx.cfg             # in .login for [t]csh
+#
+# Then in ~/lynx.cfg:
+#
+#INCLUDE:/usr/local/lib/lynx.cfg
+#       ^^^^^^^^^^^^^^^^^^^^^^^ or whatever's appropriate on your system
+#and now your own tweaks.
+
 # STARTFILE is the default URL if none is specified on the command line
 # or via a WWW_HOME environment variable.
 # note: these files can be remote (http://www.w3.org/default.html)
@@ -735,6 +754,14 @@
 #
 #SET_COOKIES:TRUE

+# If EAT_ALL_COOKIES is set TRUE, and SET_COOKIES is TRUE, lynx will accept
+# all cookies.
+# The default is defined in userdefs.h, and can be overridden here,
+# or in user .lynxrc, or specified with the -eat_all_cookies
+# command line switch.
+#
+#EAT_ALL_COOKIES:FALSE
+
 # VMS:
 #=====
 # The mail command and qualifiers are defined in userdefs.h.  Lynx
diff -u old/lynx.hlp ./lynx.hlp
--- old/lynx.hlp        Fri Jul 31 09:34:40 1998
+++ ./lynx.hlp  Sat Aug  1 13:58:40 1998
@@ -233,6 +233,9 @@
   -number_links
        force numbering of links.

+  -partial
+       display partial pages while downloading.
+
   -pauth=ID:PASSWD
        set authorization ID and password for a protected proxy
        server at startup.  Be sure to protect any script files
@@ -409,8 +412,12 @@
        accept only http URLs (for validation).  Complete security
        restrictions also are implemented.

+  -verbose
+       taggles [LINK], [IMAGE] and [INLINE] comments
+       with filenames of these images.
+
   -version
-       print version information
+       print version information.

   -vikeys
        enable vi-like key movement.
diff -u old/lynx.man ./lynx.man
--- old/lynx.man        Fri Jul 31 09:34:40 1998
+++ ./lynx.man  Sat Aug  1 14:00:16 1998
@@ -282,6 +282,9 @@
 .B -number_links
 force numbering of links.
 .TP
+.B -partial
+display partial pages while downloading.
+.TP
 .B -pauth\fR=\fIID\fR:\fIPASSWD
 set authorization ID and password for a protected proxy
 server at startup.  Be sure to protect any script files
@@ -493,6 +496,9 @@
 .B -validate
 accept only http URLs (for validation).  Complete security
 restrictions also are implemented.
+.TP
+.B -verbose
+taggles [LINK], [IMAGE] and [INLINE] comments with filenames of these images.
 .TP
 .B -version
 print version information.
diff -u old/lynx_use.htm ./lynx_use.htm
--- old/lynx_use.htm    Fri Jul 31 09:34:40 1998
+++ ./lynx_use.htm      Sat Aug  1 14:23:00 1998
@@ -2032,6 +2032,8 @@
                <dd>disable the retrieval status messages.
             <dt><code>-number_links</code>
                <dd>force numbering of links.
+            <dt><code>-partial</code>
+               <dd>display partial pages while downloading.
             <dt><code>-pauth=ID:PW</code>
                <dd>set authorization ID and password for a protected proxy
                    server at startup.  Be sure to protect any script files
@@ -2218,8 +2220,11 @@
             <dt><code>-validate</code>
                <dd>accept only http URLs (for validation).  Complete
                    security restrictions also are implemented.
+            <dt><code>-verbose</code>
+               <dd>taggles [LINK], [IMAGE] and [INLINE] comments
+                   with filenames of these images.
             <dt><code>-version</code>
-               <dd>print version information
+               <dd>print version information.
             <dt><code>-vikeys</code>
                <dd>enable vi-like key movement.
             <dt><code>-width=NUMBER</code>
Only in .: lynx_use.txt
diff -u old/makefile.dos ./makefile.dos
--- old/makefile.dos    Thu Jun  4 16:19:50 1998
+++ ./makefile.dos      Sat Aug  1 12:20:24 1998
@@ -9,7 +9,7 @@
 LYEditmap.o LYCharSets.o LYCharUtils.o LYMap.o LYCookie.o LYExtern.o \
 LYStyle.o LYHash.o

-CFLAGS= $(MCFLAGS) -I. -I.. $(SLANGINC)
+CFLAGS= -DDISP_PARTIAL $(MCFLAGS) -I. -I.. $(SLANGINC)

 CC = gcc
 MCFLAGS = -O3 -DUSE_ZLIB -DUSE_EXTERNALS -DCOLOR_CURSES -DNCURSES 
-DFANCY_CURSES -DACCESS_AUTH -DNO_CUSERID -DNOUSERS -DDOSPATH -DNO_TTYTYPE 
-DNO_UTMP -Ichrtrans -I../WWW/library/implementation -I../curses  
-I../djgpp/tcplib/include -I../djgpp/tcplib/include/tcp
diff -u old/makefile.dsl ./makefile.dsl
--- old/makefile.dsl    Sat Jul 25 03:01:02 1998
+++ ./makefile.dsl      Sat Aug  1 12:19:28 1998
@@ -58,5 +58,5 @@
 LYEditmap.o: LYEditmap.c ../userdefs.h
 LYCharUtils.o: LYCharUtils.c ../userdefs.h
 LYExtern.o: LYExtern.c ../userdefs.h
-LyUtils.o: LYUtils.c ../userdefs.h
+LYUtils.o: LYUtils.c ../userdefs.h
 LYCookie.o: ../userdefs.h
diff -u old/makefile.wsl ./makefile.wsl
--- old/makefile.wsl    Thu May 14 14:01:10 1998
+++ ./makefile.wsl      Sat Aug  1 12:19:42 1998
@@ -58,5 +58,5 @@
 LYEditmap.o: LYEditmap.c ../userdefs.h
 LYCharUtils.o: LYCharUtils.c ../userdefs.h
 LYExtern.o: LYExtern.c ../userdefs.h
-LyUtils.o: LYUtils.c ../userdefs.h
+LYUtils.o: LYUtils.c ../userdefs.h
 LYCookie.o: ../userdefs.h
Only in .: old
Only in .: status.me




reply via email to

[Prev in Thread] Current Thread [Next in Thread]