Instead of editing their source (ugh!)
you can now use command-line args to get testing functionality.
html/ops/
remind.php
mass_email_script.php
svn path=/trunk/boinc/; revision=12494
- bug in language_select.php made 'auto' not work,
i.e. its impossible to return to browser settings
after doing a cookie-based language choice
- translation.inc and language_select.php were using $HTTP_SERVER_VARS,
which appears to be deprecated in PHP 5.
Use $_SERVER instead.
- made strings at top of web site translatable
html/
inc/
translation.inc
user/
language_select.php
languages/translations/
en.po
svn path=/trunk/boinc/; revision=12493
- core client: set config settings to default values before
parsing cc_config.xml.
Otherwise, if you have a lot of log flags set,
and tell the client to reread a config file that
doesn't specify ANY log flags,
you'll end up with all the flags still set.
(from Sebastian Masch)
- make_project: add cmdline args for update_stats in initial config
tools/
make_project
client/
log_flags.C,h
svn path=/trunk/boinc/; revision=12490
- server: fix bug that causes PHP scripts not to run from Cron
Fixes#129. From Christian Beer.
html/ops/
update_profile_pages.php
tools/
run_in_ops
svn path=/trunk/boinc/; revision=12488
- fixes#10 - Remove dependency on ATL framework for
boinc.dll on Windows
With this checkin, the BOINC client should now be able
to be built with Visual Studio Express.
clientgui/
BOINCGUIApp.cpp, .h
clientlib/win/
boinc_dll.cpp, .h
boinc_dll.rc
boincclient.rgs (deleted)
boincsens.rgs (deleted)
BOINCSENSSink.cpp, .h (deleted)
IdleTracker.cpp
NetworkTracker.cpp, .h (deleted)
SENSLogonSubscriptions.h (deleted)
SENSNetworkSubscriptions.h (deleted)
SENSOnNowSubscriptions.h (deleted)
SENSSubscriptions.h (deleted)
stdafx.h
svn path=/trunk/boinc/; revision=12482
- Exteded the "altername_platform" mechanism to x86_64 linux
and solaris. The current alternate platforms found by configure
are...
x86_64-pc-linux-gnu -> i686-pc-linux-gnu
sparc64-sun-solaris -> sparc-sun-solaris
sparc-sun-solaris -> sparc-sun-solaris2.7
powerpc64-apple-darwin -> powerpc-apple-darwin
- The alternate platform can be overridden on the configure command line
--with-boinc-alt-platform="platformname"
m4/
boinc_platform.m4
sched/
Makefile.am
client/
client_state.C
cs_scheduler.C
client_state.h
svn path=/trunk/boinc/; revision=12467
- Server: add new database field host.error_rate.
Stores a dynamic estimate of the fraction of the hosts's
results that fail validation (updated by the validator).
client/
sim.C
cs_prefs.C
db/
boinc_db.C,h
html/ops/
db_update.php
sched/
handle_request.C
sched_msgs.h
validator.C
svn path=/trunk/boinc/; revision=12466
- fixes#122 - Windows benhcmark differences between VS 2003 and
VS 2005.
The default FP model has changed since 2003, so change how the
BOINC components are compiled so that they use /fp:fast instead
of /fp:precise.
win_build/
*.vcproj
svn path=/trunk/boinc/; revision=12465
- fixes#120 - Rebuild all 32-bit Windows dependencies using
VS 2005 so tht they all depend on the new CRT runtime. Make
sure all dependencies include an application manifest.
- WIN: Rebuild libcurl for x64 and include an application
manifest so that it can find MSVCR80 when executing.
curl/
<multiple files>
openssl/
<multiple files>
zlib/
<multiple files>
svn path=/trunk/boinc/; revision=12453