forked from BOINC/boinc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
checkin_notes_2006
13904 lines (11480 loc) · 402 KB
/
checkin_notes_2006
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
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
David 13 Jan 2006
- core client: handle HTTP "continue" status.
I don't understand what this is, but hopefully this fixes
some network problems.
(from Ian Hay).
client/
http_curl.h
net_xfer_curl.C
David 14 Jan 2006
- user web: forum fix (from Rob Ogilvie)
html/inc/
forum.inc
Janus 15 Jan 2006
- web: Fixed a special situation where the caching mechanism used on
(amongst others) the frontpage would always refresh from the serverside
cache regardless of whether the client had a fresh copy. (from Rob)
html/inc/
cache.inc
David 14 Jan 2006
- core client: If there's only one potentially runnable project,
ask it for work no matter how negative its debt
(from Glenn Dill)
client/
cs_scheduler.C
Rom 15 Jan 2006
- CPDB BBC update
clientgui/
AccountInfoPage.cpp, .h
BOINCBaseWizard.h
BOINCGUIApp.cpp, .h
CompletionPage.cpp
ProjectProcessingPage.cpp
ProjectPropertiesPage.cpp
WizardAttachProject.cpp, .h
Rom 15 Jan 2006 (HEAD)
- Tag for 5.3.11 release, all platforms
boinc_core_release_5_3_11
David 15 Jan 2006
- core client: add "-daemon" option (uses daemon() system call
to detach from controlling terminal)
From Jan Gall
client/
cs_cmdline.C
main.C
David 15 Jan 2006
- GUI RPC: added optional <scheduler_rpc_in_progress/> element
to <project> elements in GUI RPC replies
client/
client_state.h
client_types.C
scheduler_op.h
lib/
gui_rpc_client.h
gui_rpc_client_ops.C
David 15 Jan 2006
- user web: moved eah_server_status.php and sample_server_status.php
from user/ to ops/.
These pages have queries that are too slow for
big projects like SETI@home.
html/
ops/
eah_server_status.php (new)
sample_server_status.php (new)
user/
eah_server_status.php (removed)
sample_server_status.php (removed)
server_status.php (removed)
David 15 Jan 2006
- user web: add optional team_id argument to team_lookup.php
(returns XML description of a particular team)
html/
user/
team_lookup.php
David 15 Jan 2006
- compile fixes for gcc4.0
client/
gui_rpc_server.C
lib/
network.C
Bruce 16 Jan 2006
- ops page: add external IP to data shown for host
- user host info page: when giving IP data, show both private
AND external IP (only for owner of host machine).
- user web pages: if can't delete host because there are still
results, give clearer error message and link to list of results.
- user web pages: in list of hosts, add link to show results
if project is configured to show results.
html/
inc/
db_ops.inc
host.inc
user/
host_delete.php
David 16 Jan 2006
- compile fix for Win
client/
gui_rpc_server.C
David 16 Jan 2006
- Call get_host_info() (not just get_filesystem_info())
before each scheduler RPC (from Bruce Allen)
client/
cs_scheduler.C
David 16 Jan 2006
- add <hostid> element to account manager RPC request.
client/
acct_mgr.C
David 16 Jan 2006
- core client: enhancements to duration correction factor (DCF):
- on project reset, set DCF to one.
- when do CPU benchmarks, scale all DCFs by new/old benchmark
(from Josef Segur)
client/
client_state.C,h
cs_benchmark.C
cs_scheduler.C
Rom 17 Jan 2006 (HEAD)
- Tag for 5.3.12 release, all platforms
boinc_core_release_5_3_12
David 17 Jan 2006
- user web: add Mauritius to country list
html/inc/
countries.inc
David 17 Jan 2006
- Core client error messages:
- "task" instead of "result"
- Don't include function names in messages
- Don't end with \n
- Removed files superceded by curl
client/
*.C
http.C,h (removed)
net_xfer.C,h (removed)
ssl_http.C,h (removed)
ssl_net_xfer.C,h (removed)
David 18 Jan 2006
- GUI RPC client lib: add PROJECT::copy() function
(copies data, doesn't change vectors)
client/
file_xfer.C,h
pers_file_xfer.h
lib/
gui_rpc_client.h
gui_rpc_client_ops.C
sched/
handle_request.C
David 18 Jan 2006
- If a download isn't complete and gained less than 5 KB,
truncate back to the original starting size.
This addresses a bug where some proxies append
error messages on download failures
(reported by Rattledagger)
client/
file_xfer.C
lib/
error_numbers.h
filesys.C,h
util.C
David 18 Jan 2006
- implement boinc_truncate() for Windows
lib/
filesys.C
David 18 Jan 2006
- remove #define bool char stuff,
and change a couple of functions to return int instead of bool.
Rule: if any function is potentially callable
from an ANSI C application, don't use bool in its interface,
since there's inconsistency in the size of bool
between C and C++ compilers
api/
graphics_api.h
lib/
filesys.C,h
David 18 Jan 2006
- added HTTP error codes to boincerror(),
since these are sometimes used as return values.
client/
http_curl.h
pers_file_xfer.C
lib/
util.C
Rom 19 Jan 2006
- CPDNBBC Update
clientgui/
BOINCGUIApp.cpp, .h
CompletionPage.cpp
MainFrame.cpp
win_build/installerv2/redist/CPDNBBC
CPDNBBC_splash.bmp
David 19 Jan 2006
- feeder/scheduler: try to fix bug where shmem array slots
get stuck in "CHECKED_OUT" state.
Get rid of this state.
Instead, use the PID of the scheduler process that
has it checked out (as we're already doing for "reserved" slots)
and let the feeder clean up slots checked out by dead processes.
- several of the DB enumerate() function were returning
1 or -1 (rather than ERR_DB_NOT_FOUND) when no results.
Bad!!! Some programs, including the feeder,
treat values other than 0 and ERR_DB_NOT FOUND as fatal DB errors.
db/
boinc_db.C
sched/
feeder.C
sched_array.C
sched_shmem.C,h
show_shmem.C
David 19 Jan 2006
- RSS items should refer to a page that has all news items,
not just old ones
- Make news item indices permanent
html/
inc/
news.inc
user/
all_news.php (new)
sample_rss_main.php
David 20 Jan 2006
- tweak to partial download fix:
only truncate file if got >0 new bytes
client/
file_xfer.C
David 20 Jan 2006
- suppress "Expect: 100 continue" in HTTP header.
Apparently this causes problems with some proxies
(from Ian Hay)
client/
http_curl.C
Charlie 20 Jan 2006
-Mac: Changes for Grid Republic: remove BOINCManager from Dock;
different plist file for GR; new application icon for GR;
screensaver changes for GR.
Remove obsolete files from XCode project (net_xfer.C,h, http.C,h,
proxy.C,h)
Update release script to allow development test builds.
Update installer for Grid Republic.
client/
mac/
GridRepublic.icns (new)
SetVersion.C
clientgui/
mac/
mac_saver_module.cpp
mac_build/
Info.plist
GR_Info.plist (new)
boinc.xcodeproj/
project.pbxproj
mac_installer/
release_boinc.sh
Postinstall.cpp
David 20 Jan 2006
- core client: if we change host CPID and we're using an account manager,
do scheduler RPCs to all projects,
so that the account manager gets a consistent view when
it gets host data from the project servers
client/
client_state.h
cs_scheduler.C
David 20 Jan 2006
- Manager: improvements to Statistics tab
(from mifistor_x)
clientgui/
Events.h
ViewStatistics.C,h
Charlie 21 Jan 2006
-Mac: Changes for Grid Republic: manager determines branding before
launching client; create new release script for GR; GR screen saver
displays GR icon in system preferences dialog; data directory is
"GridRepublic Data" if a GR install; installing BOINC over an
existing GR installation or GR over existing BOINC installation
renames data directory and performs other necessary tasks to ensure
continued processing of existing work. (But user's screensaver
selection is not changed automatically.)
clientgui/
BOINCGUIApp.cpp - Set up branding before launching boinc client.
mac/
mac_saver_module.cpp
gridrepublic.tiff
SetVersion.C
mac_installer/
release_boinc.sh
PostInstall.cpp
postinstall
postupgrade
preinstall (new)
preupgrade (new)
release_GridRepublic.sh (new)
GR-preinstall (new)
GR-preupgrade (new)
GR-Description.plist (new)
GR-Branding (new)
GR-ReadMe.rtf (new)
mac_build/
GR-InfoPlist.strings (new)
GR-ScreenSaver-Info.plist (new)
boinc.xcodeproj/
project.pbxproj
Bruce 22 Jan 2006
- update_stats program. Fix 'bug of omission' where member counts
of teams are calculated but were not written back into the database.
Also, change algorithm so that for hosts/teams/users, when the RAC
(Recent Average Credit) values have decayed to exactly 0.0 (double
precision) then neither expavg_credit nor expavg_time are updated.
In this way, by looking at the value of expavg_time, you can see
exactly WHEN the RAC decayed to zero. This effectively indicates
the 'drop-out-date' for the host/team/user.
sched/
update_stats.C
Rom 23 Jan 2006
- On Windows use the System Event Notification Service to determine
network connectivity instead of using InternetGetConnectedState
since it was proving to be unreliable.
NOTE: This is a big change on Windows. SENS uses COM as it's
communication infrastructure and so therefore boinc.dll now has
to be regsvr32'ed before network notification messages will be
sent to the client. If, for whatever reason SENS isn't working
we'll fall back to InternetGetConnectedState.
client/
main.C
client/win/
hostinfo_win.cpp
clientgui/
AccountManagerPropertiesPage.cpp
BOINCGUIApp.cpp, .h
MainFrame.cpp
ProjectPropertiesPage.cpp
clientlib/win/
boinc_dll.cpp, .h (Added)
BOINCSENSSink.cpp, .h (Added)
Identification.cpp, .h (Added)
IdleTracker.cpp, .h (Added)
NetworkTracker.cpp, .h (Added)
resource.h (Added)
SENSLogonSubscriptions.h (Added)
SENSNetworkSubscriptions.h (Added)
SENSOnNowSubscriptions.h (Added)
SENSSubscriptions.h (Added)
stdafx.cpp, .h (Added)
lib/
network.C, .h
win_build/
boinc_dll.vcproj
Rom 23 Jan 2006
- Add an File/Exit warning for CPDNBBC so that the users know they will
be stopping any executing tasks.
- Update the Project and Work views changing 'work' to 'tasks'
clientgui/
BOINCGUI.pjd
BOINCGUIApp.cpp, .h
DlgGenericMessage.cpp, .h (Added)
MainFrame.cpp, .h
Makefile.am
ViewProjects.cpp
ViewWork.cpp
Charlie 23 Jan 2006
-Mac: Improve GridRepublic release script so it uses sed commands
to convert standard BOINC plist, preinstall and preupgrade files
for Grid Republic; standard BOINC release script creates preupgrade
script by copying preinstall script; these changes eliminate the
need for seven files I checked in earlier.
Also generalize Grid Republic release script so it can easily be
modified for other brands by changing a few variable definitions.
Changed name of GR Manager to "GridRepublic Manager" from just
"GridRepublic."
Restore my change of 1/21/06 which was lost: manager determines
branding before launching client.
Remove mac_build/Installer-info.plist and replace with
mac_build/Installer-info.plist (CVS is case-sensitive).
clientgui/
BOINCGUIApp.cpp
mac/
SetVersion.C
mac_build/
GR_Info.plist (Remove)
GR-InfoPlist.strings (Remove)
GR-ScreenSaver-Info.plist (Remove)
Installer-info.plist (Remove)
Installer-info.plist (Add)
boinc.xcodeproj/
project.pbxproj
mac_installer/
GR-ReadMe.rtf
PostInstall.cpp
preinstall
release_boinc.sh
release_GridRepublic.sh
preupgrade (Remove)
GR-Description.plist (Remove)
GR-preinstall (Remove)
GR-preupgrade (Remove)
David 23 Jan 2006
- Core client: D'oh! When change host CPID,
need to notify ALL projects, even the one we just contacted.
client/
client_state.h
cs_scheduler.C
Charlie 23 Jan 2006
-Mac: Add new files DlgGenericMessage.cpp, .h to XCode project .
mac_build/
boinc.xcodeproj/
project.pbxproj
Rom 24 Jan 2006
- String and graphics changes for CPDNBBC.
- Add email address validation to the wizards.
clientgui/
AccountInfoPage.cpp
BOINCGUIApp.cpp
BOINCGUIApp.rc
ValidateEmailAddress.cpp, .h (Added)
Rom 24 Jan 2006 (HEAD)
- Tag for 5.3.14 release, all platforms
boinc_core_release_5_3_14
Rom 24 Jan 2006
- Bug Fix: Remove the last line of the function that handles the
launching of the wizards on first execution which was causing
the manager to switch over to the messages tab no matter if the
wizard completed successfully or not.
clientgui/
MainFrame.cpp
David 24 Jan 2006
- core client: move code that deals with generating new host CPID
to the end of handle_scheduler_reply(),
after the part that clears sched_rpc_pending and sets min_rpc_time,
since if we generate a new host CPID
we're going to modify these (to request another RPC).
Also: in this case request an immediate scheduler RPC to all projects
whether or not we're using an account manager.
- core client: if detach from account manager,
clear "attached_via_acct_mgr" flag on all projects
- database: change type of xml field in msg_to_host and msg_from_host
from text (64KB limit)
to medium_text (16MB limit, but use at most 256KB)
- scheduler: don't print trickle message contents (swamps logfile)
(the latter two from Carl Christensen)
client/
acct_mgr.C
cs_scheduler.C
clientgui/
Events.h
db/
boinc_db.h
schema.sql
sched/
handle_request.C
David 24 Jan 2006
- core client: statefile read fails if don't find </client_state>
client/
cs_statefile.C
Charlie 24 Jan 2006
-Mac: Add new files ValidateEmailAddress.cpp, .h to XCode project.
Change conditional compile #ifdef __ppc__ in mac_backtrace.C
so library links properly for Intel Macs (but backtrace is disabled).
Fix compile error by excluding CPDNBBC client code from Mac builds.
Remove obsolete XCode project; update build script to use new project.
Set plaform correctly for powerpc-apple-darwin and i686-apple-darwin.
clientgui/
BOINCGUIApp.cpp
mac/
config.h
lib/
mac_backtrace.C
mac_build/
BuildMacBOINC.sh
boinc.xcodeproj/
project.pbxproj
boinc.pbproj/
project.pbxproj (Remove)
config.h
Rom 24 Jan 2006
- Bug Fix: Fix a blocking compilation issue on the Mac with the new
email validation class.
clientgui/
ValidateEmailAddress.cpp
David 24 Jan 2006
- new FORTRAN-callable function boinc_zip_()
(from Juan Perez)
api/
boinc_api_fortran.C
Rom 25 Jan 2006
- Bug Fix: Fix the wizard so that it can display customized graphics
on the welcome page.
- Bug Fix: Display the minimum password length in the wizard.
- Bug Fix: Add two new pages for dealing with account manager updates
and removal from account managers. Text needs some work though.
clientgui/
AccountInfoPage.cpp, .h
AccountManagerProcessingPage.cpp
AccountManagerStatusPage.cpp
BOINCBaseWizard.cpp, .h
BOINCGUIApp.cpp
BOINCWizards.h
CompletionErrorPage.cpp
CompletionPage.cpp
CompletionRemovePage.cpp, .h (Added)
CompletionUpdatePage.cpp, .h (Added)
NotDetectedPage.cpp
ProxyPage.cpp
UnavailablePage.cpp
WelcomePage.cpp
WizardAccountManager.cpp, .h
WizardAttachProject.cpp
wizardex.cpp
David 25 Jan 2006
- core client: add declarations of free_mem() functions
(but still comment them out)
client/
app.h
client_state.h
html/user/