Commit Graph

4848 Commits

Author SHA1 Message Date
David Anderson 20eb2f30b2 *** empty log message ***
svn path=/trunk/boinc/; revision=4785
2004-12-08 00:14:52 +00:00
Bruce Allen 8fe62528b7 Typo killed feeder with bad MySQL syntax. David, please check.
svn path=/trunk/boinc/; revision=4784
2004-12-07 23:54:07 +00:00
Rom Walton 1c2350d39f *** empty log message ***
svn path=/trunk/boinc/; revision=4783
2004-12-07 23:04:12 +00:00
Bruce Allen ce142bc42d Added additional options -gzip, -zip, -max_wu_per_file to db_purge. The
compression options are 'efficient' in that they do not write an uncompressed
file then compress -- they go straight to compressed.  SIGHUP and lockfile
shutdown signals are properly caught and close compressed files and DB cleanly.

svn path=/trunk/boinc/; revision=4782
2004-12-07 22:54:54 +00:00
Rom Walton 5acc0330bb *** empty log message ***
svn path=/trunk/boinc/; revision=4781
2004-12-07 21:34:58 +00:00
David Anderson 0ed77df5c8 *** empty log message ***
svn path=/trunk/boinc/; revision=4780
2004-12-07 19:37:17 +00:00
Eric J. Korpela 2cfd8235fc Added version.h back into the configure script until someone gets around to
modifying set_version to do the work.

version.h is included from config.h so it should not change anyone's compiles.

svn path=/trunk/boinc/; revision=4779
2004-12-07 17:47:23 +00:00
Rom Walton d7519eec6a *** empty log message ***
svn path=/trunk/boinc/; revision=4778
2004-12-07 16:37:18 +00:00
Bruce Allen 6a4bb3419b Use HAVE_STD_MIN and HAVE_STD_MAX
svn path=/trunk/boinc/; revision=4777
2004-12-07 11:16:45 +00:00
Bruce Allen 44cef67242 Missing close bracket );
svn path=/trunk/boinc/; revision=4776
2004-12-07 11:02:46 +00:00
Rom Walton f9c8c6b86d *** empty log message ***
svn path=/trunk/boinc/; revision=4775
2004-12-06 23:51:41 +00:00
David Anderson 009d3c890e *** empty log message ***
svn path=/trunk/boinc/; revision=4774
2004-12-06 23:21:57 +00:00
Rom Walton 9cc3670577 *** empty log message ***
svn path=/trunk/boinc/; revision=4773
2004-12-06 23:02:47 +00:00
David Anderson 2c5f1d1a5b *** empty log message ***
svn path=/trunk/boinc/; revision=4772
2004-12-06 22:41:19 +00:00
Bruce Allen 76b14d416b Remove incorrect comment
svn path=/trunk/boinc/; revision=4771
2004-12-06 22:29:05 +00:00
David Anderson 383445f184 *** empty log message ***
svn path=/trunk/boinc/; revision=4770
2004-12-06 22:13:43 +00:00
David Anderson 8f67c0708a *** empty log message ***
svn path=/trunk/boinc/; revision=4769
2004-12-06 22:13:42 +00:00
Bruce Allen 2540d049ec [thanks to Bernd Machenschalk!]
Fixed 'time to checkpoint' problem under Win32 with pure C code.
It turns out that MS VC++ up to version 4.2 defines bool as INT.
But more recent VC++ defines bool as CHAR.  This broke
boinc_time_to_checkpoint() under Win32, when used within pure ANSI
C code, if you treated the return value as a bool. So this patch
defines bool as char if using C under recent MS compilers.

David, a better solution for API functions that should be
callable from C is to make them return 'int' not 'bool'.
Probably ditto for Fortran. Sigh.

svn path=/trunk/boinc/; revision=4767
2004-12-06 16:03:13 +00:00
David Anderson 11b088afe2 *** empty log message ***
svn path=/trunk/boinc/; revision=4765
2004-12-06 00:08:04 +00:00
David Anderson 02b6393a11 *** empty log message ***
svn path=/trunk/boinc/; revision=4764
2004-12-05 23:52:17 +00:00
Bruce Allen 3983504893 Redid 'fix' to scheduler bug from 3 December 2004. In fact the
fix was incomplete. In order for it to work as intended, I would
have also had to modify SCHED_RESULT_ITEM::parse to copy the
additional needed fields into the in-memory structure.  But this
is fragile.  The next time some additional fields are added to the
result table, they would have to be incorporated here as well, to
ensure that SET followed by UPDATE is the identity operation.  So
I did a more graceful and robust fix.  Simply set result.id=0 for
those results that have already been received or which for other
reasons should not be modified in the database, then skip these
when updating.

svn path=/trunk/boinc/; revision=4763
2004-12-05 21:53:32 +00:00
Janus B. Kristensen 3a2cc0dc44 html/users/forum_threads.php
svn path=/trunk/boinc/; revision=4762
2004-12-05 10:23:47 +00:00
Janus B. Kristensen 2d1cef4a9e Added display of forum navigation bar on the bottom of threads. Users won't have to scroll up to get back.
Also made the output HTML 4.01 transitional valid

