[Lynx-dev] How to fix a website?

2023-04-15 Thread Riku Virtanen
Hi, I tested with Lynx 2.9.0dev5 a Finnish Discrimination Tribunal website. It does not work. Does the current dev12 work, or should I report to the tribunal? What is the exact issue why Lynx does not work with that site. Most of public Finnish websites work with Lynx. Regards, Riku Riku Vi

Re: [Lynx-dev] How to fix a website?

2023-04-15 Thread David Woolley
On 15/04/2023 12:57, Riku Virtanen wrote: I tested with Lynx 2.9.0dev5 a Finnish Discrimination Tribunal website. It does not work. Does the current dev12 work, or should I report to the tribunal? What is the exact issue why Lynx does not work with that site. Most of public Finnish websites wor

[Lynx-dev] The forgotten address

2023-04-15 Thread Riku Virtanen
Hi, In my previous mail, I forgot to put the address: http://yvtltk.fi/fi/ Regards, Riku

Re: [Lynx-dev] The forgotten address

2023-04-15 Thread David Woolley
On 15/04/2023 12:58, Riku Virtanen wrote: In my previous mail, I forgot to put the address: http://yvtltk.fi/fi/ At least as served to Firefox, it seems to be an extreme Ajax page, i.e. there doesn't seem to be any fixed renderable content, but rather it is a javascript application which rea

[Lynx-dev] [PATCH] accept

2023-04-15 Thread Lennart Jablonka
Some XHTML pages declared as using UTF-8 are erroneously taken to be non-UTF-8. The syntax for encoding declarations allows the use of either ' or " for the encoding name. Further, the spec says that the encoding name should be parsed case-insensitively. See

Re: [Lynx-dev] [PATCH] accept

2023-04-15 Thread Mouse
> - flag = !StrNCmp(t, "utf-8", 5); > + flag = !strncasecomp(t, "utf-8", 5); I haven't read the full context here, so I could be a bit off-base, but, surely using strncasecmp (or strncasecomp, whatever that is) is a bit dodgy here? You don't want "utf-8-is-stupid" to be ta

Re: [Lynx-dev] [PATCH] accept

2023-04-15 Thread humm
Quoth Mouse: - flag = !StrNCmp(t, "utf-8", 5); + flag = !strncasecomp(t, "utf-8", 5); I haven't read the full context here, so I could be a bit off-base, but, surely using strncasecmp (or strncasecomp, whatever that is) is a bit dodgy here? You don't want "utf-8-is-