Re: [elinks-dev] Python detection error in configure

2005-06-19 Thread Witold Filipczyk
On Sun, Jun 12, 2005 at 09:09:47PM -0500, Stephen Stocker wrote: Hi, I can't figure this one out, but I've never been able to get Elinks to compile with Python support. Configure gives the error ld was unable to find -lpython (working from memory, but that's close). Python version

Re: [elinks-dev] Python detection error in configure

2005-07-13 Thread Witold Filipczyk
On Tue, Jul 12, 2005 at 10:18:26PM -0500, Stephen Stocker wrote: Where do you have libpython.so ? -- witekfl at poczta.gazeta.pl Sorry, I think I have mail delivery turned off on this list. :( Anyway, to answer the question, I don't have libpython.so, only the static

Re: [elinks-dev] Smarter strlcmp

2005-08-09 Thread Witold Filipczyk
On Tue, Aug 09, 2005 at 07:24:08PM +0200, Jonas Fonseca Madsen wrote: + if (n1 == -1) n1 = n2; \ + if (n2 == -1) n2 = n1; \ + if (n1 n2) n1 = n2; \ Here, both n1 and n2 can be -1, which means the loop below can be endless. No. There is return on first difference or end of string.

[elinks-dev] What is 'sparse' and where to get it?

2006-09-09 Thread Witold Filipczyk
Hi! make check uses 'sparse'. What is 'sparse', what does it do and where to get it? -- Witek ___ elinks-dev mailing list elinks-dev@linuxfromscratch.org http://linuxfromscratch.org/mailman/listinfo/elinks-dev

Re: [elinks-dev] Re: [patch] additional functionality for Python backend

2006-10-19 Thread Witold Filipczyk
Applied. If you have any enhancements, feel free to send it here. -- Witek ___ elinks-dev mailing list elinks-dev@linuxfromscratch.org http://linuxfromscratch.org/mailman/listinfo/elinks-dev

[elinks-dev] FSP and passwords

2006-12-09 Thread Witold Filipczyk
Hey, Password protected directories doesn't work with the FSP code. get_uri_string(uri, URI_PASSWORD) simply doesn't work. I don't know how to use branches, so I'm including the patch here: diff --git a/src/protocol/fsp/fsp.c b/src/protocol/fsp/fsp.c index c66848a..e8eac96 100644 ---

Re: [elinks-dev] witekfl branch status

2007-02-26 Thread Witold Filipczyk
On Sun, Feb 25, 2007 at 12:14:35PM -0600, Kenny Hitt wrote: Hi. On Sun, Feb 25, 2007 at 10:52:47AM +0200, Kalle Olavi Niemitalo wrote: speech Needs a use case and review. Could then be merged before 0.12pre1. Is this intended to help blind people? I believe they

Re: [elinks-dev] witekfl branch status

2007-02-26 Thread Witold Filipczyk
On Sun, Feb 25, 2007 at 10:52:47AM +0200, Kalle Olavi Niemitalo wrote: acckeyThis seems to fix a bug; please advise how to reproduce the bug. html body a href=/ accesskey=aStart/a /body /html And ALT-A doesn't work. Start iterating from the next link: Where there is more links with the

Re: [elinks-dev] dangling pointer crash in write_to_festival (was: witekfl branch status)

2007-03-07 Thread Witold Filipczyk
On Tue, Mar 06, 2007 at 11:33:44PM +0200, Kalle Olavi Niemitalo wrote: Witold Filipczyk [EMAIL PROTECTED] writes: This feature does not collide with screen readers. I just want to listen to ELinks sometimes. I tried applying the speech commits to master, but it crashes if, during

Re: [elinks-dev] witekfl branch status

2007-03-15 Thread Witold Filipczyk
On Thu, Mar 15, 2007 at 07:09:45AM +0200, Kalle Olavi Niemitalo wrote: Witold Filipczyk [EMAIL PROTECTED] writes: On Sun, Feb 25, 2007 at 10:52:47AM +0200, Kalle Olavi Niemitalo wrote: acckey This seems to fix a bug; please advise how to reproduce the bug. html body a href

Re: [elinks-dev] witekfl branch status

2007-03-22 Thread Witold Filipczyk
On Sun, Mar 18, 2007 at 09:12:23PM +0200, Kalle Olavi Niemitalo wrote: bug620This resets forms when I resize the window. Not acceptable. It's difficult because it should be done only once when the document is fully loaded after reloading, but the user might type something into forms

Re: [elinks-dev] witekfl branch status

2007-03-26 Thread Witold Filipczyk
On Sun, Mar 25, 2007 at 11:23:30PM +0300, Kalle Olavi Niemitalo wrote: Witold Filipczyk [EMAIL PROTECTED] writes: On Sun, Mar 18, 2007 at 09:12:23PM +0200, Kalle Olavi Niemitalo wrote: bug620 This resets forms when I resize the window. Not acceptable. It's difficult because it should

[elinks-dev] getELementById

2007-04-26 Thread Witold Filipczyk
Hello, I want to add support for document.getELementById with minimal effort and minimal slowdown. My idea is: In parse_element instead of returning attr, alloc and return struct node2: struct node2 { LIST_HEAD(struct node2); // unsigned char *start; /* start of HTML element at char

Re: [elinks-dev] Why utf8_linux_frame_seqs?

2007-05-16 Thread Witold Filipczyk
On Wed, May 16, 2007 at 09:09:02AM +0300, Kalle Olavi Niemitalo wrote: In ELinks 0.12.GIT (f8f99cc04ea0ff1f64c0452f5232e1b2567493c2): - If UTF-8 I/O is disabled, then src/terminal/screen.c outputs normal characters in the terminal charset, and frame characters usually in a separate frame

Re: [elinks-dev] Solaris build fixes

2007-06-05 Thread Witold Filipczyk
On Tue, Jun 05, 2007 at 12:29:46AM +0300, Kalle Olavi Niemitalo wrote: John Hawkinson [EMAIL PROTECTED] writes: Kalle Olavi Niemitalo [EMAIL PROTECTED] wrote on Sun, 3 Jun 2007 at 10:48:09 +0300 in [EMAIL PROTECTED]: Have you tested the resulting binary, especially with slow sites

[elinks-dev] CGI scripts using GET don't work

2007-06-15 Thread Witold Filipczyk
Hi! CGI scripts using the GET method don't work in 0.11.3 and 0.12.GIT. QUERY_STRING is empty. It's a big bug. Here is the patch for 0.11.3: diff --git a/src/protocol/uri.c b/src/protocol/uri.c index df22646..e9c3b39 100644 --- a/src/protocol/uri.c +++ b/src/protocol/uri.c @@ -149,7 +149,7 @@

[elinks-dev] Date format for directory listings

2007-06-19 Thread Witold Filipczyk
Hi! Date formats differ among various locales. Those used by ELinks in directory listings may not be appropriate for everyone. IMHO there are 3 choices: - leave them as they are - let user to define them - use gettext Which choice do you prefer? I prefer gettext myself, but I want to know your

[elinks-dev] lua50 or lua51 in 0.12?

2007-07-22 Thread Witold Filipczyk
Hi! Which version of LUA 5.0 or 5.1 should ELinks-0.12 use? Currently it supports only 5.0, but 5.1 is newer. IMO now is good time to switch to 5.1. ___ elinks-dev mailing list elinks-dev@linuxfromscratch.org

Re: [elinks-dev] Sponsor development of the key motion.

2007-08-10 Thread Witold Filipczyk
Use this patch: diff --git a/src/document/renderer.c b/src/document/renderer.c index 90fcc80..8b80d73 100644 --- a/src/document/renderer.c +++ b/src/document/renderer.c @@ -499,6 +499,7 @@ render_document_frames(struct session *ses, int no_cache) } } +#if 0 static int

Re: [elinks-dev] Sponsor development of the key motion.

2007-08-12 Thread Witold Filipczyk
On Sun, Aug 12, 2007 at 07:35:37AM +0530, Ligesh wrote: Thanks for the patch. Works great. I have a new problem though. I updated my elinks from the git and now the alt-keys does not work. If I run my old elinks, all the alt-key commands work fine, but not with the new one. Also, please

Re: [elinks-dev] Sponsor development of the key motion.

2007-08-12 Thread Witold Filipczyk
Here is second patch, which fixes moving in frames. -- Witek actions: Fixed moving in frames. --- commit a68c563198afd22cf293b0c754ef1e5b73e8e9cc tree 52fd6c553ae0c355829131b32059d80784892170 parent 7882384bce49ab8d09e4c6d7a4b7b0eb0c945797 author Witold Filipczyk [EMAIL PROTECTED] Sun, 12 Aug

Re: [elinks-dev] Sponsor development of the key motion.

2007-08-14 Thread Witold Filipczyk
062545598ae45bf519f7e825b0302542061bbf34 parent 2045574edca170a47b1e9f1e05cd210bdae8a49a author Witold Filipczyk [EMAIL PROTECTED] Tue, 14 Aug 2007 19:56:02 +0200 committer Witold Filipczyk [EMAIL PROTECTED] Tue, 14 Aug 2007 19:56:02 +0200 src/viewer/text/view.c | 25 - 1 files changed

Re: [elinks-dev] Textarea doesn't get refreshed when the page is refreshed.

2007-08-30 Thread Witold Filipczyk
940196b131f13537b84e807b14481280bf5b72f1 author Witold Filipczyk [EMAIL PROTECTED] Thu, 30 Aug 2007 19:36:48 +0200 committer Witold Filipczyk [EMAIL PROTECTED] Thu, 30 Aug 2007 19:36:48 +0200 src/session/session.c |8 +++- 1 files changed, 7 insertions(+), 1 deletions(-) diff --git a/src/session/session.c b/src

Re: [elinks-dev] Big files upload

2008-05-19 Thread Witold Filipczyk
On Mon, May 19, 2008 at 08:30:15AM +0300, Kalle Olavi Niemitalo wrote: Kalle Olavi Niemitalo [EMAIL PROTECTED] writes: Witold Filipczyk [EMAIL PROTECTED] writes: On Mon, May 12, 2008 at 12:14:52AM +0300, Kalle Olavi Niemitalo wrote: - The code is duplicated between src/protocol/file

[elinks-dev] Monthly snapshots

2008-06-18 Thread Witold Filipczyk
Me and probably not only me want to package the ELinks-0.12 or even 0.13. If you do not want to release often, create at least monthly (or quoterly) snapshots, eg. elinks-0.13-080630.tar.bz2 and save them on the download site. Mark them as experimental. I think that many users are waiting for new

Re: [elinks-dev] proposed ELinks 0.12pre1 release announcement

2008-06-30 Thread Witold Filipczyk
Looking back Of the three features hinted at in the ELinks 0.11.0 release announcement, Witold's improved UTF-8 support has become the main point of ELinks 0.12. Miciah has extended the ECMAScript scripting UTF-8 support was initialised by me, but the rest did Pavol

[elinks-dev] Errors in bittorent

2008-08-29 Thread Witold Filipczyk
Hi, I noticed a bug in the bittorent protocol code while trying to get an ISO from http://torrents.gentoo.org/. Here is a fix for it. 1) Before the uri was put on the stack and the access that uri later may trash the stack. 2) done_uri expects that uri-string is not NULL, so uri-string points to

Re: [elinks-dev] Errors in bittorent

2008-08-30 Thread Witold Filipczyk
On Fri, Aug 29, 2008 at 10:38:20PM +0200, Witold Filipczyk wrote: Hi, I noticed a bug in the bittorent protocol code while trying to get an ISO from http://torrents.gentoo.org/. Here is a fix for it. 1) Before the uri was put on the stack and the access that uri later may trash the stack

Re: [elinks-dev] Errors in bittorent

2008-08-30 Thread Witold Filipczyk
On Sat, Aug 30, 2008 at 12:24:40PM +0200, Jonas Fonseca wrote: Some comments ... Witold Filipczyk [EMAIL PROTECTED] wrote Sat, Aug 30, 2008: commit b589f19b73c65621c0a8582199509f58dbcac09f Author: Witold Filipczyk [EMAIL PROTECTED] AuthorDate: Sat Aug 30 10:52:00 2008 +0200 Commit

[elinks-dev] Scrolling bittorrent items

2008-08-31 Thread Witold Filipczyk
: Witold Filipczyk [EMAIL PROTECTED] Date: Sun Aug 31 18:56:23 2008 +0200 Added draw_text2 functions and others. draw2_text checks whether text of dialogs fit on the screen. At the start the bottom part of the dialogs is shown. Scrolling works with bittorrent. I did not check

Re: [elinks-dev] [PATCH] Fix double-free crash if EOF immediately follows /MAP.

2008-12-30 Thread Witold Filipczyk
On Mon, Dec 29, 2008 at 09:49:52PM +0200, Kalle Olavi Niemitalo wrote: look_for_link() used to return 0 both when it found the closing /MAP tag, and when it hit the end of the file. In the first case, it also added *menu to the memory_list; in the second case, it did not. The caller

Re: [elinks-dev] [PATCH] More Chinese charsets

2013-01-20 Thread Witold Filipczyk
W dniu 20.01.2013 o 06:31 Techlive Zheng techlivezh...@gmail.com pisze: --- Elinks currently only support GB2312 as Chinese encoding, but GBK and GB18030 are also widely used. Codepage CP936 is amlost identical to GBK, so I add it as an aliase. src/intl/codepage.inc | 27

Re: [elinks-dev] [PATCH 2/2] Add support for the CSS list-style-type property

2013-09-07 Thread Witold Filipczyk
W dniu 05.09.2013 o 16:25 Fabienne Ducroquet fabi...@gmail.com: Just a reminder in case one of the developers has the time to have a look at these patches. Both patches committed to 0.13. Thank you! ___ elinks-dev mailing list

Re: [elinks-dev] [PATCH] configure.in: add a missing AC_LANG_PROGRAM macro

2013-09-18 Thread Witold Filipczyk
W dniu 18.09.2013 o 12:48 Kamil Dudka kdu...@redhat.com pisze: On Monday 25 February 2013 15:45:32 Kamil Dudka wrote: ... around the first argument of AC_COMPILE_IFELSE in order to eliminate warnings with autoconf 2.68. --- configure.in |4 ++-- 1 files changed, 2 insertions(+), 2

Re: [elinks-dev] [PATCH 1/2] Respect alphabetical order for the actions

2013-12-18 Thread Witold Filipczyk
Sorry, I aplied patch1 before patch0. Could you prepare new patch with correct order of functions? ___ elinks-dev mailing list elinks-dev@linuxfromscratch.org http://linuxfromscratch.org/mailman/listinfo/elinks-dev