From c695c0f1e6aea662558743f1ed202727ed496c11 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Tue, 6 Mar 2007 18:22:04 +0000 Subject: [PATCH] *** empty log message *** svn path=/trunk/boinc/; revision=12193 --- checkin_notes | 10 ++++++ doc/boinc_news.php | 6 ++++ html/inc/prefs.inc | 16 +++++---- html/user/host_venue_action.php | 61 +++++++++++++++++---------------- 4 files changed, 58 insertions(+), 35 deletions(-) diff --git a/checkin_notes b/checkin_notes index 8dcc05787d..9d24d1b8ac 100755 --- a/checkin_notes +++ b/checkin_notes @@ -2204,3 +2204,13 @@ Rom 6 Mar 2007 lib/ gui_rpc_client.h gui_rpc_client_ops.C + +David 6 Mar 2007 + - User web: add "none" as an option for default host venue; + display this as "---" or "--- (none)" + + html/ + inc/ + prefs.inc + user/ + host_venue_action.php diff --git a/doc/boinc_news.php b/doc/boinc_news.php index b0952a7131..008f4c589e 100644 --- a/doc/boinc_news.php +++ b/doc/boinc_news.php @@ -1,6 +1,12 @@ Idle Cycles - building distributed applications with BOINC Seil appears in the Oct 2006 issue of +Linux Magazine. +In it, author Marc Seil +provides a detailed description of how to set up a BOINC project." +), array("March 1, 2007", "With BOINCpe you can run a dedicated BOINC machine using a RAM disk, diff --git a/html/inc/prefs.inc b/html/inc/prefs.inc index 65b54ba564..eccfd0063f 100644 --- a/html/inc/prefs.inc +++ b/html/inc/prefs.inc @@ -1128,16 +1128,20 @@ function prefs_form_project($prefs_xml, $error=false) { } function venue_show($user) { - row2("Default computer location", $user->venue); + $venue = $user->venue; + if ($venue =='') $venue = '---'; + row2("Default computer location", $venue); } function venue_form($user) { - $h=$w=$s=""; - if ($user->venue == "home") $h = "selected"; - if ($user->venue == "work") $w = "selected"; - if ($user->venue == "school") $s = "selected"; - row2("Default computer location", + $n=$h=$w=$s=''; + if ($user->venue == '') $n = 'selected'; + if ($user->venue == 'home') $h = 'selected'; + if ($user->venue == 'work') $w = 'selected'; + if ($user->venue == 'school') $s = 'selected'; + row2('Default computer location', "