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