Re: [aur-dev] [PATCH] Autofocus searchbox at package search

2015-05-27 Thread Johannes Löthberg
On 25/05, Gordian Edenhofer wrote: label for=id_q?= __(Keywords); ?/label - input type='text' name='K' size='30' value=?php if (isset($_REQUEST[K])) { print stripslashes(trim(htmlspecialchars($_REQUEST[K], ENT_QUOTES))); } ? maxlength='35' / +

[aur-dev] [PATCH] Autofocus input fields at login and package-search

2015-05-27 Thread Gordian Edenhofer
At the login and the package search page, the user is promted to provide some input. Until now it was neccessary to first click the field in which the input should be placed. This can be simplified with HTML5 using the autofocus attribute of the input element, though not included in XHTML 1.0, the

Re: [aur-dev] [PATCH] Autofocus username input field at login screen

2015-05-27 Thread Gordian Edenhofer
On Wed, 2015-05-27 at 10:04 +0200, Lukas Fleischer wrote: On Sun, 24 May 2015 at 22:51:19, Gordian Edenhofer wrote: At the login page, the user is promted for the username and the corresponding password. At this point the user is required to click the field in which he should place the

Re: [aur-dev] [PATCH] Autofocus username input field at login screen

2015-05-27 Thread Gordian Edenhofer
On Wed, 2015-05-27 at 11:13 +0200, Lukas Fleischer wrote: On Wed, 27 May 2015 at 10:34:44, Gordian Edenhofer wrote: [...] We use XHTML 1.0, not HTML5. It probably works in most browsers anyway but we should at least use 'autofocus=autofocus' for XHTML compliance and mention it

Re: [aur-dev] [PATCH] Autofocus username input field at login screen

2015-05-27 Thread Lukas Fleischer
On Wed, 27 May 2015 at 10:34:44, Gordian Edenhofer wrote: [...] We use XHTML 1.0, not HTML5. It probably works in most browsers anyway but we should at least use 'autofocus=autofocus' for XHTML compliance and mention it in the commit message. Sorry, I forgot about that! Shell I

Re: [aur-dev] [PATCH] Autofocus input fields at login and package-search

2015-05-27 Thread Florian Pritz
Please use the -v2 argument (also -v3, -v4, ...) to git format-patch or git send-email next time so the subject will look like this: [PATCH v2] Also I'd suggest using --in-reply-to with a message ID from your old thread so that threading works as expected and it's easier to view previous

Re: [aur-dev] [PATCH] Autofocus searchbox at package search

2015-05-27 Thread Johannes Löthberg
On 27/05, Johannes Löthberg wrote: On 25/05, Gordian Edenhofer wrote: label for=id_q?= __(Keywords); ?/label - input type='text' name='K' size='30' value=?php if (isset($_REQUEST[K])) { print stripslashes(trim(htmlspecialchars($_REQUEST[K],

Re: [aur-dev] [PATCH] Autofocus input fields at login and package-search

2015-05-27 Thread Gordian Edenhofer
On Wed, 2015-05-27 at 13:33 +0200, Florian Pritz wrote: Please use the -v2 argument (also -v3, -v4, ...) to git format-patch or git send-email next time so the subject will look like this: [PATCH v2] Also I'd suggest using --in-reply-to with a message ID from your old thread so that

Re: [aur-dev] Some notes on AUR 4.0.0

2015-05-27 Thread Lukas Fleischer
On Tue, 26 May 2015 at 13:33:58, Lukas Fleischer wrote: Hi, As Florian already mentioned in another email, I am away until June 1st. I am on a roaming data plan, so I won't be able to reply to all the feedback and questions on the new AUR until then. I hope that I am going to address at

Re: [aur-dev] [PATCH] Autofocus username input field at login screen

2015-05-27 Thread Lukas Fleischer
On Sun, 24 May 2015 at 22:51:19, Gordian Edenhofer wrote: At the login page, the user is promted for the username and the corresponding password. At this point the user is required to click the field in which he should place the input. This can be easily simplified with HTML5 using the