svn path=/trunk/boinc/; revision=4761
2004-12-05 10:17:02 +00:00
Bruce Allen 86445e9427 Reverted configure.ac to last working version 1.144.
Version 1.145 and 1.146 were the same as 1.44.
Note that a good way to do file revision in your sandbox is
cvs update -j 1.147 -j 1.144 configure.ac

svn path=/trunk/boinc/; revision=4760
2004-12-04 07:19:09 +00:00
Rom Walton d4536f953c *** empty log message ***
svn path=/trunk/boinc/; revision=4759
2004-12-04 05:42:22 +00:00
Eric J. Korpela 743ecb1c2a Removed for reversion...
svn path=/trunk/boinc/; revision=4758
2004-12-04 02:26:02 +00:00
Eric J. Korpela c05aa8bb74 Reversion to correct version (1.144)
svn path=/trunk/boinc/; revision=4757
2004-12-04 02:03:45 +00:00
Rom Walton f3749f8128 *** empty log message ***
svn path=/trunk/boinc/; revision=4756
2004-12-04 01:49:50 +00:00
Bruce Allen d11fe55856 Thanks, Reinhard!
-   C extern statements so that 'API' header files can be included in C
        programs as well as C++.
-   Make install now only installs the header files needed for building
        the external APIs.

svn path=/trunk/boinc/; revision=4755
2004-12-04 00:56:22 +00:00
Rom Walton 08a2b68785 *** empty log message ***
svn path=/trunk/boinc/; revision=4754
2004-12-04 00:43:39 +00:00
Eric J. Korpela 116e6e5b26 reversion to earlier configure script and win_config.h
svn path=/trunk/boinc/; revision=4753
2004-12-04 00:29:22 +00:00
Eric J. Korpela 590e2cac10 Preparation for reversion to earlier versions in about 5 minutes.
svn path=/trunk/boinc/; revision=4752
2004-12-04 00:23:13 +00:00
Rom Walton 5e91fd97b2 *** empty log message ***
svn path=/trunk/boinc/; revision=4750
2004-12-04 00:08:16 +00:00
Rom Walton 870e2496fa *** empty log message ***
svn path=/trunk/boinc/; revision=4749
2004-12-04 00:02:41 +00:00
Rom Walton 16264d4901 Rom 3 Dec 2004
- Add an additional header for the additional logging prototypes under
        wxWidgets

    clientgui/
        BOINCGUIApp.cpp
        MainFrame.cpp
        stdwx.h

svn path=/trunk/boinc/; revision=4748
2004-12-03 23:45:34 +00:00
Bruce Allen 8872e2f4a1 Still working on getting cvs diff mailing going.
Sorry for the spam.
I now remember why I gave up Solaris for Linux!

svn path=/trunk/boinc/; revision=4747
2004-12-03 23:40:19 +00:00
Bruce Allen 53601b29ee Testing cvs diff emailing
svn path=/trunk/boinc/; revision=4745
2004-12-03 23:33:22 +00:00
Bruce Allen c05225e0ef Testing of cvs diff mails
svn path=/trunk/boinc/; revision=4743
2004-12-03 23:28:22 +00:00
Bruce Allen c1d0c2d719 Testing automailing of diffs
svn path=/trunk/boinc/; revision=4742
2004-12-03 23:21:07 +00:00
Rom Walton 58aa17b62e *** empty log message ***
svn path=/trunk/boinc/; revision=4740
2004-12-03 22:47:51 +00:00
Eric J. Korpela a95bfc8aee *** empty log message ***
svn path=/trunk/boinc/; revision=4739
2004-12-03 22:19:04 +00:00
Bruce Allen 54ece9fde3 Trying to get syncmail working...
svn path=/trunk/boinc/; revision=4738
2004-12-03 22:08:58 +00:00
Rom Walton 490f098fd0 *** empty log message ***
svn path=/trunk/boinc/; revision=4737
2004-12-03 22:06:39 +00:00
Eric J. Korpela f49d34d426 *** empty log message ***
svn path=/trunk/boinc/; revision=4733
2004-12-03 21:42:00 +00:00
Rom Walton d285dc4595 *** empty log message ***
svn path=/trunk/boinc/; revision=4732
2004-12-03 21:35:25 +00:00
Eric J. Korpela c3a74d384c config.h[.in] now includes win_config.h on WIN32 systems.
Split platform independent version info into version.h[.in]
(which in included from config.h)

Added all the config.h macros into win_config.h

svn path=/trunk/boinc/; revision=4731
2004-12-03 21:28:17 +00:00
Bruce Allen cf37870054 Test of auto emailing of diffs
svn path=/trunk/boinc/; revision=4730
2004-12-03 21:22:21 +00:00
Bruce Allen 894bff7b05 Added CVS diff emailing
svn path=/trunk/boinc/; revision=4728
2004-12-03 21:16:28 +00:00
Rom Walton 3125e01fbe *** empty log message ***
svn path=/trunk/boinc/; revision=4726
2004-12-03 20:30:24 +00:00
Rom Walton f040733d71 *** empty log message ***
svn path=/trunk/boinc/; revision=4725
2004-12-03 19:47:54 +00:00