[aur-dev] Internal server error while searching for es

2011-06-22 Thread Tuxce
Hi, as yaourt maintainer, I received a bug ticket about yaourt giving an error while searching for es on AUR. It seems that searching for es with rpc (and maybe only es) returns an internal server error. http://aur.archlinux.org/rpc.php?type=searcharg=es But I cannot reproduce it on a local

Re: [aur-dev] Internal server error while searching for es

2011-06-22 Thread Dan McGee
On Wed, Jun 22, 2011 at 5:37 AM, Tuxce tuxce@gmail.com wrote: Hi, as yaourt maintainer, I received a bug ticket about yaourt giving an error while searching for es on AUR. It seems that searching for es with rpc (and maybe only es) returns an internal server error.

[aur-dev] [PATCH 1/2] Fix performance issues with new PackageDepends lookups

2011-06-22 Thread Dan McGee
We do a lookup by DepName in the package details view, but I made the silly mistake of forgetting this index addition in the upgrade steps. Signed-off-by: Dan McGee d...@archlinux.org --- Not sure if this fell through the cracks way back in April... UPGRADING |6 --

[aur-dev] [PATCH 2/2] Use sane ORDER BY clauses in package list queries

2011-06-22 Thread Dan McGee
We were doing some silly things here with an ORDER BY Name, CategoryID clause, due to the fact that Name is unique, and thus any additional ordering after Name will have no effect. Of course, the dumb as a box of rocks MySQL query optimizer doesn't realize this, leading to full table scans every

[aur-dev] [PATCH 1/5] README: fix pacman call

2011-06-22 Thread Florian Pritz
Signed-off-by: Florian Pritz bluew...@xinu.at --- web/README |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/web/README b/web/README index b8d1b72..0c081f2 100644 --- a/web/README +++ b/web/README @@ -1,7 +1,7 @@ Setup on Arch Linux: 1) Install

[aur-dev] [PATCH 2/5] use valid_email() from codeigniter's email helper

2011-06-22 Thread Florian Pritz
Signed-off-by: Florian Pritz bluew...@xinu.at --- web/lib/aur.inc.php |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/web/lib/aur.inc.php b/web/lib/aur.inc.php index 4c2cc55..3250133 100644 --- a/web/lib/aur.inc.php +++ b/web/lib/aur.inc.php @@ -78,7 +78,7 @@ function

[aur-dev] [PATCH 3/5] remove unneeded make_seed()

2011-06-22 Thread Florian Pritz
http://us.php.net/mt_srand Note: As of PHP 4.2.0, there is no need to seed the random number generator with srand() or mt_srand() as this is now done automatically. Signed-off-by: Florian Pritz bluew...@xinu.at --- web/lib/aur.inc.php | 12 +--- 1 files changed, 1 insertions(+), 11