logo       

cvs: pearweb / package.php package.xml /cron bug-summary.php: msg#00098

php.pear.core

Subject: cvs: pearweb / package.php package.xml /cron bug-summary.php

cellog Tue Oct 31 21:27:04 2006 UTC

Modified files:
/pearweb package.php package.xml
/pearweb/cron bug-summary.php
Log:
* implement Request #7828: PEAR Bug Summary Report

http://cvs.php.net/viewvc.cgi/pearweb/package.php?r1=1.18&r2=1.19&diff_format=u
Index: pearweb/package.php
diff -u pearweb/package.php:1.18 pearweb/package.php:1.19
--- pearweb/package.php:1.18 Tue Oct 31 21:22:43 2006
+++ pearweb/package.php Tue Oct 31 21:27:04 2006
@@ -22,6 +22,7 @@
* fix REST generation of packagesinfo.xml for categories
* fix Bug #5340: User details are overescaped
* fix Bug #8842: package.xml package name need not match case and must
+ * implement Request #7828: PEAR Bug Summary Report
');
$a->resetUsesrole();
$a->addUsesRole('web', 'Role_Web', 'pearified.com');
http://cvs.php.net/viewvc.cgi/pearweb/package.xml?r1=1.46&r2=1.47&diff_format=u
Index: pearweb/package.xml
diff -u pearweb/package.xml:1.46 pearweb/package.xml:1.47
--- pearweb/package.xml:1.46 Tue Oct 31 21:22:43 2006
+++ pearweb/package.xml Tue Oct 31 21:27:04 2006
@@ -53,7 +53,7 @@
<active>no</active>
</developer>
<date>2006-10-31</date>
- <time>16:22:08</time>
+ <time>16:26:48</time>
<version>
<release>1.0.0RC2</release>
<api>0.1.1</api>
@@ -68,6 +68,7 @@
* fix REST generation of packagesinfo.xml for categories
* fix Bug #5340: User details are overescaped
* fix Bug #8842: package.xml package name need not match case and must
+ * implement Request #7828: PEAR Bug Summary Report
</notes>
<contents>
<dir baseinstalldir="/" name="/">
@@ -873,6 +874,7 @@
* fix REST generation of packagesinfo.xml for categories
* fix Bug #5340: User details are overescaped
* fix Bug #8842: package.xml package name need not match case and must
+ * implement Request #7828: PEAR Bug Summary Report
</notes>
</release>
</changelog>
http://cvs.php.net/viewvc.cgi/pearweb/cron/bug-summary.php?r1=1.8&r2=1.9&diff_format=u
Index: pearweb/cron/bug-summary.php
diff -u pearweb/cron/bug-summary.php:1.8 pearweb/cron/bug-summary.php:1.9
--- pearweb/cron/bug-summary.php:1.8 Mon Sep 18 16:26:52 2006
+++ pearweb/cron/bug-summary.php Tue Oct 31 21:27:04 2006
@@ -16,7 +16,7 @@
* | Authors: Helgi Þormar Þorbjörnsson <dufuz@xxxxxxx> |
* +----------------------------------------------------------------------+
*
- * $Id: bug-summary.php,v 1.8 2006/09/18 16:26:52 cellog Exp $
+ * $Id: bug-summary.php,v 1.9 2006/10/31 21:27:04 cellog Exp $
*/

require_once 'PEAR.php';
@@ -45,14 +45,14 @@
FROM bugdb b
LEFT JOIN packages AS p ON p.name = b.package_name
WHERE
- b.status NOT IN ('Closed', 'Bogus', 'Duplicate', 'No Feedback', 'Wont
fix', 'Suspended', 'Feedback')
+ b.status NOT IN ('Closed', 'Bogus', 'Duplicate', 'No Feedback', 'Wont
fix', 'Suspended')
AND
b.bug_type = 'Bug'
AND
(p.package_type = '$site'
OR
b.package_name IN ('" . implode("', '", $pseudo_pkgs) . "'))
- ORDER BY b.package_name, b.id";
+ ORDER BY b.package_name, b.id, b.status";
$result =& $dbh->getAll($query);

if (count($result) > 0 && !PEAR::isError($result)) {



<Prev in Thread] Current Thread [Next in Thread>
Google Custom Search

News | FAQ | advertise