[elinks-dev] Re: elinks - witekfl: onClick="history.back" special treatmen...

2005-02-20 Thread Witold Filipczyk
> > > > Index: elinks/src/ecmascript/spidermonkey.c > > diff -u elinks/src/ecmascript/spidermonkey.c:1.193 > > elinks/src/ecmascript/spidermonkey.c:1.194 > > --- elinks/src/ecmascript/spidermonkey.c:1.193 Sun Feb 20 21:07:24 2005 > > +++ elinks/src/ecmascript/spidermonkey.cSun Feb 20 21:

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

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 > sta

[elinks-dev] "Smarter" strlcmp

2005-08-09 Thread Witold Filipczyk
version is faster. Results may vary for different data. Could you check it? Witold Filipczyk --- src/util/string.c 2005-08-09 16:47:01.450227816 +0200 +++ src/util/string.c.2 2005-08-09 16:42:56.180514480 +0200 @@ -203,17 +203,22 @@ \ /* TODO: Don't precompute strlen(

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 o

[elinks-dev] get_attr_val

2005-08-10 Thread Witold Filipczyk
d speed up a bit parsing big documents with many focusable elements. Witold Filipczyk ___ elinks-dev mailing list elinks-dev@linuxfromscratch.org http://linuxfromscratch.org/mailman/listinfo/elinks-dev

[elinks-dev] Merge with utf8

2006-07-21 Thread Witold Filipczyk
I did merge with utf8 branch. If you notice any new bugs report them immediately. There were conflicts in src/dialog/options.c (that was trivial I think), src/document/html/renderer.c (I don't know what to do with that old code), and src/document/plain/renderer.c (I replaced that file with utf8 ve

Re: [elinks-dev] [patch] some fixes for the Python scripting backend

2006-07-25 Thread Witold Filipczyk
On Sat, Jul 22, 2006 at 08:03:54AM -0400, M. Levinson wrote: > Included below is a minor reworking of the Python scripting backend to > address four issues: > > 1. Errors (including informative tracebacks) are now presented by calling >the report_scripting_error() function in src/scripting/scr

[elinks-dev] gpm and wheelmouse

2006-07-27 Thread Witold Filipczyk
Hi! Here is the wheelmouse patch for gpm. It works for me! --- gpm-1.20.1/src/gpm.c.old2006-07-27 22:52:10.095084528 +0200 +++ gpm-1.20.1/src/gpm.c2006-07-27 22:52:48.503245600 +0200 @@ -530,7 +530,7 @@ /* up and down, up and down, ... who does a do..while(0) loop ??? and th

Re: [elinks-dev] [patch] viewer UTF-8: Correctly position cursor for ACT_EDIT_LEFT in text input field.

2006-07-31 Thread Witold Filipczyk
Applied, Thanks. Could you setup your mail program to set mime type text/plain instead of text/x-patch or tell me how to setup mutt to could see it directly? ___ elinks-dev mailing list elinks-dev@linuxfromscratch.org http://linuxfromscratch.org/mailman

[elinks-dev] gdb and files with the same names

2006-08-26 Thread Witold Filipczyk
Hi, Having files with the same names in the project is bad, because gdb cannot deal with them in the right way. gdb remembers only basenames, because object files are built from directory where sources are stored. When gdb meet eg. renderer.c, it doesn't know which file it is. I have a problem with

[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] Reading out documents using festival

2006-12-03 Thread Witold Filipczyk
Hi! If you apply this patch ELinks will read out documents. Simply press 'R' (r with SHIFT) and 'R' again to switch off. For speech the festival program is required. I hope it will be included in 0.12. Don't ask me to cleanup the code. Do it yourself! Witek -- Szukam pracy diff --git a/src/config

Re: [elinks-dev] Reading out documents using festival

2006-12-04 Thread Witold Filipczyk
On Sun, Dec 03, 2006 at 07:47:42PM +0200, Kalle Olavi Niemitalo wrote: > Witold Filipczyk <[EMAIL PROTECTED]> writes: > > > If you apply this patch ELinks will read out documents. > > Simply press 'R' (r with SHIFT) and 'R' again to switch off. >

[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 --- a/src/protocol

Re: [elinks-dev] FSP and passwords

2006-12-16 Thread Witold Filipczyk
On Sun, Dec 10, 2006 at 10:05:17PM +0100, Jonas Fonseca wrote: > > Note, most of the above I wrote in the buffer without testing, but > passing --long-help to either cogito command should give you the > details. > > > In directory listings, IMHO, this password should be added to base href, > > ot

Re: [elinks-dev] witekfl branch: quoting for FLITE_SYSTEM

2006-12-28 Thread Witold Filipczyk
On Wed, Dec 27, 2006 at 12:12:13AM +0200, Kalle Olavi Niemitalo wrote: > commit e965d07055f5dd3e046469232e4b3986fb60cbaf > speech: added flite - the alternative synthesis engine. > > write_to_festival inserts backslashes in front of double-quotes > and backslashes so that Festival can distinguish

Re: [elinks-dev] contrib/bzip2-pipe.patch

2007-01-06 Thread Witold Filipczyk
On Sat, Jan 06, 2007 at 10:12:15AM +0200, Kalle Olavi Niemitalo wrote: > I was going to ask the bzip2 maintainer whether bzip2-pipe.patch > would have any chance of getting in, but then I noticed that bug > 517 already has an attached patch (attachment 271) that makes > ELinks use BZ2_bzDecompress

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. Start And ALT-A doesn't work. "Start iterating from the next link": Where there is more links with the same accesskey only the first one was a

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 commit

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 t

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 earl

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 acc

[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 f

Re: [elinks-dev] [elinks-users] Embedded flash

2007-05-18 Thread Witold Filipczyk
On Wed, May 16, 2007 at 11:48:29AM -0700, Yan Seiner wrote: > Yan Seiner wrote: > > Looking through the code, elinks creates a link to the flash animation, > > which has to be clicked. > > > > What I need is for elinks to automagically follow that link and launch > > the player. > > > > Any way t

[elinks-dev] Memory allocation

2007-05-30 Thread Witold Filipczyk
Hi! I have such an idea. I saw it in other program. Instead of check everywhere if mem_alloc, mem_calloc or mem_realloc succeed. Check it only in those functions. When there is no more memory say sorry and exit. All other checks could be removed. ELinks will be smaller, therefore faster. -- Witek

Re: [elinks-dev] Memory allocation

2007-05-30 Thread Witold Filipczyk
On Wed, May 30, 2007 at 05:32:42PM +0200, Witold Filipczyk wrote: > Hi! > I have such an idea. I saw it in other program. > Instead of check everywhere if mem_alloc, mem_calloc or mem_realloc > succeed. Check it only in those functions. > When there is no more memory say sorry

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

[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 @@ stati

[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 opi

Re: [elinks-dev] Date format for directory listings

2007-06-19 Thread Witold Filipczyk
On Wed, Jun 20, 2007 at 12:23:44AM +0300, Kalle Olavi Niemitalo wrote: > Witold Filipczyk <[EMAIL PROTECTED]> writes: > > > Date formats differ among various locales. > > Those used by ELinks in directory listings may not be appropriate for > > everyone. > >

Re: [elinks-dev] speeding up configure (was: [Bug 959] configure adds -lX11 without checking)

2007-07-06 Thread Witold Filipczyk
On Fri, Jul 06, 2007 at 03:22:17AM +0300, Kalle Olavi Niemitalo wrote: > Witold Filipczyk writes: > > > On my branch I made that check and other changes to > > configure.in which significantly speed up builds on old > > hardware. > > What kind of hardware and how

[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 http://linuxfromscratch.org/mailman/listinfo/e

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 comp_links(struct

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

2007-08-11 Thread Witold Filipczyk
ee83dca303963e26f5811fab895283e2e70cd2b9 author Witold Filipczyk <[EMAIL PROTECTED]> Sat, 11 Aug 2007 23:06:10 +0200 committer Witold Filipczyk <[EMAIL PROTECTED]> Sat, 11 Aug 2007 23:06:10 +0200 src/config/actions-main.inc |4 + src/viewer/action.c | 16 ++ src/viewer

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,

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

2007-08-12 Thread Witold Filipczyk
diff --git a/src/viewer/text/draw.c b/src/viewer/text/draw.c index 6093315..8719156 100644 --- a/src/viewer/text/draw.c +++ b/src/viewer/text/draw.c @@ -220,7 +220,8 @@ draw_doc(struct session *ses, struct document_view *doc_view, int active) /* When redrawing the document after th

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 --

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

2007-08-14 Thread Witold Filipczyk
888ba8751674471768d846ff3443aa7bb71ecf82 tree f8a0a629f1aa0455f4532ad259224ab62fbef497 parent 14b37d0362f9963cb2803d08d2c3e6e84574cdbe author Witold Filipczyk <[EMAIL PROTECTED]> Tue, 14 Aug 2007 20:43:22 +0200 committer Witold Filipczyk <[EMAIL PROTECTED]> Tue, 14 Aug 2007 20:43:22 +0200 src

[elinks-dev] Bug 744: More tests and fix failures.

2007-08-29 Thread Witold Filipczyk
Hi! While browsing diveintopython-5.4 I found a bug in recent ELinks-0.12.GIT. $ cd /usr/share/doc/diveintopython-5.4/html/toc $ elinks index.html Follow the link: "1. Installing Python" and you'll get the "No such file or directory" error. The link starts with "../". After the short investigatio

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

2007-08-30 Thread Witold Filipczyk
2d69e2e625bb4e673e95bc7eb7b1d8744c4f9a87 tree 9438cfe5923b1ffca02a814356c6c1045b72b2f0 parent 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 s

Re: [elinks-dev] Calling external formfield editor from slave elinks process

2008-04-27 Thread Witold Filipczyk
On Sun, Apr 27, 2008 at 01:27:26PM +0200, Klaus Knopper wrote: > Dear list, > > I would like to be able to call an external editor for textarea filds in > a web form, but not only from the "master" terminal. > > The following is an excerpt from > elinks-0.12-20080414/src/viewer/text/textarea.c: >

[elinks-dev] Big files upload

2008-05-11 Thread Witold Filipczyk
The big_files-1008-r branch is derived from master. On that branch there is the code handling big file uploads. The feature which was missing from the begining of the ELinks. I expect that someone review that code and eventually apply it to the master. -- Witek

Re: [elinks-dev] Big files upload

2008-05-12 Thread Witold Filipczyk
On Mon, May 12, 2008 at 12:14:52AM +0300, Kalle Olavi Niemitalo wrote: > Witold Filipczyk <[EMAIL PROTECTED]> writes: > > > The big_files-1008-r branch is derived from master. On that branch > > there is the code handling big file uploads. > > Thank you. It is ea

Re: [elinks-dev] Big files upload

2008-05-17 Thread Witold Filipczyk
On Sat, May 17, 2008 at 12:11:53PM +0300, Kalle Olavi Niemitalo wrote: > Witold Filipczyk <[EMAIL PROTECTED]> writes: > > > On Mon, May 12, 2008 at 12:14:52AM +0300, Kalle Olavi Niemitalo wrote: > >> - If something changes the size of the file while ELinks is >

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: >

[elinks-dev] Premature optimization

2008-05-21 Thread Witold Filipczyk
I read in the zziplib docs that a conditional call is ten times slower than an uncoditional one. Is it true? In src/document/html/parser/parse.c (start_element, end_element) there are: if (ei->open) ei->open() and if (ei->close) ei->close() Wouldn't be ELinks faster and simpler if all (close and o

[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 r

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 B

Re: [elinks-dev] Why is timeout in struct document?

2008-07-22 Thread Witold Filipczyk
On Tue, Jul 22, 2008 at 03:09:55AM +0300, Kalle Olavi Niemitalo wrote: > When a script in a web page calls window.setTimeout, ELinks sets > document.timeout. So, when two tabs are displaying the same > document (e.g. test/ecmascript/scroll.html), only one of the tabs > can have a timeout at a time

[elinks-dev] Encodings in xbel

2008-08-25 Thread Witold Filipczyk
Hej, Here are two patches, which change a bit xbel bookmarks backend. These patches let read bookmarks in XBEL format in any encoding supported by ELinks, and save it in UTF-8. In fact if the user has other codepage than UTF-8 and uses in bookmarks non-ascii characters , it won't work right. Witek

[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 lat

Re: [elinks-dev] Encodings in xbel

2008-08-30 Thread Witold Filipczyk
This time better patches. Bookmarks in the xbel format are written using the System codepage. Only the "&" is written as "&". The rest is written without changes. Witek commit 9ac9ee459c4ec98c6cf253db304f6b84872eae68 Author: Witold Filipczyk <[EMAIL PROTECTED]>

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]> > &g

[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

Re: [elinks-dev] Scrolling bittorrent items

2008-10-15 Thread Witold Filipczyk
On Sun, Oct 12, 2008 at 02:29:03PM +0300, Kalle Olavi Niemitalo wrote: > Witold Filipczyk <[EMAIL PROTECTED]> writes: > > > Some dialog boxes dont fit on the screen. > > Here are 3 concatenated patches, which fixes that issue. > > When a dialog is displayed on the

[elinks-dev] Message queues instead of callbacks

2008-10-30 Thread Witold Filipczyk
Hej. Callbacks are hard to debug and trace. Message or event queues would be IMO simpler to use. For every struct (windows, sessions, downloads, connections, etc.) associate distinct unsigned integer number id, Every kind of struct would have global counter incremented when a new struct is allocate

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

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 > 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 get_image

Re: [elinks-dev] BIG_READ changed from 65536 to 655360 for no reason?

2009-02-28 Thread Witold Filipczyk
On Sat, Feb 28, 2009 at 06:20:35PM +0200, Kalle Olavi Niemitalo wrote: > Witek, in your commit 4a2fd2d964ef92a10219a3b5e4cce3a8b3be7782 to > elinks-0.12, you changed BIG_READ from 65536 to 655360. Was this > change necessary for bug 1017? The commit message says you > cherry picked it from 3131de

Re: [elinks-dev] chunked gzip fails again

2009-06-03 Thread Witold Filipczyk
On Tue, Jun 02, 2009 at 10:31:04PM +0300, Kalle Olavi Niemitalo wrote: > http://www.eweek.com/c/a/Desktops-and-Notebooks/Intel-Psion-End-Dispute-Concerning-Netbook-Trademark-288875/ > elinks-0.12 (cde4a2f7b3f2c62ae161b39dd391bbddfd4d3857) > --no-home --no-connect at this site results in a 9-byte bo

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

2013-01-20 Thread Witold Filipczyk
W dniu 20.01.2013 o 06:31 Techlive Zheng 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 ++- > 1 f

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 : > 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 elinks-dev@linuxfromscratch.org http://

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 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 deletions(-

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