[aur-dev] Mini Roadmap

Simo Leone simo at archlinux.org
Wed Feb 20 07:00:03 EST 2008


I wanted to push this todo list here, since I figure it'll get done
quicker with more eyes on it 8)

- Re-add sort by age, as a column..or something (FS#3370)
- Clean up the flyspray (FS#WXYZ)
- Shuffle around secondary nav links (does every page really need
  bugs/discuss/etc? front page material?)
- search page formattting (squashed columns)
- improve package searching (fulltext is nifty, needs discussion)
- find a way to do auto redirects from submit pages (FS#9621)
- preserve package search parameters form page-to-page (FS#9615)
- improve packages.php GET variable names (they're plain awful right now)
- funky page naming on the search page (FS#9610)
- [community] scripts should handle -arch suffixes (FS#9449)
- Flesh out the json interface (FS#8538)
- speak (x)html fluently, and validate.
- tons more stuff that goes a hella lot deeper than these do

-S

PS: ignore the attachment, I'm just trying something.
-------------- next part --------------
>From 69f1ef3fb3a2ad1776d699bdabf6adea67492840 Mon Sep 17 00:00:00 2001
From: Loui Chang <louipc.ist at gmail.com>
Date: Fri, 8 Feb 2008 16:49:06 -0500
Subject: [PATCH] Changed valid_passwd() to check for non-empty password instead of good_passwd()

Signed-off-by: Loui Chang <louipc.ist at gmail.com>
Signed-off-by: Simo Leone <simo at archlinux.org>
---
 web/lib/acctfuncs.inc |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/web/lib/acctfuncs.inc b/web/lib/acctfuncs.inc
index 29c80de..5775101 100644
--- a/web/lib/acctfuncs.inc
+++ b/web/lib/acctfuncs.inc
@@ -728,7 +728,7 @@ function good_passwd( $passwd )
  */
 function valid_passwd( $userID, $passwd )
 {
-	if ( good_passwd($passwd) ) {
+	if ( strlen($passwd) > 0 ) {
 		$dbh = db_connect();
 		$q = "SELECT ID FROM Users".
 		  " WHERE ID = '$userID'" .
-- 
1.5.4.rc3



More information about the aur-dev mailing list