blob: 05d1c0b9ebdab9299d50107eed019f4ae9b94dd3 [file] [log] [blame]
<?php
require_once($_SERVER['DOCUMENT_ROOT'] . "/bpel/_boot.php");
_require( "/projects/common/project_bugs.class.php");
$our_bugs = new ProjectBugs("technology.bpel")
?>
<div id="maincontent">
<div id="midcolumn">
<h1>Huston... We've got bugs:</a></h1>
<ul>
<?php
//our bugs as a list
for($i = 0; $i < $our_bugs->hasbugs(); $i++)
{
// Get each bug
$a_bug = $our_bugs->getBug($i);
?>
<li>Votes: <?= $a_bug->getVotes() ?> <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=<?= $a_bug->getBugId() ?>" title="Bug #<?= $a_bug->getBugId()?>"><?= $a_bug->getDescription() ?></a></li>
<?
}
?>
</ul>
<p>
<br/>
<br/>&nbsp;
</p>
</div>
<div id="rightcolumn">
<?php
// pass the title of the sidebar et voila!
$our_bugs->getAsSideHTML("Our Top Voted Bugs");
?>
</div>
</div>
<?php bpel_generate_page() ?>