[Compbench-web-devel] compbenchmarks-web/cgi-bin index.cgi, 1.31, 1.32
Brought to you by:
xfred
|
From: Frederic T. <xf...@us...> - 2006-11-29 19:18:21
|
Update of /cvsroot/compbench/compbenchmarks-web/cgi-bin In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv4137 Modified Files: index.cgi Log Message: English correctness. Uses the news.pl. Index: index.cgi =================================================================== RCS file: /cvsroot/compbench/compbenchmarks-web/cgi-bin/index.cgi,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -d -r1.31 -r1.32 *** index.cgi 12 Oct 2006 16:36:25 -0000 1.31 --- index.cgi 29 Nov 2006 19:18:10 -0000 1.32 *************** *** 6,9 **** --- 6,10 ---- push(@INC, "../lib"); require "html.pl"; + require "news.pl"; our $dbh; *************** *** 13,16 **** --- 14,18 ---- $req->delete_all(); html_init('index'); + print "<h2>Welcome</h2> <p>CompBenchmarks is a benchmarking environment for compilers :</p> *************** *** 24,28 **** <p>Of course, interrested people are encouraged to :</p> <ul> ! <li><a href='http://sourceforge.net/project/showfiles.php?group_id=150828'>download</a> the benchmarks, <a href='/cgi-bin/doc.cgi?tab=package'>run them</a>, and share them (unregister volonteers can \n<a href='mailto:fred\@linuxtribe.org?subject=CompilerBenchmarks::Results'>use e-mail</a>)\n</li> <li><a href='mailto:fred\@linuxtribe.org?subject=CompilerBenchmarks::New_account'>ask for an account</a> to directly send results to the database</li> <li>or help me in improving either portal or benchmark suite</li> --- 26,30 ---- <p>Of course, interrested people are encouraged to :</p> <ul> ! <li><a href='http://sourceforge.net/project/showfiles.php?group_id=150828'>download</a> the benchmarks, <a href='/cgi-bin/doc.cgi?tab=package'>run them</a>, and share them (unregistered volonteers can \n<a href='mailto:fred\@linuxtribe.org?subject=CompilerBenchmarks::Results'>use e-mail</a>)\n</li> <li><a href='mailto:fred\@linuxtribe.org?subject=CompilerBenchmarks::New_account'>ask for an account</a> to directly send results to the database</li> <li>or help me in improving either portal or benchmark suite</li> *************** *** 31,44 **** <p>I'd especially want to thanks <a href='mailto:kstevens715\@charter.net'>Kyle Stevens</a> for his great feedback and for his patience. Thanks again guy !</p> <h2>News</h2> ! <ul> ! <li>2006-10-21 : 0.3.2 released (<a href='http://sourceforge.net/project/shownotes.php?release_id=454947&group_id=150828'>Changes</a>, <a href='http://sourceforge.net/project/showfiles.php?group_id=150828&package_id=166676&release_id=454947'>download section</a>). Almost 9000+ results in database.</li> ! <li>2006-10-04 : 0.3.1 released (<a href='http://sourceforge.net/project/shownotes.php?release_id=452844&group_id=150828'>Changes</a>, <a href='http://sourceforge.net/project/showfiles.php?group_id=150828&package_id=166676&release_id=452844'>download section</a>). 4500+ more results imported.</li> ! <li>2006-09-27 : CompBenchmarks suite 0.3.0 is out (<a href='http://sourceforge.net/project/shownotes.php?release_id=450931&group_id=150828'>Changes</a>, <a href='http://sourceforge.net/project/showfiles.php?group_id=150828&package_id=166676&release_id=450931'>download section</a>)</li> ! <li>2006-09-26 : Web site upgraded. First results (1800) from 0.3.0-BETA1 imported.</li> ! <li>2006-09-20 : First BETA of 0.3.0 benchmark's suite is out. Check it on <a href='http://sourceforge.net/project/showfiles.php?group_id=150828&package_id=166676'>SourceForge download page</a>. New portal'll few online in about two weeks.</li> ! <li>2006-08-26 : I've decided to rewrite suite in C++, to make it more user friendly. Work in progress.</li> ! <li>2005-11-16 : Site updated. New benchmarks suite is coming. 7000+ results in database.</li> ! <li>2005-10-22 : Benchmark suite <a href='http://sourceforge.net/project/showfiles.php?group_id=150828'>0.1.2BETA is out</a>. Many improvements concerning user interface. Sanity checks.</li> ! </ul>"; html_end(); --- 33,40 ---- <p>I'd especially want to thanks <a href='mailto:kstevens715\@charter.net'>Kyle Stevens</a> for his great feedback and for his patience. Thanks again guy !</p> <h2>News</h2> ! <ul>"; ! ! news_display($dbh); ! print "</ul>"; html_end(); |