blob: a96aac0e8d8d6c1ac2a23424502ac32749ef4a06 [file] [log] [blame]
<html>
<head></head>
<body>
Committers (Section 1)<br/>
<br/>
mgolubev<br/>
<br/>
Developers (Section 2)<br/>
<br/>
<b>component, bug #, contributor, size, description</b><br/>
<?php
#
# Scripts for retrieving IP log information.
#
# Load up the classfile
require_once "/home/data/httpd/eclipse-php-classes/system/dbconnection_bugs_ro.class.php";
# Connect to database
$dbc = new DBConnectionBugs();
$dbh = $dbc->connect();
# NOTE: product_id = 67 is MDT, bug_status = 5 is RESOLVED, resolution = 2 is FIXED, 'contributed' keyword id = 22
$sql_info = "SELECT
attachments.filename,
attachments.description,
attachments.ispatch,
attachments.bug_id,
attachments.submitter_id,
LENGTH(attach_data.thedata) AS size,
bugs.short_desc,
components.name,
profiles.login_name
FROM
attachments, attach_data, bugs, components, keywords, profiles
WHERE
attachments.ispatch = 1 AND
attachments.isobsolete = 0 AND
attachments.bug_id = bugs.bug_id AND
attachments.attach_id = attach_data.id AND
components.id = bugs.component_id AND
bugs.bug_id = keywords.bug_id AND
keywords.keywordid = 22 AND
profiles.userid = attachments.submitter_id AND
bugs.product_id = 67
ORDER BY profiles.login_name";
$rs = mysql_query($sql_info, $dbh);
if(mysql_errno($dbh) > 0) {
echo "There was an error processing this request: " . $sql_info . " : ";
# For debugging purposes - don't display this stuff in a production page.
echo mysql_error($dbh);
# Mysql disconnects automatically, but I like my disconnects to be explicit.
$dbc->disconnect();
exit;
}
while($myrow = mysql_fetch_assoc($rs)) {
echo $myrow['name'] . "," . "<a href=\"https://bugs.eclipse.org/bugs/show_bug.cgi?id=" . $myrow['bug_id'] . "\">" . $myrow['bug_id'] . "</a>" . "," . $myrow['login_name'] . "," . $myrow['size'] . "," . str_replace(",", " ", $myrow['short_desc']) . " (" . str_replace(",", " ", $myrow['description']) . ")<br/>";
}
$dbc->disconnect();
$rs = null;
$dbh = null;
$dbc = null;
?>
<br/>
Third Party Software (Section 3)<br/>
<br/>
None
</body>
</html>