Re: [Lynx-dev] XHTML thwarting

2004-09-17 Thread Bela Lubkin
Tom Dickey wrote: On Fri, 17 Sep 2004, Atsuhito KOHDA wrote: Thanks for your reply. From: Doug Kaufman [EMAIL PROTECTED] Subject: Re: [Lynx-dev] XHTML thwarting Date: Thu, 16 Sep 2004 20:19:49 -0700 (PDT) In lynx one hits \ to see the source of

Re: [Lynx-dev] options pane quirks

2004-09-17 Thread Bela Lubkin
Gisle Vanem wrote: I didn't see any sub-second sleeper, so I added one using select(). It's an error to use select() like this on Windows. Hope other targets allow this (i.e. all fd_set to NULL). Ops, something like this is better. I couldn't test this with djgpp version under Win-XP

Re: [Lynx-dev] justify-elts

2005-01-30 Thread Bela Lubkin
[EMAIL PROTECTED] wrote: 20050129 09:13 -0500, Thomas Dickey Generally it looks nicer, but I've read comments on the topic that claim that makes it less readable. One bug--searches don't allow for the variation in whitespace (something that's been on my to-do list for a while). I find

Re: [Lynx-dev] README.options

2005-05-06 Thread Bela Lubkin
Thorsten Glaser wrote: Bela Lubkin dixit: different reasonable assumption would be that Save options to disk only writes out changes made during the _current_ [O]ptions session. No. It says Save options to disk not Save changes in configuration parametres to disc. My mistake, you're

Re: [Lynx-dev] [PATCH] Improving the appearance of justified text

2005-12-10 Thread Bela Lubkin
Andrew Belov wrote: Here is a minor patch for the EXP_JUSTIFY_ELTS feature. In its current implementation, spaces in justified lines are concentrated near the beginning of each line - this doesn't look neat IMO: Lynx is the text web browser. This is the top level page... The patch

Re: [Lynx-dev] Strange table behaviour with example spam x2 and other browsers

2006-12-08 Thread Bela Lubkin
Rado S wrote: I use lynx as html-filter for mutt. Recently I saw a spam-mail that looked as if it was a stereogram (imagine how surprised I was to see this in spam! ;). After giving up finding the hidden message, I tried other browsers, believing it was designed for some special system.

Re: [Lynx-dev] 2-8-7.pre1 : lynx.cfg re storing sessions

2009-03-19 Thread Bela Lubkin
Date: Wed, 18 Mar 2009 19:47:58 -0400 From: Thomas Dickey dic...@radix.net There's been an INCLUDE in lynx.cfg for several years: 1998-03-18 (2.8.1dev.1) * implement simple 'include' facility for lynx.cfg - BL ... he says, precisely on its 10th birthday ;-} Bela PS: seems like Lynx has

Re: [Lynx-dev] lynx2.8.7pre.5

2009-06-07 Thread Bela Lubkin
Thomas Dickey wrote: * remove Bad HTML warning for buttons outside a form, since those can be inline, according to the HTML 4 DTD -TD I'm not sure any of those warnings are particularly useful. They just disrupt viewing of common web pages. Trying to get a web site to change their ways to

Re: [Lynx-dev] lynx2.8.7pre.5

2009-06-08 Thread Bela Lubkin
Thomas Dickey wrote: On Sun, 7 Jun 2009, Bela Lubkin wrote: Personally I would like to be able to suppress all of them but still have them logged to where LYNXMESSAGES: would retrieve them -- in their expanded (rule-specific) forms. that sounds reasonable... see ftp

Re: [Lynx-dev] lynx2.8.7pre.5

2009-06-11 Thread Bela Lubkin
Thomas Dickey wrote: On Mon, 8 Jun 2009, Bela Lubkin wrote: I would swallow the idiom: if (LYBadHTML(me)) { char *msg = NULL; HTSprintf0(msg, printf-like-args); LYShowBadHTML(msg); FREE(msg); } into something like

Re: [Lynx-dev] [Patch] Lynx won't compile against zlib 1.2.5.1

2011-09-17 Thread Bela Lubkin
Tom Dickey wrote: Nikos Chantziaras wrote: Trying to build Lynx with zlib 1.2.5.1 results in build errors, due to the 'ON' macro of zlib, which conflicts with the one in LYUtils.h. Here's a bug report about it on Gentoo's tracker: https://bugs.gentoo.org/show_bug.cgi?id=383113 A

Re: [Lynx-dev] Transferring page text from lynx to vim

2011-10-03 Thread Bela Lubkin
Thorsten Glaser wrote: Bela Lubkin dixit: ${@-/dev/stdin}POSIX shell syntax for This script's arguments, or if none, /dev/stdin (standard input) You want ${@:-/dev/stdin} with the double quotes and the colon. (Yes, that's POSIX.) I agree about the quotes

