From f1e92dec14f6b813cc6904fdba27bd67c82f8808 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Tue, 12 Sep 2006 05:04:59 +0000 Subject: [PATCH] *** empty log message *** svn path=/trunk/boinc/; revision=11144 --- checkin_notes | 6 ++++++ doc/boinc_news.inc | 5 +++++ doc/build_system.php | 46 +++++++++++++++++++++++++++++++++++--------- doc/logo.php | 46 ++++++++++++++++++++++++++++++++++---------- lib/parse.C | 1 + 5 files changed, 85 insertions(+), 19 deletions(-) diff --git a/checkin_notes b/checkin_notes index 9708bac1ff..54d54db956 100755 --- a/checkin_notes +++ b/checkin_notes @@ -10148,3 +10148,9 @@ David 11 Sept 2006 lib/ app_ipc.C + +David 11 Sept 2006 + - XML parser bug fix (from Urs Echternacht) + + lib/ + parse.C diff --git a/doc/boinc_news.inc b/doc/boinc_news.inc index 3cce389ce8..ee32ab4473 100644 --- a/doc/boinc_news.inc +++ b/doc/boinc_news.inc @@ -1,6 +1,11 @@ UW-Madison CAE, + the first BOINC user to top the 1 TERAFLOPS barrier, + has surpassed 2 TERAFLOPS. Congratulations!" +), array("September 2, 2006", "The Spinhenge project has moved into public beta test, diff --git a/doc/build_system.php b/doc/build_system.php index 325b8ae470..7f9d020798 100644 --- a/doc/build_system.php +++ b/doc/build_system.php @@ -3,13 +3,35 @@ require_once("docutil.php"); page_head("Building BOINC on Unix"); echo " -On UNIX systems, the BOINC software (both server and client) -can be built by typing +The BOINC software consists of several components: +

+

+ +
+

+

+Which components you need depends on what you're doing: + + +On UNIX systems, the entire BOINC software can be built by typing
-  ./_autosetup
-  ./configure [see options below]
-  make
-  make install  [optional: installs libraries and header files useful for building apps]
+./_autosetup
+./configure [see options below]
+make
+make install  [optional: installs libraries and header files useful for building apps]
 
in the top directory. @@ -60,12 +82,18 @@ list_item("--enable-debug", "enable tracing and debugging flags for all components" ); list_item("--disable-server", - "disable building the scheduling server" + "disable building the server component" ); list_item("--disable-client", - "disable building the client + "disable building the client component Default: --enable-server --enable-client: builds - both server and client" + both server and client. +

+ If configure can't find WxWidgets it will build + the core client but not the Manager. + If you want to build only the core client, + run configure with --with-wxdir=junk. + " ); list_item("--enable-maintainer-mode", "enable make rules and dependencies not useful diff --git a/doc/logo.php b/doc/logo.php index f3a41d5685..e925139a7c 100644 --- a/doc/logo.php +++ b/doc/logo.php @@ -27,7 +27,8 @@ The Mac variant was contributed by Juho Viitasalo. We are looking for a new graphical identity for BOINC. Our criteria:

-Here are some submissions: +Here are some candidates. +If you have an opinion, or think you can do better, + please contact us.

@@ -53,6 +56,28 @@ Here are some submissions: ... and many variants in different sizes and colors, and for specific countries. + + + + + + + + + + + + +
ArtistImages (click for hi-res version)
+Dario Arnaez + + +
Rebirther + + +
Michal Krakowiak + +
+ 16x16 icon: +
Jim Paulis ... and several variants @@ -80,6 +105,14 @@ and for specific countries.
+ +

Banners for BOINC projects

+

+ + + -
ArtistImages
Tony Hern @@ -87,14 +120,7 @@ and for specific countries.
-

-If you have an opinion, please contact us. - -

Banners for BOINC projects

-

- - +
ArtistImages
Anthony Hern diff --git a/lib/parse.C b/lib/parse.C index 8295918fe1..e2c77f56ad 100644 --- a/lib/parse.C +++ b/lib/parse.C @@ -530,6 +530,7 @@ bool XML_PARSER::parse_string( bool flag = parse_str(parsed_tag, start_tag, buf, sizeof(buf)); if (!flag) return false; str = buf; + return true; } // Same, for integers