From 7e60d8baf1593c1f95938517c9b418f3eca02d4e Mon Sep 17 00:00:00 2001 From: Lana Alber Date: Thu, 23 Sep 2004 00:12:19 +0000 Subject: [PATCH] *** empty log message *** svn path=/trunk/boinc/; revision=4227 --- checkin_notes | 8 ++++++++ html/inc/download.inc | 6 +++--- html/inc/util.inc | 4 ++++ 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/checkin_notes b/checkin_notes index a11d8f181c..d2d4b1d004 100755 --- a/checkin_notes +++ b/checkin_notes @@ -17591,6 +17591,14 @@ David 22 Sept 2004 client_state.C client_types.C,h +Lana 22 Sept 2004 + - included MD5 Checksum in the Core Client download page + + html/ + inc/ + util.inc + download.inc + Rom 22 Sept 2004 - Fix CPU Scheduler bug on a multi-proc machine after a project reset where the core client gets stuck in a loop trying to schedule work that does diff --git a/html/inc/download.inc b/html/inc/download.inc index 4e6dc2e3f4..a4161c2cb8 100644 --- a/html/inc/download.inc +++ b/html/inc/download.inc @@ -14,11 +14,11 @@ function platform_downloads($platform) { $version = sprintf("%.2f", $core_version->version_num/100); $url = parse_element($core_version->xml_doc, ""); $date = date_str($core_version->create_time); + $md5_cksum = parse_element($core_version->xml_doc,""); if ($core_version->create_time > time()-($NEW_THRESHOLD*60*60*24)) { $date .= ' New!'; } - row3("$platform->user_friendly_name", $version, $date); - //$app_version->md5_cksum"; + row4("$platform->user_friendly_name", $version, $date, $md5_cksum); $found = true; } @@ -29,7 +29,7 @@ function print_download_links() { start_table(); echo "Computer type
click to download - VersionRelease Date\n + VersionRelease DateMD5 Checksum\n "; $result = mysql_query("select * from platform order by name"); while ($platform = mysql_fetch_object($result)) { diff --git a/html/inc/util.inc b/html/inc/util.inc index 253736cd77..fb9be2984f 100644 --- a/html/inc/util.inc +++ b/html/inc/util.inc @@ -226,6 +226,10 @@ function row3($x, $y, $z) { echo "$x$y$z\n"; } +function row4($w, $x, $y, $z) { + echo "$w$x$y$z\n"; +} + function rowify($string) { echo "$string"; }