lynx-dev
[Top][All Lists]
Advanced

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

Re: lynx-dev lynx2.8.1pre.8 : patch


From: Philip Webb
Subject: Re: lynx-dev lynx2.8.1pre.8 : patch
Date: Mon, 5 Oct 1998 09:48:23 -0400 (EDT)

981004 Leonid Pauzner wrote: 
> From: Philip Webb <address@hidden>
>>   (a) defaults need to be stated for `verbose' & `KB';
>>   (b) GOTOBUFFER & JUMPBUFFER should default to TRUE;
>>   (c) QUIT_DEFAULT_YES should default to FALSE
> Most of commented out declarations in lynx.cfg correspond to default value,
> send a patch if no.
 
patches to  userdefs.h  &  lynx.cfg  are below.
reasons: verbose images are described as "extremely useful" in  userdefs.h ;
         the basic default for quitting should be the safer option;
         the default when KB is not defined needs stating in  lynx.cfg ;
         showing the previous entry reminds users of the recall facility.

*** userdefs.old Thu Oct  1 23:28:54 1998
--- userdefs.new Mon Oct  5 09:30:21 1998
***************
*** 476,482 ****
   * with the Up-Arrow or Down-Arrow keys after entering the 'g'oto
   * command, whether or not a default is offered.
   */
! #define GOTOBUFFER      FALSE
  
  /*****************************
   * JUMPFILE is the default local file checked for shortcut URLs when
--- 476,482 ----
   * with the Up-Arrow or Down-Arrow keys after entering the 'g'oto
   * command, whether or not a default is offered.
   */
! #define GOTOBUFFER      TRUE
  
  /*****************************
   * JUMPFILE is the default local file checked for shortcut URLs when
***************
*** 514,520 ****
   * jumps files and corresponding key mappings, each will have its own
   * circular buffer.
   */
! #define JUMPBUFFER      FALSE
  
  /********************************
   * If PERMIT_GOTO_FROM_JUMP is defined, then a : or / in a jump target
--- 514,520 ----
   * jumps files and corresponding key mappings, each will have its own
   * circular buffer.
   */
! #define JUMPBUFFER      TRUE
  
  /********************************
   * If PERMIT_GOTO_FROM_JUMP is defined, then a : or / in a jump target
***************
*** 888,894 ****
  *
  * The default defined here can be changed in lynx.cfg.
  */
! #define VERBOSE_IMAGES FALSE
  
  /******************************
   * BOXVERT and BOXHORI control the layout of popup menus.  Set to 0 if your
--- 888,894 ----
  *
  * The default defined here can be changed in lynx.cfg.
  */
! #define VERBOSE_IMAGES TRUE
  
  /******************************
   * BOXVERT and BOXHORI control the layout of popup menus.  Set to 0 if your
***************
*** 1184,1190 ****
   * explicit Y or y to confirm.  The default defined here can be changed
   * in lynx.cfg.
   */
! #define QUIT_DEFAULT_YES      TRUE
  
  /********************************
   * These definitions specify files created or used in conjunction
--- 1184,1190 ----
   * explicit Y or y to confirm.  The default defined here can be changed
   * in lynx.cfg.
   */
! #define QUIT_DEFAULT_YES      FALSE
  
  /********************************
   * These definitions specify files created or used in conjunction
         
*** lynxcfg.old Wed Sep 30 15:06:48 1998
--- lynxcfg.new Mon Oct  5 09:36:15 1998
***************
*** 69,75 ****
  # buffer of previously entered goto URLs can still be invoked via the
  # Up-Arrow or Down-Arrow keys after entering the 'g'oto command.
  #
! #GOTOBUFFER:FALSE
  
  # JUMP_PROMPT is the default statusline prompt for jumps files (see below).
  # You can change the prompt here from that defined in userdefs.h.  Any
--- 69,75 ----
  # buffer of previously entered goto URLs can still be invoked via the
  # Up-Arrow or Down-Arrow keys after entering the 'g'oto command.
  #
! #GOTOBUFFER:TRUE
  
  # JUMP_PROMPT is the default statusline prompt for jumps files (see below).
  # You can change the prompt here from that defined in userdefs.h.  Any
***************
*** 118,124 ****
  # ':' can be used as a target to invoke the goto URL buffer (as if 'g'oto
  # followed by Up-Arrow had been entered).
  #
! #JUMPBUFFER:FALSE
  
  # If SAVE_SPACE is defined, it will be used as a path prefix for the
  # suggested filename in "Save to Disk" operations from the 'p'rint or
--- 118,124 ----
  # ':' can be used as a target to invoke the goto URL buffer (as if 'g'oto
  # followed by Up-Arrow had been entered).
  #
! #JUMPBUFFER:TRUE
  
  # If SAVE_SPACE is defined, it will be used as a path prefix for the
  # suggested filename in "Save to Disk" operations from the 'p'rint or
***************
*** 401,409 ****
  # (0 - wait for complete screen by default).
  #PARTIAL_MIN_LINES:0
  
! # While getting large files, Lynx shows the approximate rate of
! # transfer.  Set this to change the units shown (true for KB/sec,
! # and false for bytes/sec). 
  #SHOW_KB_RATE:TRUE
  
  # The following three definitions set the number of seconds for
--- 401,409 ----
  # (0 - wait for complete screen by default).
  #PARTIAL_MIN_LINES:0
  
! # While getting large files, Lynx shows the approximate rate of transfer.
! # Set this to change the units shown:
! # TRUE for KB/sec or FALSE for bytes/sec: default is TRUE. 
  #SHOW_KB_RATE:TRUE
  
  # The following three definitions set the number of seconds for
***************
*** 453,459 ****
  # are just decorations (button.gif, line.gif) and what images are important.
  #
  # If this option is set here, it will override the setting in userdefs.h.
! #VERBOSE_IMAGES:FALSE
  
  # If BOLD_HEADERS is set to TRUE the HT_BOLD default style will be acted
  # upon for <H1> through <H6> headers.  The compilation default is FALSE
--- 453,459 ----
  # are just decorations (button.gif, line.gif) and what images are important.
  #
  # If this option is set here, it will override the setting in userdefs.h.
! #VERBOSE_IMAGES:TRUE
  
  # If BOLD_HEADERS is set to TRUE the HT_BOLD default style will be acted
  # upon for <H1> through <H6> headers.  The compilation default is FALSE
***************
*** 1208,1214 ****
  # prefer the more conservative action of requiring an explicit Y or y to
  # confirm.  The default defined here will override that in userdefs.h.
  #
! #QUIT_DEFAULT_YES:TRUE
  
  # If HISTORICAL_COMMENTS is TRUE, Lynx will revert to the "Historical"
  # behavior of treating any '>' as a terminator for comments, instead of
--- 1208,1214 ----
  # prefer the more conservative action of requiring an explicit Y or y to
  # confirm.  The default defined here will override that in userdefs.h.
  #
! #QUIT_DEFAULT_YES:FALSE
  
  # If HISTORICAL_COMMENTS is TRUE, Lynx will revert to the "Historical"
  # behavior of treating any '>' as a terminator for comments, instead of

-- 
========================,,============================================
SUPPORT     ___________//___,  Philip Webb : address@hidden
ELECTRIC   /] [] [] [] [] []|  Centre for Urban & Community Studies
TRANSIT    `-O----------O---'  University of Toronto

reply via email to

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