Your message dated Sun, 4 Dec 2005 02:44:38 +0100 with message-id <[EMAIL PROTECTED]> and subject line Bug#341244: wml/developer.wml: all=1 page outdated wrt ddpo_maintainers info has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) -------------------------------------- Received: (at submit) by bugs.debian.org; 29 Nov 2005 14:39:17 +0000 >From [EMAIL PROTECTED] Tue Nov 29 06:39:17 2005 Return-path: <[EMAIL PROTECTED]> Received: from relay.uni-heidelberg.de ([129.206.100.212]) by spohr.debian.org with esmtp (Exim 4.50) id 1Eh6dY-000694-Sc for [EMAIL PROTECTED]; Tue, 29 Nov 2005 06:39:17 -0800 Received: from ix.urz.uni-heidelberg.de (popix.urz.uni-heidelberg.de [129.206.119.235]) by relay.uni-heidelberg.de (8.13.4/8.13.1) with ESMTP id jATEdEVH009183 for <[EMAIL PROTECTED]>; Tue, 29 Nov 2005 15:39:14 +0100 Received: from extmail.urz.uni-heidelberg.de (extmail.urz.uni-heidelberg.de [129.206.100.140]) by ix.urz.uni-heidelberg.de (8.8.8/8.8.8) with ESMTP id PAA7831626 for <[EMAIL PROTECTED]>; Tue, 29 Nov 2005 15:39:14 +0100 Received: from live (p54A70357.dip0.t-ipconnect.de [84.167.3.87]) (authenticated bits=0) by extmail.urz.uni-heidelberg.de (8.13.4/8.13.1) with ESMTP id jATEdn6B006201 (version=TLSv1/SSLv3 cipher=AES256-SHA bits=256 verify=NO) for <[EMAIL PROTECTED]>; Tue, 29 Nov 2005 15:39:51 +0100 Received: from fernst by live with local (Exim 4.54) id 1Eh6dU-0006UD-2l for [EMAIL PROTECTED]; Tue, 29 Nov 2005 15:39:12 +0100 Date: Tue, 29 Nov 2005 15:39:11 +0100 From: Florian Ernst <[EMAIL PROTECTED]> To: Debian Bug Tracking System <[EMAIL PROTECTED]> Subject: wml/developer.wml: all=1 page outdated wrt ddpo_maintainers info Message-ID: <[EMAIL PROTECTED]> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="xgyAXRrhYN0wYx8y" Content-Disposition: inline X-Reportbug-Version: 3.17 User-Agent: Mutt/1.5.9i Delivered-To: [EMAIL PROTECTED] X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 (1.212-2003-09-23-exp) on spohr.debian.org X-Spam-Level: X-Spam-Status: No, hits=-3.0 required=4.0 tests=BAYES_00 autolearn=no version=2.60-bugs.debian.org_2005_01_02 --xgyAXRrhYN0wYx8y Content-Type: multipart/mixed; boundary="7AUc2qLy4jB3hD7Z" Content-Disposition: inline --7AUc2qLy4jB3hD7Z Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Package: qa.debian.org Severity: minor Tags: patch Dear QA people, the huge (600kB) page displaying all maintainers (developer.php?all=1) claims to list packages in main, non-us, Other and a Total, yet the semantics of the ddpo_maintainers which is parsed for this info seems to have changed. The attached patch against wml/developer.wml corrects and simplifies the generating of this listing a little bit. NB: $info_array[7] and higher aren't filled for any entry in ddpo_maintainers, so I completely left them out as $info_array[9] messed up $count. HTH, Flo --7AUc2qLy4jB3hD7Z Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="developer.wml.diff" Content-Transfer-Encoding: quoted-printable --- developer.wml.orig 2005-11-29 15:19:50.000000000 +0100 +++ developer.wml 2005-11-29 15:26:39.000000000 +0100 @@ -905,8 +905,8 @@ =20 $display_table_th =3D html_th("Name and email"); $display_table_th .=3D html_th("main"); - $display_table_th .=3D html_th("non-us"); - $display_table_th .=3D html_th("Other" . html_br(), html_small("all co= ntrib &" . html_br() . "non-free packages")); + $display_table_th .=3D html_th("contrib"); + $display_table_th .=3D html_th("non-free"); $display_table_th .=3D html_th("Total"); $trs =3D array(); foreach($maint as $line) @@ -919,8 +919,8 @@ =20 $tds =3D html_td(html_b(html_a(str_replace(" ", html_blank(), = "$info_array[3]") . html_blank() . "<$info_array[1]>", "developer.php= ?login=3D" . rawurlencode($info_array[1]))), 15); $main =3D 0; - $nonUS =3D 0; - $other =3D 0; + $contrib =3D 0; + $nonfree =3D 0; if($info_array[4] !=3D "")=20 { $main +=3D count(explode(" ", $info_array[4])); @@ -928,31 +928,16 @@ } if($info_array[5] !=3D "")=20 { - $other +=3D count(explode(" ", $info_array[5])); + $contrib +=3D count(explode(" ", $info_array[5])); $count +=3D count(explode(" ", $info_array[5])); } if($info_array[6] !=3D "")=20 { - $nonUS +=3D count(explode(" ", $info_array[6])); + $nonfree +=3D count(explode(" ", $info_array[6])); $count +=3D count(explode(" ", $info_array[6])); } - if($info_array[7] !=3D "") - { - $other +=3D count(explode(" ", $info_array[7])); - $count +=3D count(explode(" ", $info_array[7])); - } - if($info_array[8] !=3D "")=20 - { - $other +=3D count(explode(" ", $info_array[8])); - $count +=3D count(explode(" ", $info_array[8])); - } - if($info_array[9] !=3D "")=20 - { - $other +=3D count(explode(" ", $info_array[9])); - $count +=3D count(explode(" ", $info_array[9])); - } =20 - $tds .=3D html_td($main) . html_td($nonUS) . html_td($other) .= html_td(html_b($count)); + $tds .=3D html_td($main) . html_td($contrib) . html_td($nonfre= e) . html_td(html_b($count)); $trs[] =3D html_tr($tds, "center"); } } --7AUc2qLy4jB3hD7Z-- --xgyAXRrhYN0wYx8y Content-Type: application/pgp-signature; name="signature.asc" Content-Description: Digital signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (GNU/Linux) iD8DBQFDjGgPs3U+TVFLPnwRAkNYAJ9A0oqwECe/uXyOPsW/q1ut6zCO0ACfZF5l ATGxHmDfx6EAfXet6s6XA5I= =3cGk -----END PGP SIGNATURE----- --xgyAXRrhYN0wYx8y-- --------------------------------------- Received: (at 341244-done) by bugs.debian.org; 4 Dec 2005 01:44:40 +0000 >From [EMAIL PROTECTED] Sat Dec 03 17:44:40 2005 Return-path: <[EMAIL PROTECTED]> Received: from meitner.df7cb.de ([217.160.132.97] ident=postfix) by spohr.debian.org with esmtp (Exim 4.50) id 1Eiivg-0005k8-9q for [EMAIL PROTECTED]; Sat, 03 Dec 2005 17:44:40 -0800 Received: from volta.df7cb.de (dslb-084-058-194-229.pools.arcor-ip.net [84.58.194.229]) by meitner.df7cb.de (Postfix) with ESMTP id 0B28220B420 for <[EMAIL PROTECTED]>; Sun, 4 Dec 2005 02:44:39 +0100 (CET) Received: by volta.df7cb.de (Postfix, from userid 1000) id 1CC7C43223; Sun, 4 Dec 2005 02:44:38 +0100 (CET) Date: Sun, 4 Dec 2005 02:44:38 +0100 From: Christoph Berg <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: Re: Bug#341244: wml/developer.wml: all=1 page outdated wrt ddpo_maintainers info Message-ID: <[EMAIL PROTECTED]> Mail-Followup-To: Christoph Berg <[EMAIL PROTECTED]>, [EMAIL PROTECTED] References: <[EMAIL PROTECTED]> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="pE2VAHO2njSJCslu" Content-Disposition: inline In-Reply-To: <[EMAIL PROTECTED]> X-Debbugs-No-Ack: please X-Face: ([EMAIL PROTECTED](D\O)J!Qu\q4fh8W^7WGqxpwTk&Xy0*ya<[EMAIL PROTECTED]/TA:l\Pde>wYj,M;75" N13_k}S.rS#lmX[G]QOuw[H"4#z$tSn$SkV<IurN'6;gkRFZw@/XLtl7":0v&kN3*-iM~q*;.*CfH@ qM>5ucV193Tz3IWj<]8at(6"K.ht//s"Ds,xMV9A\_bN/)[EMAIL PROTECTED]>-dF34Kw?,<G0ya User-Agent: Mutt/1.5.11 X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 (1.212-2003-09-23-exp) on spohr.debian.org X-Spam-Level: X-Spam-Status: No, hits=-9.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER, X_DEBBUGS_NO_ACK autolearn=ham version=2.60-bugs.debian.org_2005_01_02 --pE2VAHO2njSJCslu Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Re: Florian Ernst in <[EMAIL PROTECTED]> > The attached patch against wml/developer.wml corrects and simplifies > the generating of this listing a little bit. NB: $info_array[7] and > higher aren't filled for any entry in ddpo_maintainers, so I > completely left them out as $info_array[9] messed up $count. Thanks, applied. Christoph --=20 [EMAIL PROTECTED] | http://www.df7cb.de/ --pE2VAHO2njSJCslu Content-Type: application/pgp-signature; name="signature.asc" Content-Description: Digital signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (GNU/Linux) iD8DBQFDkkoFxa93SlhRC1oRAn5xAKDfd6yqW6sen6CU4PHQbsYKszhrsACfc2lx pkfZpFwfzvtQOXEqnD09Vck= =tuET -----END PGP SIGNATURE----- --pE2VAHO2njSJCslu-- -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]