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