What's causing the addition of garbage symbols, like here (comments by tr (6th & 8th comment(most visible in 8th))): http://www.nezinau.lt/microsoft-lazerines-peles-sugeba-nustebinti#comments Backspace? -- Brain: an apparatus with which we think we think. - A. Bierce
On Thu, Oct 23, 2008 at 02:34:10PM +0300, Tomas R wrote:
What's causing the addition of garbage symbols, like here (comments by tr (6th & 8th comment(most visible in 8th))): http://www.nezinau.lt/microsoft-lazerines-peles-sugeba-nustebinti#comments Backspace?
The page is claimed to be UTF-8, but it contains 6 invalid byte sequences (according to wc). So, there's garbage in the HTML which is interpreted as garbage. Dillo shows it because it is there. If you're asking "did dillo put it there previously when uploading a comment", that's something I can't answer easily -- perhaps capturing the network traffic when uploading will show whether it is in dillo's output; if so, more investigation will be needed to find why. Good luck, f -- Francis Daly francis@daoine.org
Tomas wrote:
What's causing the addition of garbage symbols, like here (comments by tr (6th & 8th comment(most visible in 8th))): http://www.nezinau.lt/microsoft-lazerines-peles-sugeba-nustebinti#comments Backspace?
Looks like it. I pasted a random chunk of text ending in a non-ASCII character into a textarea with a form submitting as UTF-8. "mink?" became "mink%C5%A1" in the submitted data, which I believe is right. Then I pressed backspace in the textarea, leaving "mink", and submitted again. Now it submits "mink%A1", which is wrong. Input type=text doesn't seem to have the problem. Probably something wrong in fltk's TextEditor, then. I'll see if I can find where it's missing some utf8-awareness.
On Thu, 23 Oct 2008 14:43:09 +0000 "corvid" <corvid@lavabit.com> wrote:
Tomas wrote:
What's causing the addition of garbage symbols, like here (comments by tr (6th & 8th comment(most visible in 8th))): http://www.nezinau.lt/microsoft-lazerines-peles-sugeba-nustebinti#comments Backspace?
Looks like it.
I pasted a random chunk of text ending in a non-ASCII character into a textarea with a form submitting as UTF-8. "mink?" became "mink%C5%A1" in the submitted data, which I believe is right. Then I pressed backspace in the textarea, leaving "mink", and submitted again. Now it submits "mink%A1", which is wrong. Input type=text doesn't seem to have the problem. Probably something wrong in fltk's TextEditor, then. I'll see if I can find where it's missing some utf8-awareness.
Hey you were quick to figure that out :) -- Brain: an apparatus with which we think we think. - A. Bierce
Tomas wrote:
"corvid" <corvid@lavabit.com> wrote:
Tomas wrote:
What's causing the addition of garbage symbols, like here (comments by tr (6th & 8th comment(most visible in 8th))): http://www.nezinau.lt/microsoft-lazerines-peles-sugeba-nustebinti#comments Backspace?
Looks like it.
I pasted a random chunk of text ending in a non-ASCII character into a textarea with a form submitting as UTF-8. "mink?" became "mink%C5%A1" in the submitted data, which I believe is right. Then I pressed backspace in the textarea, leaving "mink", and submitted again. Now it submits "mink%A1", which is wrong. Input type=text doesn't seem to have the problem. Probably something wrong in fltk's TextEditor, then. I'll see if I can find where it's missing some utf8-awareness.
Hey you were quick to figure that out :)
In fltk/src/TextEditor.cxx, you could try replacing the kf_backspace with: int TextEditor::kf_backspace(int, TextEditor* e) { int oldpos = e->insert_position(); if (!e->buffer()->selected() && e->move_left()) e->buffer()->select(e->insert_position(), oldpos); kill_selection(e); e->show_insert_position(); e->maybe_do_callback(); return 1; } Looks like their kf_delete is broken as well...
On Thu, Oct 23, 2008 at 03:41:40PM +0000, corvid wrote:
Tomas wrote:
"corvid" <corvid@lavabit.com> wrote:
Tomas wrote:
What's causing the addition of garbage symbols, like here (comments by tr (6th & 8th comment(most visible in 8th))): http://www.nezinau.lt/microsoft-lazerines-peles-sugeba-nustebinti#comments Backspace?
Looks like it.
I pasted a random chunk of text ending in a non-ASCII character into a textarea with a form submitting as UTF-8. "mink??" became "mink%C5%A1" in the submitted data, which I believe is right. Then I pressed backspace in the textarea, leaving "mink", and submitted again. Now it submits "mink%A1", which is wrong. Input type=text doesn't seem to have the problem. Probably something wrong in fltk's TextEditor, then. I'll see if I can find where it's missing some utf8-awareness.
Hey you were quick to figure that out :)
In fltk/src/TextEditor.cxx, you could try replacing the kf_backspace with:
int TextEditor::kf_backspace(int, TextEditor* e) { int oldpos = e->insert_position(); if (!e->buffer()->selected() && e->move_left()) e->buffer()->select(e->insert_position(), oldpos); kill_selection(e); e->show_insert_position(); e->maybe_do_callback(); return 1; }
Looks like their kf_delete is broken as well...
It'd be great if an FLTK2 STR with patch is made out of this. (Johannes knows what's required. Just user/passwd?) -- Cheers Jorge.-
On Thu, Oct 23, 2008 at 02:14:24PM -0300, Jorge Arellano Cid wrote:
On Thu, Oct 23, 2008 at 03:41:40PM +0000, corvid wrote:
Tomas wrote:
"corvid" <corvid@lavabit.com> wrote:
Tomas wrote:
What's causing the addition of garbage symbols, like here (comments by tr (6th & 8th comment(most visible in 8th))): http://www.nezinau.lt/microsoft-lazerines-peles-sugeba-nustebinti#comments Backspace?
Looks like it.
I pasted a random chunk of text ending in a non-ASCII character into a textarea with a form submitting as UTF-8. "mink??" became "mink%C5%A1" in the submitted data, which I believe is right. Then I pressed backspace in the textarea, leaving "mink", and submitted again. Now it submits "mink%A1", which is wrong. Input type=text doesn't seem to have the problem. Probably something wrong in fltk's TextEditor, then. I'll see if I can find where it's missing some utf8-awareness.
Hey you were quick to figure that out :)
In fltk/src/TextEditor.cxx, you could try replacing the kf_backspace with:
int TextEditor::kf_backspace(int, TextEditor* e) { int oldpos = e->insert_position(); if (!e->buffer()->selected() && e->move_left()) e->buffer()->select(e->insert_position(), oldpos); kill_selection(e); e->show_insert_position(); e->maybe_do_callback(); return 1; }
Looks like their kf_delete is broken as well...
It'd be great if an FLTK2 STR with patch is made out of this. (Johannes knows what's required. Just user/passwd?)
Yes, just register at http://fltk.org/login.php Works with dillo :-) Cheers, Johannes
Johannes wrote:
On Thu, Oct 23, 2008 at 02:14:24PM -0300, Jorge Arellano Cid wrote:
On Thu, Oct 23, 2008 at 03:41:40PM +0000, corvid wrote:
Tomas wrote:
"corvid" <corvid@lavabit.com> wrote:
Tomas wrote:
What's causing the addition of garbage symbols, like here (comments by tr (6th & 8th comment(most visible in 8th))): http://www.nezinau.lt/microsoft-lazerines-peles-sugeba-nustebinti#comments Backspace?
Looks like it.
I pasted a random chunk of text ending in a non-ASCII character into a textarea with a form submitting as UTF-8. "mink??" became "mink%C5%A1" in the submitted data, which I believe is right. Then I pressed backspace in the textarea, leaving "mink", and submitted again. Now it submits "mink%A1", which is wrong. Input type=text doesn't seem to have the problem. Probably something wrong in fltk's TextEditor, then. I'll see if I can find where it's missing some utf8-awareness.
Hey you were quick to figure that out :)
In fltk/src/TextEditor.cxx, you could try replacing the kf_backspace with:
int TextEditor::kf_backspace(int, TextEditor* e) { int oldpos = e->insert_position(); if (!e->buffer()->selected() && e->move_left()) e->buffer()->select(e->insert_position(), oldpos); kill_selection(e); e->show_insert_position(); e->maybe_do_callback(); return 1; }
Looks like their kf_delete is broken as well...
It'd be great if an FLTK2 STR with patch is made out of this. (Johannes knows what's required. Just user/passwd?)
Yes, just register at http://fltk.org/login.php Works with dillo :-)
I tried some months back when I wanted Compose to be fixed. It sent me a confirmation string or some such thing, which I pasted in wherever I was supposed to paste it in, and got something like "no, this confirmation is no good". And thanks to that, my email addr is already in use and it won't let me try again.
On Thu, 23 Oct 2008 15:41:40 +0000 "corvid" <corvid@lavabit.com> wrote:
In fltk/src/TextEditor.cxx, you could try replacing the kf_backspace with:
int TextEditor::kf_backspace(int, TextEditor* e) { int oldpos = e->insert_position(); if (!e->buffer()->selected() && e->move_left()) e->buffer()->select(e->insert_position(), oldpos); kill_selection(e); e->show_insert_position(); e->maybe_do_callback(); return 1; }
Looks like their kf_delete is broken as well...
Seems to work now. Maybe you should send them a patch?
Tomas wrote:
X-Mailer: Claws Mail 3.5.0 (GTK+ 2.12.0; i486-pc-linux-gnu)
Just noticed this. Is claws able to make much use of dillo2? Jorge put in a special-case workaround for "dillo -l -f -x XID URL" right before release, but I don't know whether anyone's using it (or if any claws users even know it's there)
With claws I use Gtkhtml2Viewer ( http://www.claws-mail.org/plugin.php?plugin=gtkhtml2 ) -- Brain: an apparatus with which we think we think. - A. Bierce
Tomas wrote:
X-Mailer: Claws Mail 3.5.0 (GTK+ 2.12.0; i486-pc-linux-gnu)
Just noticed this. Is claws able to make much use of dillo2? Jorge put in a special-case workaround for "dillo -l -f -x XID URL" right before release, but I don't know whether anyone's using it (or if any claws users even know it's there) Hmm...a moment of searching and the first hit I get is http://www.nabble.com/Using-of-Dillo2-td20014194.html which suggests that, no, they don't know.
On Thu, 23 Oct 2008 16:31:14 +0000 "corvid" <corvid@lavabit.com> wrote:
Tomas wrote:
X-Mailer: Claws Mail 3.5.0 (GTK+ 2.12.0; i486-pc-linux-gnu)
Just noticed this. Is claws able to make much use of dillo2? Jorge put in a special-case workaround for "dillo -l -f -x XID URL" right before release, but I don't know whether anyone's using it (or if any claws users even know it's there)
Hmm...a moment of searching and the first hit I get is http://www.nabble.com/Using-of-Dillo2-td20014194.html which suggests that, no, they don't know.
They know. Both users and development. I said about Dillo2 in #claws when it was release. I'm not sure when they are going to implement it as plugin nor if it already works. Some information can be located in two places: http://www.claws-mail.org/plugin.php?plugin=dillo http://www.claws-mail.org/plugins.php?branch=STD -- Henri Salo <fgeek at hack.fi> +358407705733 GPG ID: 2EA46E4F fp: 14D0 7803 BFF6 EFA0 9998 8C4B 5DFE A106 2EA4 6E4F
On Thu, Oct 23, 2008 at 08:27:13PM +0300, Henri Salo wrote:
On Thu, 23 Oct 2008 16:31:14 +0000 "corvid" <corvid@lavabit.com> wrote:
Tomas wrote:
X-Mailer: Claws Mail 3.5.0 (GTK+ 2.12.0; i486-pc-linux-gnu)
Just noticed this. Is claws able to make much use of dillo2? Jorge put in a special-case workaround for "dillo -l -f -x XID URL" right before release, but I don't know whether anyone's using it (or if any claws users even know it's there)
Hmm...a moment of searching and the first hit I get is http://www.nabble.com/Using-of-Dillo2-td20014194.html which suggests that, no, they don't know.
They know. Both users and development. I said about Dillo2 in #claws when it was release. I'm not sure when they are going to implement it as plugin nor if it already works. Some information can be located in two places:
http://www.claws-mail.org/plugin.php?plugin=dillo http://www.claws-mail.org/plugins.php?branch=STD
The problem is dillo-2.0 has a workaround only implementation for the CLI switches claws needs. It'd be good to patch it fully, but before that we need to know whether is possible to embed an FLTK2 window into an Xwindow. Once we know it's possible, the patch is in place and the release made, I'd advice claws folks to use it. -- Cheers Jorge.-
On Thu, 23 Oct 2008 15:16:28 -0300 Jorge Arellano Cid <jcid@dillo.org> wrote:
On Thu, Oct 23, 2008 at 08:27:13PM +0300, Henri Salo wrote:
On Thu, 23 Oct 2008 16:31:14 +0000 "corvid" <corvid@lavabit.com> wrote:
Tomas wrote:
X-Mailer: Claws Mail 3.5.0 (GTK+ 2.12.0; i486-pc-linux-gnu)
Just noticed this. Is claws able to make much use of dillo2? Jorge put in a special-case workaround for "dillo -l -f -x XID URL" right before release, but I don't know whether anyone's using it (or if any claws users even know it's there)
Hmm...a moment of searching and the first hit I get is http://www.nabble.com/Using-of-Dillo2-td20014194.html which suggests that, no, they don't know.
They know. Both users and development. I said about Dillo2 in #claws when it was release. I'm not sure when they are going to implement it as plugin nor if it already works. Some information can be located in two places:
http://www.claws-mail.org/plugin.php?plugin=dillo http://www.claws-mail.org/plugins.php?branch=STD
The problem is dillo-2.0 has a workaround only implementation for the CLI switches claws needs.
It'd be good to patch it fully, but before that we need to know whether is possible to embed an FLTK2 window into an Xwindow.
Once we know it's possible, the patch is in place and the release made, I'd advice claws folks to use it.
You should communicate directly with Claws-Mail's development team for sure. -- Henri Salo <fgeek at hack.fi> +358407705733 GPG ID: 2EA46E4F fp: 14D0 7803 BFF6 EFA0 9998 8C4B 5DFE A106 2EA4 6E4F
On Thu, Oct 23, 2008 at 09:20:55PM +0300, Henri Salo wrote:
On Thu, 23 Oct 2008 15:16:28 -0300 Jorge Arellano Cid <jcid@dillo.org> wrote:
On Thu, Oct 23, 2008 at 08:27:13PM +0300, Henri Salo wrote:
On Thu, 23 Oct 2008 16:31:14 +0000 "corvid" <corvid@lavabit.com> wrote:
Tomas wrote:
X-Mailer: Claws Mail 3.5.0 (GTK+ 2.12.0; i486-pc-linux-gnu)
Just noticed this. Is claws able to make much use of dillo2? Jorge put in a special-case workaround for "dillo -l -f -x XID URL" right before release, but I don't know whether anyone's using it (or if any claws users even know it's there)
Hmm...a moment of searching and the first hit I get is http://www.nabble.com/Using-of-Dillo2-td20014194.html which suggests that, no, they don't know.
They know. Both users and development. I said about Dillo2 in #claws when it was release. I'm not sure when they are going to implement it as plugin nor if it already works. Some information can be located in two places:
http://www.claws-mail.org/plugin.php?plugin=dillo http://www.claws-mail.org/plugins.php?branch=STD
The problem is dillo-2.0 has a workaround only implementation for the CLI switches claws needs.
It'd be good to patch it fully, but before that we need to know whether is possible to embed an FLTK2 window into an Xwindow.
Once we know it's possible, the patch is in place and the release made, I'd advice claws folks to use it.
You should communicate directly with Claws-Mail's development team for sure.
Do you have an email pointer? -- Cheers Jorge.-
On Thu, 23 Oct 2008 15:44:53 -0300 Jorge Arellano Cid <jcid@dillo.org> wrote:
You should communicate directly with Claws-Mail's development team for sure.
Do you have an email pointer?
I asked from IRC-channel, because I didn't find anything related to Developer-list and they said it is only for developers. I beleive most of the developers will read c-m-users-list. Subscribe-address: claws-mail-users-subscribe@dotsrc.org -- Henri Salo <fgeek at hack.fi> +358407705733 GPG ID: 2EA46E4F fp: 14D0 7803 BFF6 EFA0 9998 8C4B 5DFE A106 2EA4 6E4F
On Thu, 23 Oct 2008 16:31:14 +0000 "corvid" <corvid@lavabit.com> wrote:
Tomas wrote:
X-Mailer: Claws Mail 3.5.0 (GTK+ 2.12.0; i486-pc-linux-gnu)
Just noticed this. Is claws able to make much use of dillo2? Jorge put in a special-case workaround for "dillo -l -f -x XID URL" right before release, but I don't know whether anyone's using it (or if any claws users even know it's there)
Hmm...a moment of searching and the first hit I get is http://www.nabble.com/Using-of-Dillo2-td20014194.html which suggests that, no, they don't know.
Athur F. Ucksayke from #claws is interested what command: "dillo -l -f -x XID URL" is supposed to do? Is this documented? Should Dillo by the way react to -h/--help some better way than think those as urls? Dillo thinks every first argument is address for www-site. There really could be some intelligence to detect proper addresses. -- Henri Salo <fgeek at hack.fi> +358407705733 GPG ID: 2EA46E4F fp: 14D0 7803 BFF6 EFA0 9998 8C4B 5DFE A106 2EA4 6E4F
On Thu, Oct 23, 2008 at 09:12:29PM +0300, Henri Salo wrote:
On Thu, 23 Oct 2008 16:31:14 +0000 "corvid" <corvid@lavabit.com> wrote:
Tomas wrote:
X-Mailer: Claws Mail 3.5.0 (GTK+ 2.12.0; i486-pc-linux-gnu)
Just noticed this. Is claws able to make much use of dillo2? Jorge put in a special-case workaround for "dillo -l -f -x XID URL" right before release, but I don't know whether anyone's using it (or if any claws users even know it's there)
Hmm...a moment of searching and the first hit I get is http://www.nabble.com/Using-of-Dillo2-td20014194.html which suggests that, no, they don't know.
Athur F. Ucksayke from #claws is interested what command: "dillo -l -f -x XID URL" is supposed to do? Is this documented?
Not documented. This enables the SPAM safe mode (no images/resource loading). It doesn't embed the window because we don't yet know how to do it. Full screen is ignored The URL is shown.
Should Dillo by the way react to -h/--help some better way than think those as urls? Dillo thinks every first argument is address for www-site. There really could be some intelligence to detect proper addresses.
This is pending (as many things). BTW, I have to answer the CSS thread... PS: The release caused an email storm for me. This is good! -- Cheers Jorge.-
On Thu, 23 Oct 2008 21:12:29 +0300 Henri Salo <fgeek@hack.fi> wrote:
On Thu, 23 Oct 2008 16:31:14 +0000 "corvid" <corvid@lavabit.com> wrote:
Tomas wrote:
X-Mailer: Claws Mail 3.5.0 (GTK+ 2.12.0; i486-pc-linux-gnu)
Just noticed this. Is claws able to make much use of dillo2? Jorge put in a special-case workaround for "dillo -l -f -x XID URL" right before release, but I don't know whether anyone's using it (or if any claws users even know it's there)
Hmm...a moment of searching and the first hit I get is http://www.nabble.com/Using-of-Dillo2-td20014194.html which suggests that, no, they don't know.
Athur F. Ucksayke from #claws is interested what command: "dillo -l -f -x XID URL" is supposed to do? Is this documented?
It seems to be so that I didn't really understood or even think about the name (or more more closely the joke) and this should show to the community how well people in some projects would like to get contacts and help things to work. Minus points to Athur U. as in claws. -- Henri Salo <fgeek at hack.fi> +358407705733 GPG ID: 2EA46E4F fp: 14D0 7803 BFF6 EFA0 9998 8C4B 5DFE A106 2EA4 6E4F
Henri Salo <fgeek at hack.fi> wrote:
Tomas wrote:
X-Mailer: Claws Mail 3.5.0 (GTK+ 2.12.0; i486-pc-linux-gnu)
Just noticed this. Is claws able to make much use of dillo2? Jorge put in a special-case workaround for "dillo -l -f -x XID URL" right before release, but I don't know whether anyone's using it (or if any claws users even know it's there)
Hmm...a moment of searching and the first hit I get is http://www.nabble.com/Using-of-Dillo2-td20014194.html which suggests that, no, they don't know.
Athur F. Ucksayke from #claws is interested what command: "dillo -l -f -x XID URL" is supposed to do? Is this documented?
It seems to be so that I didn't really understood or even think about the name (or more more closely the joke) and this should show to the community how well people in some projects would like to get contacts and help things to work.
It doesn't show anything like that. It is possible to be serious and mix that with humour, just as it is possible to tell a joke but make a serious point. Mr Ucksayke has been part of the Claws Mail team since day 1, and you don't give up that much of your time over so many years just in order to make low-brow jokes. Since this is seeming way off-topic, I'll bring it back... "dillo -l -f -x XID URL" these options are known by the Claws Mail team, they are built into the Claws Mail Dillo Browser plugin - iirc, they first appeared in Dillo as a result of a discussion between Melvin, the developer of the plugin, and the Dillo team. The Claws Mail users do know these options, at least through the plugins preferences page, and, I would imagine, the majority of them do use these options. imo, having the option to avoid loading of remote content is crucial in an email app's html message display.
Minus points to Athur U. as in claws.
Athur U.'s points reset to zero. regards Paul -- "Thanks to his green candle, the 'Pataphysician can lighten our darkness."
Hi Paul, On Fri, Oct 24, 2008 at 08:21:29AM +0100, Paul wrote:
[...] "dillo -l -f -x XID URL" these options are known by the Claws Mail team, they are built into the Claws Mail Dillo Browser plugin - iirc, they first appeared in Dillo as a result of a discussion between Melvin, the developer of the plugin, and the Dillo team. The Claws Mail users do know these options, at least through the plugins preferences page, and, I would imagine, the majority of them do use these options. imo, having the option to avoid loading of remote content is crucial in an email app's html message display.
Thanks for the info.
Athur F. Ucksayke from #claws is interested what command: "dillo -l -f -x XID URL" is supposed to do? Is this documented?
Not documented. In dillo2: - This enables the SPAM safe mode (no images/resource loading). - It doesn't embed the window because we don't yet know how to do it. - Full screen is ignored - The URL is shown. As this was a "blind workaround" (i.e. not tested), would you mind trying whether it works. It should start a dettached dillo2 window in SPAM safe mode, with browser controls showing. As for proper implementation of those CLI switches in the future, who should I contact? I assume by your email you're a good person to ask. -- Cheers Jorge.-
Hello Jorge, On Fri, 24 Oct 2008 08:56:05 -0300 Jorge Arellano Cid <jcid@dillo.org> wrote:
As this was a "blind workaround" (i.e. not tested), would you mind trying whether it works. It should start a dettached dillo2 window in SPAM safe mode, with browser controls showing.
I did test it, and it did work as you described.
As for proper implementation of those CLI switches in the future, who should I contact? I assume by your email you're a good person to ask.
Sure, you can contact me directly. I'm in daily contact with the rest of the team, so it'll be fine. best regards Paul -- "Thanks to his green candle, the 'Pataphysician can lighten our darkness."
On Fri, 24 Oct 2008 13:01:58 +0100 Paul <paul@claws-mail.org> wrote:
On Fri, 24 Oct 2008 08:56:05 -0300 Jorge Arellano Cid <jcid@dillo.org> wrote:
As this was a "blind workaround" (i.e. not tested), would you mind trying whether it works. It should start a dettached dillo2 window in SPAM safe mode, with browser controls showing.
I did test it, and it did work as you described.
A slight correction to that... It does load the page with remote images not loaded. However whilst the 'Load images' context menu item works, the img on/img off button in the lower right has no effect. best regards Paul -- "Thanks to his green candle, the 'Pataphysician can lighten our darkness."
On Fri, Oct 24, 2008 at 01:11:41PM +0100, Paul wrote:
On Fri, 24 Oct 2008 13:01:58 +0100 Paul <paul@claws-mail.org> wrote:
On Fri, 24 Oct 2008 08:56:05 -0300 Jorge Arellano Cid <jcid@dillo.org> wrote:
As this was a "blind workaround" (i.e. not tested), would you mind trying whether it works. It should start a dettached dillo2 window in SPAM safe mode, with browser controls showing.
I did test it, and it did work as you described.
A slight correction to that...
It does load the page with remote images not loaded. However whilst the 'Load images' context menu item works, the img on/img off button in the lower right has no effect.
The on/off img button sets the browser for future pages. That's the desired behaviour. If you want to load the current page's images, either "Load Images", or enable them with on/off button and reload. -- Cheers Jorge.-
On Fri, 24 Oct 2008 09:27:22 -0300 Jorge Arellano Cid <jcid@dillo.org> wrote:
The on/off img button sets the browser for future pages. That's the desired behaviour. If you want to load the current page's images, either "Load Images", or enable them with on/off button and reload.
OK. Thanks for clearing that up! best regards Paul -- "Thanks to his green candle, the 'Pataphysician can lighten our darkness."
participants (7)
-
corvid@lavabit.com
-
fgeek@hack.fi
-
francis@daoine.org
-
jcid@dillo.org
-
Johannes.Hofmann@gmx.de
-
paul@claws-mail.org
-
sandshrew@gmail.com