[Lynx-dev] non-ascii characters in URLs

2012-01-02 Thread Klaus-Peter Wegge
Dear Lynx Team, URLs with non-ascii characers are getting more popular in Europe. For example: http://www.hörkomm.de (German site). lynx releases (2.8.6 and 2.8.7) cannot deal with such URLs on my suse or debian mashines, while various grafic browsers and even LINKS on the same systems can hande

Re: [Lynx-dev] non-ascii characters in URLs

2012-01-03 Thread Klaus-Peter Wegge
requests also in the trace file. Kind regards, Klaus On Mon, 2 Jan 2012, Thomas Dickey wrote: On Mon, Jan 02, 2012 at 08:21:39PM +0100, Klaus-Peter Wegge wrote: Dear Lynx Team, URLs with non-ascii characers are getting more popular in Europe. For example: http://www.hörkomm.de (German site). well

Re: [Lynx-dev] non-ascii characters in URLs

2012-01-03 Thread Klaus-Peter Wegge
ö or & etc. are allowed characters in an URL. Sorry, but I don't understand your solution to access the www.hörkomm.de site with lynx? Thanks, Klaus On Tue, 3 Jan 2012, Thorsten Glaser wrote: Klaus-Peter Wegge dixit: The w3c validator says this file is valid html. The HTML may

[Lynx-dev] non-html start URL

2012-03-11 Thread Klaus-Peter Wegge
Lynx experts, I'm using lynx as URL viewer in the alpine mailer on debian linux in a simple text console: url-viewers="/usr/bin/lynx _URL_" This works fine with html URLs in the mail. But, as soon as the link in the mail points to a pdf file, lynx tries to start /usr/bin/xpdf, which, of course,

Re: [Lynx-dev] non-html start URL

2012-03-11 Thread Klaus-Peter Wegge
behave in the same manner. Thanks Klaus On Sun, 11 Mar 2012, Thomas Dickey wrote: On Sun, Mar 11, 2012 at 06:51:12PM +, Thorsten Glaser wrote: Klaus-Peter Wegge dixit: I'm using lynx as URL viewer in the alpine mailer on debian

Re: [Lynx-dev] Generalities Question

2012-08-03 Thread Klaus-Peter Wegge
Dear lynx, Under Linux text terminal, I'm using the following tools to convert files into html and then reading the content with lynx: MS-Word: .doc .DOC (wvHtml) MS-Word: .docx .DOCX (xsltproc docx2txt.xsl) Ritch Text Format: .rtf (ted) Portable Document Format: .pdf .PDF (pdftohtml) MS-excel: .

Re: [Lynx-dev] some customization help

2012-08-14 Thread Klaus-Peter Wegge
Hello, may be, defining a new printer can help you to retrieve the additional info like current date/time. (See lynx.cfg, search for "printers"). You can write a script as printer command, which can modify the downloaded text before showing/printing/saving... Examples are given in lynx.cfg. The s

Re: [Lynx-dev] javascript engine specification

2012-09-29 Thread Klaus-Peter Wegge
Henry and all, may I also ask for a copy of the BarryScript package to my PM? May be there are some good ideas in it even if it might be outdated. I think that lynx can benefit from a partial JavaScript support in the following situations which are at the moment hurting limits of lynx: - javascri

[Lynx-dev] unsupported URL scheme

2013-05-13 Thread Klaus-Peter Wegge
Dear Lynx Dev, I've problems to access the following link with lynx (various Linux systems, old and new versions e.g. 2.8.8.Dev5 debian): http://www.cenelec.eu/dyn/www/f?p=104:5:256312547600370";>CENELEC members alternative spelling: http://www.cenelec.eu/dyn/www/f%3Fp%3D104:5:256312547600370";

Re: [Lynx-dev] unsupported URL scheme

2013-05-13 Thread Klaus-Peter Wegge
ice, as archive address hiding may not work. --- Dipl.-Inform. Klaus-Peter Wegge Siemens AG Corporate Technology, CT RTC SYE UID-DE Accessibility Competence Center Fürstenallee 11 33102 Paderborn, Germany Tel: +49 5251 60-6144 Fax: +49 5251 60-6139 Mob: +49 173 7019577 Mail: we...@mail.upb.de,

Re: [Lynx-dev] unsupported URL scheme

2013-05-15 Thread Klaus-Peter Wegge
Dear Lynx Team, interesting observation: lynx termlet for Mac OSX 2.8.7 can deal with the discussed ETSI link. I don't understand why? Ideas? Best, Klaus On Mon, 13 May 2013, Klaus-Peter Wegge wrote: Dear Lynx Team, many thanks to all for these quick and good answers. I was reall

Re: [Lynx-dev] Lynx and character set

2013-07-14 Thread Klaus-Peter Wegge
quick remark: when setting lynx to utf8, current versions packaged with debian or ubuntu have problems in form fields and text entry fields. As soon as an UTF8 character is used, the cursor is positioned one position to far to the right. And it is getting funny when trying to correct a text field

[Lynx-dev] Name suggestion in print menue - lynx2.8.8dev.12

