| 1 |
#use wml::templ::template title="People involved" author="Josip Rodin"
|
| 2 |
|
| 3 |
<P>The best way to reach the QA Group is to post to
|
| 4 |
<a href="mailto:debian-qa@lists.debian.org">our mailing list</a>.
|
| 5 |
|
| 6 |
<P><b><A HREF="mailto:ctte@qa.debian.org">QA committee</A></b> members are:
|
| 7 |
<br>
|
| 8 |
<UL>
|
| 9 |
<LI>Raphaël Hertzog
|
| 10 |
<LI>Christian Kurz
|
| 11 |
<LI>Torsten Landschoff
|
| 12 |
<LI>Martin Michlmayr
|
| 13 |
<LI>Josip Rodin
|
| 14 |
<LI>Martin Schulze
|
| 15 |
<LI>Michael Stone
|
| 16 |
</UL>
|
| 17 |
|
| 18 |
<P><b>Core team</b> members include all <b>committee</b> members, and:
|
| 19 |
<br>
|
| 20 |
<UL>
|
| 21 |
<:
|
| 22 |
use lib '/org/qa.debian.org/perl';
|
| 23 |
use lib '/home/rhertzog/public_html/qa/perl';
|
| 24 |
use QA;
|
| 25 |
|
| 26 |
my $qa = QA->auto_connect || die "Can't connect!\n";
|
| 27 |
|
| 28 |
my $sth = $qa->{'dbh'}->prepare(q{ SELECT name, email, core_team
|
| 29 |
FROM maintainer
|
| 30 |
WHERE core_team
|
| 31 |
ORDER BY name })
|
| 32 |
|| die $qa->{'dbh'}->errstr;
|
| 33 |
$sth->execute || die $qa->{'dbh'}->errstr;
|
| 34 |
my $res;
|
| 35 |
while (defined($res = $sth->fetchrow_arrayref)) {
|
| 36 |
print " <LI><A HREF=\"mailto:$res->[1]\">$res->[0]</A><BR>\n";
|
| 37 |
}
|
| 38 |
$sth->finish;
|
| 39 |
|
| 40 |
$qa->disconnect;
|
| 41 |
:>
|
| 42 |
# <LI>Matthew Vernon
|
| 43 |
</UL>
|
| 44 |
|
| 45 |
<P>Other valuable contributors:
|
| 46 |
<br>
|
| 47 |
<ul>
|
| 48 |
<li>Vincent Renardias
|
| 49 |
<li>James Troup
|
| 50 |
<li>Anthony Towns
|
| 51 |
<li>Joey Hess
|
| 52 |
<li>Ray Dassen
|
| 53 |
<li>Hamish Moffatt
|
| 54 |
<li>and whoever we may have accidentally forgotten...
|
| 55 |
</ul>
|
| 56 |
|
| 57 |
<P>Plus, all of you Debian developers and users who help.
|