Re: [Lynx-dev] Transferring page text from lynx to vim

2011-10-03 Thread Bela Lubkin
Graham Lawrence wrote: In lynx, I google my question, choose the response that speaks to my level of expertise and either copy and paste some text from lynx to vim or in xterm issue the command lynx -dump url file then in vim I do :r file My most recent discovery in vim is :map and so I

Re: [Lynx-dev] Invoking a lynx script

2011-10-10 Thread Bela Lubkin
Graham Lawrence wrote directly to me: Having 2 macros, one lynx and one vim, would be fine, except the only way I've found to invoke a lynx macro is by a separate invocation of lynx, as xterm -g 120x54 -e lynx -cmd_log=/path/to/script url so its just like lynx -dump, you have to know the url

Re: [Lynx-dev] Invoking a lynx script

2011-10-10 Thread Bela Lubkin
Thomas Dickey wrote: On Mon, 10 Oct 2011, Bela Lubkin wrote: You might use that to advantage, e.g. adding -width 1 so that paragraphs are inserted without line breaks (then vim's :set textwidth= wrapping will work). Slight bug there: Lynx has a line length limit of 1014 chars (from

Re: [Lynx-dev] Invoking a lynx script

2011-10-10 Thread Bela Lubkin
Thomas Dickey wrote: BL You might use that to advantage, e.g. adding -width 1 so that BL paragraphs are inserted without line breaks (then vim's :set textwidth= BL wrapping will work). Slight bug there: Lynx has a line length limit of BL 1014 chars (from testing); paragraphs longer than that

Re: [Lynx-dev] Invoking a lynx script

2011-10-10 Thread Bela Lubkin
Thomas Dickey wrote: On Mon, 10 Oct 2011, Bela Lubkin wrote: So for my original purpose (avoiding buffer-size-imposed line wrap in -dump output) it might be better to kludge it. Add a -dont_wrap flag (following the example of -dont_wrap_pre). When inserting a line break due to running

Re: [Lynx-dev] Invoking a lynx script

2011-10-10 Thread Bela Lubkin
Graham Lawrence wrote: Bela, I received your response asking that I post my question to the list rather than to you personally. I took that as an indication that emailing you directly was undesirable. So I did not respond to it explicitly, only implicitly, by posting my question to the list

Re: [Lynx-dev] Some links not recognized on m.facebook.com

2016-05-06 Thread Bela Lubkin
Jude DaShiell wrote: > I changed the user-agent to w3m and encoding to none and did log into > m.facebook.com but the page is a mess links inaccurately labeled and > search for groups so far as I can tell doesn't appear on that page. Jude, Hit control-V to turn on "tag soup" alternative HTML

Re: [Lynx-dev] Still Cannot Play mp3s from LYNX?

2018-05-30 Thread Bela Lubkin
Chime Hart wrote: > Well, Jude, your request certainly changed from trying to play in alsaplayer > to > now, says > "no space left on device" > And I certainly have room. Thanks again I've seen a bunch of discussion since this, which I think might be going in the wrong direction: Chime, please

Re: [Lynx-dev] wikipedia reload problem

2018-04-19 Thread Bela Lubkin
> Wow, happens here too: > > - open https://fr.wikipedia.org/wiki/Wikip%C3%A9dia:Accueil_principal > - click on any link > - go back > - click on the same link again When you and iohann.f...@protonmail.com say 'not returned to the site', can you be much more detailed about what

[Lynx-dev] "invalid cookie path", Re: redirection loop

2018-10-23 Thread Bela Lubkin
Sylvain Bertrand wrote: > Regarding the "invalid cookie paths": > > From the trace file, I have the following request-uri: > GET > /search?ie=ISO-8859-1=fr=hp=tintin=Recherche+Google=1 > HTTP/1.1 > > In server response, I have 2 cookies with an "invalid path attribute": > /complete/search >

Re: [Lynx-dev] "invalid cookie path", Re: redirection loop

2018-10-29 Thread Bela Lubkin
Thomas Dickey wrote: > On Tue, Oct 23, 2018 at 01:59:39AM -0700, Bela Lubkin wrote: > > RFC 6265 obsoleted RFC 2965 in 2011; it says: > > sure - that's > > https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=820485 > > If you have time to work on this, I'll review/etc

Re: [Lynx-dev] "invalid cookie path", Re: redirection loop

2018-10-29 Thread Bela Lubkin
Jude DaShiell wrote: > I was told the only machines google cookies will work on and the only > machines google is interested in are windows machines. We do have power > users running lynx on windows, but I suspect for those of us using Mac's > and Linux those are just best disabled. Whoever

Re: [Lynx-dev] Year 2038 problem in handling cookie date

2018-10-31 Thread Bela Lubkin
Thorsten Glaser wrote: > patak...@users.sourceforge.jp dixit: > > >Lynx crashes when accessing the site with 32-bit system. > >I wrote an ad-hoc patch to prevent the crash. > > There are more bugs, for example: > > 996 if ((long) Start < 0) > > This will cause truncation, already on

Re: [Lynx-dev] Strange behavior

2019-02-14 Thread Bela Lubkin
Tom Masterson wrote: > I am using Ubuntu 18.04 (Bionic Beaver) and among other things I am > running brltty as I am blind. When running lynx under a virtual console > (say tty3) if I switch to another console using ctrl-alt-function > (ctrl-alt-f4) and then switch back to lynx the computer has

Re: [Lynx-dev] Strange behavior

2019-02-17 Thread Bela Lubkin
I'm quoting this whole message body as I don't know if Tom is a lynx-dev subscriber (though perhaps he must be, because the list probably only allows inbound messages from subscribers?) Anyway, I'm a little worried that he went completely silent after several suggestions were offered. Mouse

Re: [Lynx-dev] Cannot open: https://m.medicalxpress.com/page2.html

2019-08-14 Thread Bela Lubkin
Ian Collier wrote: > The link is written (some syntax elided): > > load more > > Most other browsers, including links, don't copy this dot into the URL > when following the link, so they don't experience a problem. > > Is Lynx correct to copy the dot? I think not. According to RFC 1808 > in

Re: [Lynx-dev] Cannot open: https://m.medicalxpress.com/page2.html

2019-08-14 Thread Bela Lubkin
Mouse wrote: > 2396 does specifically say that > >URI that are hierarchical in nature use the slash "/" character for >separating hierarchical components. For some file systems, a "/" >character (used to denote the hierarchical structure of a URI) is the >delimiter used to

Re: [Lynx-dev] lynx and amazon?

2019-08-27 Thread Bela Lubkin
Ian Collier wrote: > On Tue, Aug 27, 2019 at 04:55:38PM +, Thorsten Glaser wrote: > > Ian Collier dixit: > > >and moreover, the later 2039 ones caused the earlier 2036 ones to be > > >deleted. > > > Oh, do you have a system with 32-bit time_t? > > Well... no. This is x86_64 and the

Re: [Lynx-dev] "Correct" tab-stops?

2019-07-23 Thread Bela Lubkin
Thomas Dickey wrote: > By the way, Bela's assumptions do not work for "all" VT100-wannabe's > (e.g., KDE konsole), as discussed here: > > https://lists.gnu.org/archive/html/bug-ncurses/2019-05/msg00030.html > > But that's a bug report for someone else... I don't actually see how that ncurses

Re: [Lynx-dev] reaching gmail in basic html?

2019-11-08 Thread Bela Lubkin
Tim Chase wrote: > At least according to Google's support page > > https://support.google.com/mail/answer/15049?hl=en > > you should be able to go to this link > > https://mail.google.com/mail/u/0/h/1pq68r75kzvdr/?v%3Dlui > > to force the HTML/low-bandwidth mode (hopefully a little easier than >

Re: [Lynx-dev] reaching gmail in basic html?

2019-11-11 Thread Bela Lubkin
Karen Lewellen wrote: > In October 2018, a senior staff member at google stated that since only > crooks turned off JavaScript, Google was starting to use their own > proprietary edition which among other things is supposed to detect the > presence of adaptive technology for recaptcha, and track

Re: [Lynx-dev] changing lynx default homepage from the comand line?

2019-11-19 Thread Bela Lubkin
Karen Lewellen wrote: > folks, > i. do. not. want. to. make. this. change. in lynx.cfg...at all! > How hard is that to understand? > I asked for *command line* not all the ways I might screw up another > person's setup. You have received a variety of alternative suggestions because there IS

Re: [Lynx-dev] small issue with filenames and lynx

2019-10-03 Thread Bela Lubkin
Thorsten Glaser wrote: > Karl Anliot dixit: > > >This is lynx's error when it encounters a filename like "important: > test.htm" > > In the place where lynx expects an URL, a filename is not the > correct thing to give to it, even if it, as a convenience (I > hate Firefox for not offering the

Re: [Lynx-dev] Viewing local directories

2020-03-09 Thread Bela Lubkin
Klaus-Peter Wegge wrote: > UNIX only: Please use > LIST_FORMAT in lynx.cfg to configure the desired presentation format. > Useful for adjustment the length to the length of a braille display. > Examples are availabel in lynx.cfg Oh yeah, that does exist! As far as I can tell from the source,

Re: [Lynx-dev] Viewing local directories

2020-03-07 Thread Bela Lubkin
dan d. wrote: > In past, years ago, I was able to use lynx to view the items in a > directory. > > This included, as I recall, only the name of a file/directory on each > line with perhaps its size if a nondirectory entry > . > > Now this is a typical line: > > -rwxr-xr-x1 dandunfe staff

Re: [Lynx-dev] Gemini Support?

2020-09-29 Thread Bela Lubkin
Visiblink wrote: > I browse a number of gopher sites, but a lot of the people who were once > there are now using the gemini protocol (see > https://gemini.circumlunar.space/ for information). > > Is there any possibility that gemini support might be added to lynx in > the future? One of the best

Re: [Lynx-dev] Gemini Support?

2020-09-29 Thread Bela Lubkin
Travis Siegel wrote: > Doesn't the https protocol already handle client certificates? Or does > lynx not verify the certificates? gemini: is not https:, it's its own protocol. And it has different semantics about client certs, which is what I meant by Lynx needing to know how to manage them.

Re: [Lynx-dev] Chinese characters are not displayed when using charset gb2312/euc-cn

2021-06-30 Thread Bela Lubkin
Thomas Dickey wrote: > see > > https://github.com/ThomasDickey/lynx-snapshots/commit/5111b5306b278cecb0b66166eb8338072fc713c6 In INSTALLATION, --disable-japanese-utf8 doc is backward (says it enables the feature). I think these things would better be described something like: - disable

Re: [Lynx-dev] More or less (was Re: Where does -dump output go?)

2021-02-14 Thread Bela Lubkin
`less` was a major improvement of `more` at a time when `more` was being maintained by someone at Berkeley who wasn't interested in UI improvements. Its tagline 'less is more' is more or less snarky... Later, apparently someone else took over `more` maintenance and added many of the same

Re: [Lynx-dev] Google vs redirection limit [was Re: what controls the redirect limit?]

2021-09-09 Thread Bela Lubkin
mo...@rodents-montreal.org wrote: > 302 to https://mail.google.com/mail/ > 302 to https://mail.google.com/mail/u/0/ > 302 to https://mail.google.com/mail/u/0/?ui=html=g > 302 to https://mail.google.com/mail/u/0/h/redacted/?zy=g=1 For those without the ability to change Lynx source or the

Re: [Lynx-dev] reaching google in basic html with lynx.

2021-10-16 Thread Bela Lubkin
> On Wed, 13 Oct 2021, Karen Lewellen wrote: > > > > Sharing this, in case it helps others. > > > > -- Forwarded message -- > > Date: Tue, 12 Oct 2021 19:51:07 + > > > > https://mail.google.com/mail/u/0/h/1pq68r75kzvdr/?v%3Dlui Zachary Lee Andrews replied: > Am I missing

Re: [Lynx-dev] How to Set vi as editor

2021-12-09 Thread Bela Lubkin
[ completely irrelevant rambling here, move along... ] Rudy Vener wrote: > In my .profile I have: > export EDIT=/usr/bin/vi > export EDITOR=/usr/bin/vi > export FCEDIT=/usr/bin/vi > export VISUAL=/usr/bin/vi > > Note that some of the above environmental variables are specific to > ksh, my

Re: [Lynx-dev] the frustration of this kind of advice, was about user agent headers

2021-12-02 Thread Bela Lubkin
If you log in and out daily then this wouldn't have helped. The only situation in which 'rehash' would have helped is if some admin moved where the lynx executable was, while you were currently logged in. When the shell successfully runs a program, it keeps a note about where it found it; if the

Re: [Lynx-dev] PASTE on second try causes core dump and abort

2022-02-17 Thread Bela Lubkin
> I have exported RL_CLCOPY_CMD and RL_PASTE_CMD in my .bashrc and have them > directed at 'xsel -i' and 'xsel -o' accordingly. Although the problem > persists even when I use xclip instead of xsel and also no matter if I > direct the to the primary or the clipboard. > > I have added the following

Re: [Lynx-dev] downloading compressed pages

2022-02-23 Thread Bela Lubkin
russell bell wrote: > In the past, when a site gzipped its articles for download, > lynx saved them gzipped. lynx stopped, but I notice that in the /tmp > directory the gzipped ones are gzipped there. That's okay with me. > I notice that nytimes.com gzips most of its articles. Few

Re: [Lynx-dev] lynx word bleeding?

2022-01-31 Thread Bela Lubkin
Karen Lewellen wrote: > Honestly? > Well I must have an advantage using a DOS screen reading program arctic > business vision to come here, as I have never encountered the slight > character overlay I am getting now, and it does not show up everywhere > either. > the control-l solution is working

Re: [Lynx-dev] Handling sites that don't send content-type (was: lynx word bleeding?)

2022-02-11 Thread Bela Lubkin
Thomas Dickey wrote: > > In #1, the system setting will override STARTFILE; you'll only see > > abc.def if the system didn't specify STARTFILE. In #2, your setting > > always overrides. Either could be what you mean, you just have to know > > what it is that you mean to mean... > > I'd regard

Re: [Lynx-dev] Handling sites that don't send content-type (was: lynx word bleeding?)

2022-02-09 Thread Bela Lubkin
It's easy to use your own lynx.cfg while still keeping up with system changes. This is documented near the top of the standard lynx.cfg; but with an important omission. lynx.cfg has an 'include' facility. So all you need to do is write: INCLUDE:/etc/lynx-cur/lynx.cfg

Re: [Lynx-dev] latest mac edition of Lynx?

2022-06-23 Thread Bela Lubkin
Karen Lewellen wrote: > So again, that you are not actively engaged in running Lynx on your mac > with a braille display means that your contribution is not going to help > Andrew. Karen, You didn't mention braille at all in the original question. You can hardly fault Travis for not having

Re: [Lynx-dev] latest mac edition of Lynx?

2022-06-24 Thread Bela Lubkin
> The 2011 reference has absolutely nothing to do with my question. > That you consider my comment about a co-worker using a 2011 macbook pro to > be part of the question illustrates how much travesty this off course. In your initial question you mentioned a person on a mailing list. In a later

Re: [Lynx-dev] loading incorrect webpage

2022-11-15 Thread Bela Lubkin
"jindam, vani" wrote: > probably meaningless, but urlencode was also giving incorrect results for: > > $ urlencode > https://en.wikipedia.org/w/index.php?title=User:Jindam_vani/zandbak=history > > but it shows correct result: > > $ urlencode >

Re: [Lynx-dev] a solution for this problem?

2023-01-14 Thread Bela Lubkin
Karen Lewellen wrote: > However, when I hit enter on this link, I get a badly formed address > error...which I admit is new. Can you find out what that badly formed address link is? I'm not sure which of these might work: - `lynx -source the_problem_page > problem-page.html`, then examine that

Re: [Lynx-dev] urls longer than 1024 characters

2023-01-27 Thread Bela Lubkin
Jude DaShiell wrote: > Would it be possible for lynx to count the characters in an url and if the > url is longer than 1024 characters offer to send the long url to an url > shortening service and then catch the shortened url the service sent back > and then open that shortened url instead? As

Re: [Lynx-dev] How stable is 2.9.0?

2022-11-04 Thread Bela Lubkin
> > You should leap forward and then report any issues, so that they will > > cease being issues. > > My experience has been that my idea of an issue doesn't always line up > with a software project's idea of an issue. (But I do expect that the > two will line up better in lynx's case.) > > The

Re: [Lynx-dev] How stable is 2.9.0?

2022-11-02 Thread Bela Lubkin
Mouse wrote: > The lynx I've been using - 2.8, from 1999 - started exhibiting a > disturbing failure mode, today: I got "lynx in free(): warning: chunk > is already free.", indicating a memory-management bug, and, in at least > one session, got a coredump (ditto, but even more so). > > I could

Re: [Lynx-dev] A VCS for lynx

2023-02-17 Thread Bela Lubkin
Thomas Dickey wrote: > On Fri, Feb 17, 2023 at 08:08:12PM +, Thorsten Glaser wrote: > > > These are called "RCS IDs", but TTBOMK lynx is developed in PRCS. > > was - > https://invisible-island.net/lynx/lynx-develop.html#patches The referenced doc says: | the user community views each

Re: [Lynx-dev] Ot: how email size is established?

2023-05-23 Thread Bela Lubkin
Karen Lewellen wrote: > Oh its quite likely our administrator made changes, even without realizing > the harm caused. > The other end is not getting the communications at all, instead I am told > that my email cannot leave here, even if it could leave here previously. Over the years, email has

Re: [Lynx-dev] An error with temporary file

2024-01-27 Thread Bela Lubkin
Riku Virtanen wrote: > Data transfer complete > /usr/bin/brotli -j -d /tmp/lynx6fQBBD/L1617-7134TMP.html.br > Alert!: Error uncompressing temporary file! I tried to reproduce this. Had to custom-build Lynx with `./configure --without-brotli`, otherwise it used library code rather than the

Re: [Lynx-dev] lynx.cfg - mime types - viewer for text terminal audio player mpg123

2024-04-03 Thread Bela Lubkin
Klaus-Peter Wegge wrote: > It's in the PATH and full path spec doesn't make a difference. > But the change in .mailcap is a work arround. > audio/mpeg; mpg123 -v %s > > The VIEWER definition seems to check for the > DISPLAY env. It's set to DISPLAY=0 > May be there is something wrong with the