[prev in list] [next in list] [prev in thread] [next in thread] 

List:       elinks-users
Subject:    Re: [elinks-users] Password Problems with ebay.de
From:       Jonas Fonseca <fonseca () diku ! dk>
Date:       2005-11-11 13:23:47
Message-ID: 20051111132347.GC6301 () diku ! dk
[Download RAW message or body]

Sebastian Anding <kilobyt3@web.de> wrote Thu, Nov 10, 2005:
> Hi list,

Hello,

> I have Problems with ebay.de. If I try to login on this page i can't 
> write my password full into the password field. The Password seems to be 
> longer than the possible length of characters which I can enter to the page.
> 
> Is this a links issue, or might it be a ebay.de website coding problem?

Assuming that you build your own ELinks, you can try to see if you can work
around it with the following change ...

[ Run: patch -p1 < /path/to/diff/snippet, from the top source directory. ]

diff --git a/src/document/html/parser/forms.c b/src/document/html/parser/forms.c
index 8ec5a53..b002ecf 100644
--- a/src/document/html/parser/forms.c
+++ b/src/document/html/parser/forms.c
@@ -222,7 +222,7 @@ no_type_attr:
	fc->size++;
	if (fc->size > html_context->options->box.width)
		fc->size = html_context->options->box.width;
-	fc->maxlength = get_num(a, "maxlength", html_context->options);
+	fc->maxlength = INT_MAX; /* get_num(a, "maxlength", html_context->options); */
	if (fc->maxlength == -1) fc->maxlength = INT_MAX;
	if (fc->type == FC_CHECKBOX || fc->type == FC_RADIO)
		fc->default_state = has_attr(a, "checked",

-- 
Jonas Fonseca
_______________________________________________
elinks-users mailing list
elinks-users@linuxfromscratch.org
http://linuxfromscratch.org/mailman/listinfo/elinks-users
[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic