mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=2157
This commit is contained in:
parent
5ffa2048f7
commit
1f709e3b7e
|
@ -5849,3 +5849,12 @@ Karl 2003/08/18
|
|||
test/*.py
|
||||
|
||||
astropulse/*/*.C
|
||||
|
||||
Karl 2003/08/19
|
||||
- misc test case updates
|
||||
|
||||
Karl 2003/08/20
|
||||
- changed 'active_frac' initial assumption to "on" instead of the current
|
||||
state
|
||||
|
||||
time_stats.C
|
||||
|
|
|
@ -2,18 +2,18 @@
|
|||
// Version 1.0 (the "License"); you may not use this file except in
|
||||
// compliance with the License. You may obtain a copy of the License at
|
||||
// http://boinc.berkeley.edu/license_1.0.txt
|
||||
//
|
||||
//
|
||||
// Software distributed under the License is distributed on an "AS IS"
|
||||
// basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
|
||||
// License for the specific language governing rights and limitations
|
||||
// under the License.
|
||||
//
|
||||
// The Original Code is the Berkeley Open Infrastructure for Network Computing.
|
||||
//
|
||||
// under the License.
|
||||
//
|
||||
// The Original Code is the Berkeley Open Infrastructure for Network Computing.
|
||||
//
|
||||
// The Initial Developer of the Original Code is the SETI@home project.
|
||||
// Portions created by the SETI@home project are Copyright (C) 2002
|
||||
// University of California at Berkeley. All Rights Reserved.
|
||||
//
|
||||
// University of California at Berkeley. All Rights Reserved.
|
||||
//
|
||||
// Contributor(s):
|
||||
//
|
||||
|
||||
|
@ -54,7 +54,7 @@ void TIME_STATS::update(bool is_connected, bool is_active) {
|
|||
|
||||
on_frac = 1;
|
||||
connected_frac = is_connected?1:0;
|
||||
active_frac = is_active?1:0;
|
||||
active_frac = true;
|
||||
first = false;
|
||||
last_update = now;
|
||||
} else {
|
||||
|
|
|
@ -281,7 +281,7 @@ IDI_ICONSMALL ICON DISCARDABLE "res\\iconsmall.ico"
|
|||
//
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION 1,0,9,0
|
||||
FILEVERSION 1,0,12,0
|
||||
PRODUCTVERSION 1,0,8,0
|
||||
FILEFLAGSMASK 0x3fL
|
||||
#ifdef _DEBUG
|
||||
|
@ -300,14 +300,14 @@ BEGIN
|
|||
VALUE "Comments", "\0"
|
||||
VALUE "CompanyName", "Space Sciences Laboratory\0"
|
||||
VALUE "FileDescription", "boinc_gui\0"
|
||||
VALUE "FileVersion", "1, 0, 9, 0\0"
|
||||
VALUE "FileVersion", "1, 0, 12, 0\0"
|
||||
VALUE "InternalName", "boinc_gui\0"
|
||||
VALUE "LegalCopyright", "Copyright © 2003 SETI@home\0"
|
||||
VALUE "LegalTrademarks", "\0"
|
||||
VALUE "OriginalFilename", "boinc_gui.exe\0"
|
||||
VALUE "PrivateBuild", "\0"
|
||||
VALUE "ProductName", "BOINC Core Client\0"
|
||||
VALUE "ProductVersion", "1, 0, 9, 0\0"
|
||||
VALUE "ProductVersion", "1, 0, 12, 0\0"
|
||||
VALUE "SpecialBuild", "\0"
|
||||
END
|
||||
END
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Generated by db_def_to_py on Tue Jul 29 14:13:20 PDT 2003
|
||||
# Generated by db_def_to_py on Tue Aug 19 15:03:51 PDT 2003
|
||||
MAX_BLOB_SIZE = 4096
|
||||
TEAM_TYPE_CLUB = 1
|
||||
TEAM_TYPE_COMPANY = 2
|
||||
|
@ -15,7 +15,8 @@ ASSIMILATE_READY = 1
|
|||
ASSIMILATE_DONE = 2
|
||||
WU_ERROR_COULDNT_SEND_RESULT = 1
|
||||
WU_ERROR_TOO_MANY_ERROR_RESULTS = 2
|
||||
WU_ERROR_TOO_MANY_RESULTS = 4
|
||||
WU_ERROR_TOO_MANY_SUCCESS_RESULTS = 4
|
||||
WU_ERROR_TOO_MANY_TOTAL_RESULTS = 8
|
||||
RESULT_SERVER_STATE_INACTIVE = 1
|
||||
RESULT_SERVER_STATE_UNSENT = 2
|
||||
RESULT_SERVER_STATE_UNSENT_SEQ = 3
|
||||
|
|
|
@ -10,7 +10,6 @@ TESTS = test_sanity.py \
|
|||
test_rsc.py \
|
||||
test_exit.py \
|
||||
test_signal.py \
|
||||
test_backend.py \
|
||||
test_masterurl_failure.py
|
||||
|
||||
# TODO: phase out php stuff
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?php
|
||||
// Generated by db_def_to_php on Tue Jul 29 14:13:12 PDT 2003
|
||||
// Generated by db_def_to_php on Tue Aug 19 15:03:45 PDT 2003
|
||||
define("MAX_BLOB_SIZE", 4096);
|
||||
define("TEAM_TYPE_CLUB", 1);
|
||||
define("TEAM_TYPE_COMPANY", 2);
|
||||
|
@ -16,7 +16,8 @@
|
|||
define("ASSIMILATE_DONE", 2);
|
||||
define("WU_ERROR_COULDNT_SEND_RESULT", 1);
|
||||
define("WU_ERROR_TOO_MANY_ERROR_RESULTS", 2);
|
||||
define("WU_ERROR_TOO_MANY_RESULTS", 4);
|
||||
define("WU_ERROR_TOO_MANY_SUCCESS_RESULTS", 4);
|
||||
define("WU_ERROR_TOO_MANY_TOTAL_RESULTS", 8);
|
||||
define("RESULT_SERVER_STATE_INACTIVE", 1);
|
||||
define("RESULT_SERVER_STATE_UNSENT", 2);
|
||||
define("RESULT_SERVER_STATE_UNSENT_SEQ", 3);
|
||||
|
|
Loading…
Reference in New Issue