lynx-dev
[Top][All Lists]
Advanced

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

Re: lynx-dev lynx2.8.2pre.11 (patch)


From: Leonid Pauzner
Subject: Re: lynx-dev lynx2.8.2pre.11 (patch)
Date: Thu, 3 Jun 1999 15:13:24 +0400 (MSD)

* tweaks for documentation.
* fix back-slashes convertion for DOSPATH systems when expanding ~ to local
  path (mostly affect information screen).



diff -u old/installa ./installa
--- old/installa        Tue May 25 10:13:02 1999
+++ ./installa  Thu Jun  3 14:18:16 1999
@@ -346,6 +346,7 @@

   --enable-libjs                       (define EXP_LIBJS)
        Disabled by default; used for ifdef'ing JavaScript interface.
+        Currently dummy: no JavaScript support implemented in Lynx yet.

   --enable-nls
        use Native Language Support (i.e., gettext).
@@ -356,7 +357,8 @@

   --enable-prettysrc                   (define USE_PSRC)
        Use this option to compile-in support for colorizing the source
-       view of HTML pages.
+       view of HTML pages.  If compiled-in, new source view mode available
+       with -prettysrc command line option.

   --enable-source-cache                        (define SOURCE_CACHE)
        Use this option to compile-in support for caching HTML pages locally,

diff -u old/lynx.hlp ./lynx.hlp
--- old/lynx.hlp        Sat May 29 20:27:26 1999
+++ ./lynx.hlp  Thu Jun  3 13:47:20 1999
@@ -262,7 +262,7 @@
        force numbering of links.

   -partial
-       display partial pages while downloading.
+       toggles display partial pages while downloading.

   -partial_thres=NUMBER
        number of lines to render before repainting display
diff -u old/lynx.man ./lynx.man
--- old/lynx.man        Mon May 31 07:16:06 1999
+++ ./lynx.man  Thu Jun  3 13:47:30 1999
@@ -296,7 +296,7 @@
 force numbering of links.
 .TP
 .B -partial
-display partial pages while downloading.
+toggles display partial pages while downloading.
 .TP
 .B partial_thres\fR=\fINUMBER
 number of lines to render before repainting display
diff -u old/lyutils.c ./lyutils.c
--- old/lyutils.c       Sat May 29 20:27:26 1999
+++ ./lyutils.c Thu Jun  3 14:03:32 1999
@@ -4028,7 +4028,7 @@
            /*
             *  On Unix, convert '~' to Home_Dir().
             */
-           StrAllocCat(*AllocatedString, Home_Dir());
+           StrAllocCat(*AllocatedString, wwwName(Home_Dir()));
            if ((cp = strchr(old_string, '/')) != NULL) {
                /*
                 *  Append rest of path, if present, skipping "user" if
@@ -4233,11 +4233,7 @@
             *  Has a Home_Dir() reference.  Handle it
             *  as if there weren't a lead slash. - FM
             */
-#ifdef VMS
-           StrAllocCat(*AllocatedString, HTVMS_wwwName((char *)Home_Dir()));
-#else
-           StrAllocCat(*AllocatedString, Home_Dir());
-#endif /* VMS */
+           StrAllocCat(*AllocatedString, wwwName(Home_Dir()));
            if ((cp = strchr((old_string + 1), '/')) != NULL) {
                /*
                 *  Append rest of path, if present, skipping "user" if

diff -u old/sgml.htm ./sgml.htm
--- old/sgml.htm        Mon May 31 07:16:06 1999
+++ ./sgml.htm  Thu Jun  3 13:49:08 1999
@@ -38,7 +38,6 @@
 # The contents of this table are drawn from various sources, and
 # are in the public domain.
 #
-</pre>
 <!-- Changes:
 +   {"euro",    0x20AC},  /* EURO SIGN                                     */
     {"loz",     0x25CA},  /* LOZENGE                                       */

diff -u old/unicode.htm ./unicode.htm
--- old/unicode.htm     Wed May  5 17:34:00 1999
+++ ./unicode.htm       Thu Jun  3 13:48:46 1999
@@ -13,7 +13,6 @@

 original comment:

-<pre>
 # Author: John Cowan &lt;address@hidden&gt;
 # Date: 25 July 1997
 #
@@ -39,7 +38,6 @@
 # The contents of this table are drawn from various sources, and
 # are in the public domain.
 #
-</pre>
 <!-- Changes:
 +   {"euro",    0x20AC},  /* EURO SIGN                                     */




reply via email to

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