| 1 |
# Copyright (C) 2001 Craig Small <csmall@debian.org>
|
| 2 |
# Copyright (C) 2001, 2002, 2003, 2004, 2005 Martin Michlmayr <tbm@cyrius.com>
|
| 3 |
# This file may be distributed under the GPL v2 or higher.
|
| 4 |
|
| 5 |
<?
|
| 6 |
session_start();
|
| 7 |
include("config.inc");
|
| 8 |
include("common.inc");
|
| 9 |
|
| 10 |
?>
|
| 11 |
#use wml::nmpage title="Debian New Maintainer - List of all Applicants"
|
| 12 |
<?
|
| 13 |
if (!session_is_registered("s_username") || !session_is_registered("s_isam")) {
|
| 14 |
?>
|
| 15 |
<STRONG>
|
| 16 |
You should not be here!</STRONG>
|
| 17 |
<? } else {
|
| 18 |
session_register("s_username");
|
| 19 |
session_register("s_isam");
|
| 20 |
session_register("s_isfd");
|
| 21 |
session_register("s_isdam");
|
| 22 |
?>
|
| 23 |
<H1>Debian New Maintainer - All Applicants</H1><BR>
|
| 24 |
<P>This is a list of all applicants known to the database. This list is sorted
|
| 25 |
by application date. Applicants who are now maintainers are not shown up
|
| 26 |
in this list.
|
| 27 |
<TABLE border=0>
|
| 28 |
<TR><TH>Appl Date</TH><TH colspan="6">Flags</TH><TH>Applicant</TH><TH>Manager</TH></TR>
|
| 29 |
<?
|
| 30 |
if (($db = open_db())) {
|
| 31 |
$sql = "SELECT * from applicant WHERE newmaint IS NULL ORDER BY apply_date" ;
|
| 32 |
print_applicants($db, $sql, 0, 1, 1, 1);
|
| 33 |
} else {
|
| 34 |
echo "<p>Cannot open database!</p>\n";
|
| 35 |
}
|
| 36 |
?>
|
| 37 |
</TABLE>
|
| 38 |
<H3>Key</H3>
|
| 39 |
<UL>
|
| 40 |
<LI><IMG src="/images/shake.png" alt="I"> : Advocate Check OK
|
| 41 |
<LI><IMG src="/images/mag.png" alt="I"> : Identification complete
|
| 42 |
<LI><IMG src="/images/dfsg.png" alt="P"> : Philosophy and Procedures complete
|
| 43 |
<LI><IMG src="/images/hammer.png" alt="T"> : Tasks and Skills complete
|
| 44 |
<LI><IMG src="/images/thumb.png" alt="A"> : Application Manager Recommends applicant
|
| 45 |
<LI><IMG src="/images/new.png" alt="N"> : New Debian maintainer
|
| 46 |
<LI><IMG src="/images/hold.png" alt="H"> : On hold
|
| 47 |
</UL>
|
| 48 |
<? } # Registered session ?>
|