Sebastian Anding <[EMAIL PROTECTED]> 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
[email protected]
http://linuxfromscratch.org/mailman/listinfo/elinks-users

Reply via email to