diff --git a/checkin_notes b/checkin_notes index ed8beacc25..e04b4323f1 100755 --- a/checkin_notes +++ b/checkin_notes @@ -25711,3 +25711,10 @@ Rom 9 Mar 2005 clientgui/ MainFrame.cpp, .h + +David 9 Mar 2005 + - db_dump: add UNIX time to directory names for old stats + (so that you can run db_dump more than once pre day) + + sched/ + db_dump.C diff --git a/doc/download.php b/doc/download.php index 07d4e26394..2bd52ad651 100755 --- a/doc/download.php +++ b/doc/download.php @@ -63,7 +63,7 @@ function sea() { } function mac_simple() { - return "Simple GUI (test version)"; + return "Menubar (simple GUI)"; } function mac_advanced() { diff --git a/doc/index.php b/doc/index.php index 9fe95568ac..bc258a3834 100644 --- a/doc/index.php +++ b/doc/index.php @@ -65,6 +65,11 @@ echo " BOINC is supported by the National Science Foundation through award SCI/0221529. + +Any opinions, findings, and conclusions or recommendations expressed in +this material are those of the author(s) +and do not necessarily reflect the views of the National Science Foundation. +
diff --git a/doc/trickle_impl.php b/doc/trickle_impl.php index a4f7017a03..1c94d05075 100644 --- a/doc/trickle_impl.php +++ b/doc/trickle_impl.php @@ -5,17 +5,19 @@ echo "

On the client, boinc_send_trickle_up() -creates a file 'trickle' in the slot directory +creates a file 'trickle_up' in the slot directory and signals the core client via shared memory. When the core client gets this signal, or when the application exits, it moves the file from 'slot/trickle' -to 'project/trickle_resultid_time'. +to 'project/trickle_up_resultid_time'.

When the core client sends an RPC to a server, it scans the project directory for these trickle-up files -and includes them in the request. -On successful RPC completion it deletes the files. +includes them in the request, +and appends '.sent' to their filenames. +On successful RPC completion it deletes trickle-up files +that were sent earlier.

On the server, diff --git a/sched/db_dump.C b/sched/db_dump.C index a37054898b..fced41ca14 100644 --- a/sched/db_dump.C +++ b/sched/db_dump.C @@ -837,12 +837,13 @@ int main(int argc, char** argv) { struct tm* tmp; time_t now = time(0); tmp = gmtime(&now); - sprintf(buf, "mv %s %s_%d_%d_%d", + sprintf(buf, "mv %s %s_%d_%d_%d_%d", spec.final_output_dir, spec.final_output_dir, tmp->tm_mday, tmp->tm_mon+1, - 1900+tmp->tm_year + 1900+tmp->tm_year, + now ); retval = system(buf); if (retval) {