From fe32380dcfb9130d516e9c26bc46cb55b4cb517f Mon Sep 17 00:00:00 2001 From: David Anderson Date: Mon, 23 Apr 2007 16:14:47 +0000 Subject: [PATCH] David 23 Apr 2007 - make_project: remove --no_test_app option, add --test_app option - make_project: initial config in all cases has one_result_per_user_per_wu = 0 - sample_assimilator: make it able to handle > 1 output file - boinc_cmd: make --help output more readable - User web: fix some undefined vars in translation.inc Rytis: let's try to fix PHP runtime warnings - DB: add default values for app table (avoid MySQL warnings) db/ schema.sql html/ inc/ translation.inc uotd.inc ops/ update_forum_activities.php lib/ str_util.C boinc_cmd.C py/Boinc/ setup_project.py sched/ sample_work_generator.C sample_assimilator.C tools/ make_project uc_wu, uc_result (new) svn path=/trunk/boinc/; revision=12450 --- checkin_notes | 29 ++++++++++++++++++ db/schema.sql | 10 +++---- doc/api.php | 2 +- doc/build.php | 2 +- doc/build_client.php | 2 +- doc/compile.php | 4 +-- doc/configuration.php | 2 +- doc/files.php | 2 +- doc/graphics.php | 2 +- doc/intro.php | 2 +- doc/make_project.php | 2 +- doc/platform.php | 2 +- doc/project_cookbook.php | 2 +- doc/project_options.php | 2 +- doc/python.php | 2 +- doc/recruit.php | 2 +- doc/redundancy.php | 2 +- doc/test.php | 2 +- html/inc/translation.inc | 7 +++-- html/inc/uotd.inc | 2 +- html/ops/update_forum_activities.php | 3 ++ lib/boinc_cmd.C | 40 ++++++++++++++----------- lib/str_util.C | 1 + py/Boinc/setup_project.py | 14 ++++----- sched/sample_assimilator.C | 45 ++++++++++++++++++++-------- sched/sample_work_generator.C | 17 +++++++++-- tools/make_project | 17 ++++++----- tools/uc_result | 13 ++++++++ tools/uc_wu | 10 +++++++ 29 files changed, 168 insertions(+), 74 deletions(-) create mode 100644 tools/uc_result create mode 100644 tools/uc_wu diff --git a/checkin_notes b/checkin_notes index b3a8cd1ded..8b2da746e6 100755 --- a/checkin_notes +++ b/checkin_notes @@ -3885,3 +3885,32 @@ Bruce 20 April 2007 sched/ sched_locality.C +David 23 Apr 2007 + - make_project: remove --no_test_app option, add --test_app option + - make_project: initial config in all cases has + one_result_per_user_per_wu = 0 + - sample_assimilator: make it able to handle > 1 output file + - boinc_cmd: make --help output more readable + - User web: fix some undefined vars in translation.inc + Rytis: let's try to fix PHP runtime warnings + - DB: add default values for app table (avoid MySQL warnings) + + db/ + schema.sql + html/ + inc/ + translation.inc + uotd.inc + ops/ + update_forum_activities.php + lib/ + str_util.C + boinc_cmd.C + py/Boinc/ + setup_project.py + sched/ + sample_work_generator.C + sample_assimilator.C + tools/ + make_project + uc_wu, uc_result (new) diff --git a/db/schema.sql b/db/schema.sql index 01675d1e16..3c1111f67c 100644 --- a/db/schema.sql +++ b/db/schema.sql @@ -41,12 +41,12 @@ create table app ( id integer not null auto_increment, create_time integer not null, name varchar(254) not null, - min_version integer not null, - deprecated smallint not null, + min_version integer not null default 0, + deprecated smallint not null default 0, user_friendly_name varchar(254) not null, - homogeneous_redundancy smallint not null, - weight double not null, - beta smallint not null, + homogeneous_redundancy smallint not null default 0, + weight double not null default 1, + beta smallint not null default 0, primary key (id) ) type=InnoDB; diff --git a/doc/api.php b/doc/api.php index 930e948a83..8b6a0c0aa9 100644 --- a/doc/api.php +++ b/doc/api.php @@ -1,6 +1,6 @@ The BOINC API is a set of C++ functions. diff --git a/doc/build.php b/doc/build.php index 4960d986da..a4d88e6b23 100644 --- a/doc/build.php +++ b/doc/build.php @@ -1,7 +1,7 @@ http://boinc.berkeley.edu.

-See the Software Prerequisites. +See the Software Prerequisites.

Unix, Mac OS/X

diff --git a/doc/compile.php b/doc/compile.php index 4318563d92..0fe745e96c 100644 --- a/doc/compile.php +++ b/doc/compile.php @@ -6,14 +6,14 @@ echo " THIS FILE IS DEPRECATED. DON'T LINK TO IT.

Basics

Platform-specific cookbooks