diff --git a/checkin_notes b/checkin_notes index 7491d6f1f9..d6dc6e740d 100755 --- a/checkin_notes +++ b/checkin_notes @@ -13093,3 +13093,13 @@ David 4 Dec 2006 sched/ main.C server_types.C + +David 4 Dec 2006 + - scheduler: don't send anything special to browsers. + Send reply as XML. + - simple GUI: work is done by a user, not for a user + + sched/ + server_types.C + clientgui/ + sg_StatImageLoader.cpp diff --git a/clientgui/sg_StatImageLoader.cpp b/clientgui/sg_StatImageLoader.cpp index 485b5ba864..0354ca9fc2 100644 --- a/clientgui/sg_StatImageLoader.cpp +++ b/clientgui/sg_StatImageLoader.cpp @@ -100,7 +100,7 @@ void StatImageLoader::BuildUserStatToolTip() { PROJECT* project = pDoc->state.lookup_project(m_prjUrl); strBuffer.Printf( - _("%s. Work done for %s: %0.2f"), + _("%s. Work done by %s: %0.2f"), wxString(project->project_name.c_str(), wxConvUTF8).c_str(), wxString(project->user_name.c_str(), wxConvUTF8).c_str(), project->user_total_credit diff --git a/doc/boinc_news.php b/doc/boinc_news.php index 53a429f825..12861985bd 100644 --- a/doc/boinc_news.php +++ b/doc/boinc_news.php @@ -1,6 +1,12 @@ A Cast of Thousands, discusses the + Rosetta@home project + and its army of dedicated volunteers." +), array("November 27, 2006", "Jean-Michel Penasse of L'Alliance Francophone has create a web site, diff --git a/doc/help.php b/doc/help.php index c9bf10a959..a832a33abc 100644 --- a/doc/help.php +++ b/doc/help.php @@ -3,7 +3,7 @@ require_once("docutil.php"); require_once("spoken_languages.php"); require_once("help_db.php"); -page_head("BOINC Online Help (Beta)"); +page_head("BOINC Online Help"); echo "

Need help?

@@ -33,13 +33,19 @@ to communicate with Help Volunteers.

Volunteers speaking several languages are available. Please select a language: -
+

"; $langs = get_languages(); +$first = true; foreach ($langs as $lang) { $lang_enc = urlencode($lang); - echo "
Get help in $lang"; + if ($first) { + $first = false; + } else { + echo " | "; + } + echo "$lang"; } echo "

Other sources of help

diff --git a/doc/index.php b/doc/index.php index 0e41e8e678..58b9809cbb 100644 --- a/doc/index.php +++ b/doc/index.php @@ -74,7 +74,8 @@ function show_participate() { such as GridRepublic or BAM!.
- Details + More info + | Help | Download | Web sites | Add-ons diff --git a/doc/participate.php b/doc/participate.php index fe02c2896d..b1377d5815 100644 --- a/doc/participate.php +++ b/doc/participate.php @@ -2,12 +2,15 @@ require_once("docutil.php"); page_head("Participating in BOINC projects"); echo " -

General information

+

Beginning

+ You've + Talk or chat with a BOINC volunteer + for information about BOINC or for help installing BOINC. +

Intermediate