/[webwml]/newmaint/whoisam.wml
ViewVC logotype

Contents of /newmaint/whoisam.wml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.4 - (hide annotations) (download)
Thu Mar 14 02:01:38 2002 UTC (11 years, 2 months ago) by tbm
Branch: MAIN
Changes since 1.3: +11 -2 lines
We have an activity field (is_active) in the SQL DB now, so allow FD
members to change the value, put inactive AMs in brackets in the
leaderboard, and differentiate between active and inactive AMs in the
"Whois AM" section.
1 csmall 1.1 <?
2     include("config.inc");
3     include("common.inc");
4    
5     function print_applicants($sql) {
6     if (! ($db = open_db())) {
7     return FALSE;
8     }
9     if (! ($query = pg_exec($db, $sql))) {
10     echo "Problem with query", pg_ErrorMessage($db), "<BR>";
11     pg_Close($db);
12     return FALSE;
13     }
14     $rows = pg_NumRows($query);
15     for ($i = 0 ; $i < $rows ; $i++) {
16     $row = pg_Fetch_Array($query, $i);
17 csmall 1.2 echo $row["name"], "<BR>\n";
18 csmall 1.1 }
19    
20     pg_Close($db);
21     return TRUE;
22     }?>
23     #use wml::nmpage title="Debian New Maintainer - Application Manager List"
24     <H1>Debian New Maintainer - Application Manager List</H1><BR>
25 tbm 1.4 <P>Below is the list of Debian maintainers who are currently active as
26     Application Managers:
27 csmall 1.1 <BR>
28 tbm 1.4 <? $sql = "SELECT * from manager WHERE is_active IS TRUE ORDER by name";
29 csmall 1.1 print_applicants($sql); ?>
30 tbm 1.4 <P>
31     <P>Below is the list of Debian maintainers who used to help as Application
32     Managers in the past:
33     <BR>
34     <? $sql = "SELECT * from manager WHERE is_active IS FALSE ORDER by name";
35     print_applicants($sql); ?>
36    
37    

  ViewVC Help
Powered by ViewVC 1.1.5