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

Contents of /newmaint/whoisam.wml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.3 - (hide annotations) (download)
Tue Mar 5 19:41:58 2002 UTC (11 years, 2 months ago) by tbm
Branch: MAIN
Changes since 1.2: +1 -1 lines
Sort AMs alphabetically
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     <P>Below is the list of Debian maintainers who are Application Managers.
26     <BR>
27 tbm 1.3 <? $sql = "SELECT * from manager ORDER by name";
28 csmall 1.1 print_applicants($sql); ?>

  ViewVC Help
Powered by ViewVC 1.1.5