boinc/checkin_notes

395 lines
11 KiB
Plaintext
Executable File

Rom 4 Jan 2006
- Branding update for GridRepublic
client/win/
boinc_cli.rc
boinc_cmd.rc
boinc_ss.rc
clientgui/
AccountInfoPage.cpp, .h
BOINCGUIApp.cpp, .h
WizardAccountManager.cpp
WizardAttachProject.cpp
resource.h
clientgui/res/
gridrepublic.ico
gridrepublic.xpm
gridrepublicamwizard.xpm (Added)
clientgui/res/
gridrepublic.ico
gridrepublicamwizard.bmp (Added)
win_build/installerv2/
GridRepublic.ism
win_build/installerv2/redist/GridRepublic/
GridRepublic.ico
GridRepublic.url
Rom 4 Jan 2006 (HEAD)
- Tag for 5.3.7 release, all platforms
boinc_core_release_5_3_7
David 4 Jan 2006
- replace safe_strncpy() with strlcpy() everywhere.
Same semantics, but the former is less efficient.
- simplified Bruce's recent fix to escape_string()
checkin_notes_2005 (new - Woo Hoo!)
api/
boinc_api.C
client/win/
hostinfo_win.cpp
db/
db_base.C
lib/
app_ipc.C
diagnostics.C
filesys.C
language.C
parse.C
util.C,h
sched/
handle_request.C
tools/
backend_lib.C
David 4 Jan 2006
- scheduler: scan_work_array(): if add_result_to_reply() fails, do NOT
reinsert the entry in the array by resetting the "present" flag.
We previously cleared this flag,
so the array entry may have been refilled by the feeder,
and it might be in the CHECKED_OUT state.
(from Paul Buck)
sched/
sched_array.C
Bruce 5 Jan 2006
- Fixed David's mistake in simplifying my fix to escape_string()!
db/
db_base.C
David 4 Jan 2006
- fixed inefficient unescape_string()
db/
db_base.C
Bruce 5 Jan 2006
- Fixed new unescape_string(): didn't null terminate string.
db/
db_base.C
Bruce 6 Jan 2006
- Nasty bug in API lib. See checkin_nodes_2004 December 22.
Functions meant to be used from within C should never be
declared bool!
Fix: change boinc_is_standalone() to return int not bool.
Note: some API functions still return bools, but since E@H
doesn't use them and I am afraid of doing damage, I have
left them alone.
api/
boinc_api.C
boinc_api.h
graphics_impl.h
graphics_impl_lib.C
Rom 6 Jan 2006
- Branding update for GridRepublic
clientgui/
AccountInfoPage.cpp
AccountManagerProcessingPage.cpp
AccountManagerPropertiesPage.cpp
BOINCGUIApp.cpp, .h
BOINCGUIApp.rc
CompletionPage.cpp, .h
MainFrame.cpp
resource.h
clientgui/res/
gridrepublic2.ico (Added)
win_build/installerv2/
GridRepublic.ism
win_build/installerv2/redist/GridRepublic/
acct_mgr_url.xml
GR_splash.bmp
Rom 6 Jan 2006 (HEAD)
- Tag for 5.3.8 release, all platforms
boinc_core_release_5_3_8
David 6 Jan 2006
- fix unitialized var
client/
net_stats.C
David 6 Jan 2006
- feeder: exit on database errors.
This is a workaround for a problem where the
feeder loses its DB connection after 10-20 hours of idleness.
With this change, the feeder will exit, and will be restarted by cron.
sched/
feeder.C
David 6 Jan 2006
- Tweak the account manager system to support "farm managers"
that use GUI RPC to control clients.
The farm manager needs the GUI RPC port and password of each client.
Add an optional <send_gui_rpc_info/> element to the
acct_mgr_url.xml file,
which causes the GUI RPC port and password to be included
in account manager RPC requests.
(From James Drews)
client/
acct_mgr.C,h
David 6 Jan 2006
- Change "bool" to "int" in the BOINC API.
C and C++ compilers differ in their allocation for bool,
making it difficult for C applications
(which must be compiled with particular compilers)
to use the BOINC API.
No such problem for int.
(from Bruce Allen)
api/
boinc_api.C,h
David 8 Jan 2006
- Account manager additions (from Willy de Zutter)
- Include <previous_host_cpid> in AM request.
This is the host CPID sent in the previous AM request.
It lets the AM track hosts even when their CPIDs change.
- Include <domain_name> in AM request
- AM replies can include <message> elements.
The contents are printed in the Messages tab.
- Print message that AM request has succeeded (or failed)
client/
acct_mgr.C,h
lib/
hostinfo.C
David 9 Jan 2006
- user web: show bbcode correctly for UOTD
html/user/
sample_index.php
Bruce 9 Jan 2006
- fix bug on page that shows profile for a given user. The total
number of posts made by a given user is not shown correctly.
The PHP code assumes that this number is given by user.posts. However
in html/inc/db_forum.inc, the value of user.posts is NOT
incremented each time a user makes a new post (either starting
a new thread or replying to an existing one). For the moment, my
the fix is to simply scan the database and count the number of posts by the
user, to give the right value on the profile page.
An alternative fix (which would be less DB intensive, overall)
is to (1) fix db_forum.inc so that it properly increments user.posts and
then (2) add an update_db.php script entry that correctly sets user.posts
by counting the number of posts for each user.
html/
inc/
user.inc
Rom 9 Jan 2006 (HEAD)
- Initial CPDN/BBC branded client
client/win/
boinc_cli.rc
boinc_cmd.rc
boinc_dll.rc
boinc_ss.rc
clientgui/
AccountInfoPage.cpp
BOINCBaseView.cpp, .h
BOINCGUIApp.cpp
BOINCGUIApp.rc
DlgAbout.cpp, .h
MainFrame.cpp
ViewMessages.cpp
ViewProjects.cpp
ViewResources.cpp
ViewStatistics.cpp
ViewTransfers.cpp
ViewWork.cpp, .h
win_build/
cpdnbbc.sln (added)
cpdnbbc_boinc_cli_curl.vcproj (added)
cpdnbbc_boinc_dll.vcproj (added)
cpdnbbc_boinc_ss.vcproj (added)
cpdnbbc_boinccmd.vcproj (added)
cpdnbbc_boincmgr_curl.vcproj (added)
win_build/installerv2/
CPDNBBC.ism (added)
win_build/installerv2/redist/CPDNBBC/
Climate Change Experiment.url (added)
project_init.xml
Rom 9 Jan 2006 (HEAD)
- Tag for 5.3.9 release, all platforms
boinc_core_release_5_3_9
Bruce 9 Jan 2006
- Fixes to BOINC zip library from Carl Christensen. Carl says:
"I found a problem with boinc_zip; it seems some Linux STL's
aren't very nice about classes that are inherited from their
objects on multiple use; or huge file lists that we use on CPDN.
So I rewrite it to just use "straight" std::string's in a vector.
It's fully backwardly compatible and seems to work fine."
zip/
boinc_zip.h
boinc_zip.cpp
David 9 Jan 2006
- changed upper_case so that the -cpu_time option
takes an arg: the # of CPU seconds to use.
apps/
upper_case.C
Charlie 10 Jan 2006
-Mac: Fix minor bugs in internal scripts in XCode 2.2 project. Changes to
BOINC Manager to accomodate Rom's changes for branding.
clientgui/
BOINCGUIApp.cpp
mac/
MacSysMenu.cpp, .h
mac_build/
boinc.xcodeproj/
project.pbxproj
David 10 Jan 2006
- core client: fix vector erase code in GUI RPC.
Thanks to Darrel Holz for finding this.
client/
gui_rpc_server.C
David 10 Jan 2006
- Add XML option for team lookup web interface
html/
inc/
xml.inc
user/
team_lookup.php
Bruce 11 Jan 2006
- Skip test for excessive CPU time, IF hostid has changed
because host has been cloned. If result is resent to
the 'new' host then this can make it appear that the
result was completed shortly after it was sent.
sched/
handle_request.C
Charlie 10 Jan 2006
-Mac: Get BrandID from file put inside application bundle by installer.
clientgui/
BOINCGUIApp.cpp
Bruce 11 Jan 2006
- Documentation: describe boinc_is_standalone() in documentation.
doc/
api.php
David 11 Jan 2006
- file upload handler: allow upload if offset if < size
(this can now happen, since the client skips size check
for files < 1 MB)
sched/
file_upload_handler.C
David 11 Jan 2006
- Core client: add a flow control mechanism for the case where
output files are generated faster than they can be uploaded
(otherwise we'll fill up the disk).
The mechanism: don't start new results for a project
that has > 2 uploads in progress.
Note: this actually happens with Cunning Plan
(5 MB output files, 60 sec CPU) over a DSL line
client/
client_types.h
cs_apps.C
David 11 Jan 2006
- core client: on file upload, always get file size (even if small file).
Before the file upload handler checkin earlier today,
this was actually a bug:
if a client had uploaded part of a small file and then failed,
it would never be able to upload the rest.
But it was probably a bad idea in the first place,
since 1 MB is a large file from the viewpoint of a modem user.
client/
file_xfer.C
Charlie 10 Jan 2006
-Mac: Mac System Menu uses menubar icon selected by
CBrandingScheme::OnInit() .
clientgui/
BOINCGUIApp.cpp
mac/
MacSysMenu.cpp
res/
gridrepublic_mac.xpm (new)
David 11 Jan 2006
- Core client: remove "unknown project" from message
where general prefs don't come from a known project.
They might come from an account manager.
(from Willy de Zutter)
client/
cs_prefs.C
Bruce 12 Jan 2006
- file_upload_handler: log a message when the client is starting an upload
from the wrong offset. This problem should gradually go away as users
update to more current clients.
sched/
file_upload_handler.C
David 12 Jan 2006
- Web RPC: fixed bug in am_set_info.php that caused password_hash
to not update.
(from Willy de Zutter)
html/user/
am_set_info.php
David 12 Jan 2006
- Initialize user/team/host.expavg_time with current time.
This avoids inaccurate initial values for RAC.
From Bruce Allen.
html/user
create_account.php
create_account_action.php
team_create_action.php
sched/
handle_request.C
Rom 13 Jan 2006 (HEAD)
- Tag for 5.3.10 release, all platforms
boinc_core_release_5_3_10