2014-01-09 Thread Klaus-Peter Wegge
Dear Lynx experts, with the update to Debian 6 (wheezy) I've updated automatically to lynx 2.8.8.dev.12 . Besides some improvements I have found the following problem in the print menue: When printing to a local file (first entry) the suffix of the suggested file name is now "*.htm" and no longer

Re: [Lynx-dev] [bug] hard limit, despite -width

2015-04-03 Thread Klaus-Peter Wegge
Q: are the fixed-size buffers also the reason why lynx cannot deal with very long URLs (e.g. used in icloud)? The limit seems to be 512 characters, but I'm not sure. I'm approaching more and more web sites with very long URLs which are not usable with lynx. The problem appears for example with lyn

[Lynx-dev] Problem using XING - linux

2016-01-15 Thread Klaus-Peter Wegge
Hi, lynx 2.8.9dev1 (and other versions) on current Ubuntu or Debian systems cannot display https://www.xing.com . The command lynx https://www.xing.com results in an empty screen and the message: A'll cookies for domain 'www.xing.com' allowed. No key strokes are excepted now. Only ctrl-c helps.

Re: [Lynx-dev] Playing mp3s From within Lynx?

2018-05-25 Thread Klaus-Peter Wegge
May be you should check .lynx.cfg in your home directory. Specially the viewer entry. Example: VIEWER:audio/mpeg:mpg123 -v %s Best, Klaus On Thu, 24 May 2018, Chime Hart wrote: Many years ago these items were setup for me, but after several re-installs, well. First, I would like to once again

Re: [Lynx-dev] Displaying a pdf live on the Fly?

2019-06-04 Thread Klaus-Peter Wegge
Hi, I'm reading most document formats with the help auf lynx and various format2html tools like pdftohtml Here is short version of my viewer script: --- #!/bin/sh dir=/tmp/$USER/viewer.$$ mkdir -p $dir doc=$1 case $doc in *.pdf) file=`basename "$doc" .pdf`; echo Portable Document

Re: [Lynx-dev] Displaying a pdf live on the Fly?

2019-06-04 Thread Klaus-Peter Wegge
). Klaus On Tue, 4 Jun 2019, Steffen Nurpmeso wrote: Klaus-Peter Wegge wrote in : |On Tue, 4 Jun 2019, Steffen Nurpmeso wrote: |> russellb...@gmail.com wrote in <201906040449.x544niog005...@randytool.ne\ |> t>: |>| I use: |>| |>| pdftotext -layout %s - | utf8trans UTFtoASCI

Re: [Lynx-dev] Viewing local directories

2020-03-08 Thread Klaus-Peter Wegge
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 Klaus On Sat, 7 Mar 2020, Chime Hart wrote: Well Dan, I can type lynx followed by a period and vie

[Lynx-dev] shebang URL hash - #!

2021-10-27 Thread Klaus-Peter Wegge
Hallo lynx-dev, if and how can lynx deal with so called shebang URLs? #! is called the shebang URL hash, used to hint to search engines that this site is using Ajax to display another page. Examle: https://docs.din.de/din-documents/ui/#!/doc/default/9637d154-ffae-4b40-97c1-7274b6faa837?p=din-em

Re: [Lynx-dev] shebang URL hash - #!

2021-10-27 Thread Klaus-Peter Wegge
and many european national standards organisation. Best, Klaus On Wed, 27 Oct 2021, David Woolley wrote: On 27/10/2021 09:30, Klaus-Peter Wegge wrote: if and how can lynx deal with so called shebang URLs? #! is called the shebang URL hash, used to hint to search engines that this site is using

[Lynx-dev] Missing form tag attribute

2022-05-28 Thread Klaus-Peter Wegge
Dear Lynx dev team, # Missing Form Tag Attribute HTML5's button [formaction attribute] https://www.w3schools.com/tags/att_button_formaction.asp allows for buttons to point to another endpoint different than what main form specifies. This way it is possible to avoid having lots of forms for simpl

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

2024-03-31 Thread Klaus-Peter Wegge
Dear lynx experts, I want to play mp3 files with the external text terminal player mpg123. This does no longer wirk with my change from Debian to Ubuntu. I'm using: lynx 2.9.0dev.10 - Ubuntu 22.04.3 LTS Extract from .lynx.cfg: # MIME types and viewers! # SUFFIX:.mp3:audio/mpeg VIEWER:audio/mpeg

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

2024-03-31 Thread Klaus-Peter Wegge
thers as described in the comment. May be a hint to $HOME/.mailcap can be also added in .lynx.cfg. Many thanks Klaus On Sun, 31 Mar 2024, Rudy Vener wrote: Check your $HOME/.mailcap file. Rudy On Sun, Mar 31, 2024 at 05:33:48PM +0200, Klaus-Peter Wegge wrote: Dear lynx experts, I want to

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

2024-03-31 Thread Klaus-Peter Wegge
s, Klaus On Sun, 31 Mar 2024, Stef Caunter wrote: sounds like ubuntu can't find your player in $PATH so it falls back to vlc have you tried a full path to the player in your lynx.cfg on ubuntu? On Sun, Mar 31, 2024, 14:24 Klaus-Peter Wegge wrote: Hi, indeed, an entry in $HOME/.mailc