Update of /cvsroot/openfirst/www/htdocs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15677
Modified Files:
bugreports.php
Log Message:
Change the image used to one that's automatically generated in real time. Get rid of the other reports since they weren't being updated and are better retrieved directly from Bugzilla anyway.
Index: bugreports.php
===================================================================
RCS file: /cvsroot/openfirst/www/htdocs/bugreports.php,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** bugreports.php 31 Dec 2004 07:40:35 -0000 1.3
--- bugreports.php 25 May 2005 19:10:30 -0000 1.4
***************
*** 9,26 ****
<center>
<b>Bug Chart</b>
! <br><img src="http://bugzilla.openfirst.org/graphs/-All-_NEW_ASSIGNED_REOPENED_UNCONFIRMED_VERIFIED_LATER_REMIND.png" alt="Bug Chart">
</center>
! <?php
! $bz = fopen("bz.html", "r");
! if($bz) {
! while(!feof($bz)) {
! $line = fgets($bz, 2048);
! if(! strpos($line, "<html>")) {
! echo $line;
! }
! }
! }
! ?>
!
!
--- 9,14 ----
<center>
<b>Bug Chart</b>
! <br><img src="http://bugzilla.openfirst.org/chart.cgi?category=-All-&gt=1&label0=All%20Open&label1=ASSIGNED&label10=REOPENED&label11=RESOLVED&label12=UNCONFIRMED&label13=VERIFIED&label14=WONTFIX&label15=WORKSFORME&label2=CLOSED&label3=DUPLICATE&label4=FIXED&label5=INVALID&label6=LATER&label7=MOVED&label8=NEW&label9=REMIND&labelgt=Grand%20Total&line0=32&line1=18&line10=19&line11=21&line12=20&line13=22&line14=26&line15=30&line2=23&line3=29&line4=24&line5=25&line6=27&line7=31&line8=17&line9=28&name=32&subcategory=-All-&ctype=png&action=plot&width=600&height=350" alt="Bug Chart">
</center>
! <p>For custom bug reports, and bug reports of other styles, see <a href="http://bugzilla.openfirst.org/report.cgi">The openFIRST Bugzilla Server "Reporting and Charting Kitchen"</a>.</p>
\ No newline at end of file
|