From d37df9e36fa8e178812423e8687800b4f380b53c Mon Sep 17 00:00:00 2001 From: David Anderson Date: Mon, 6 Jun 2005 19:18:01 +0000 Subject: [PATCH] *** empty log message *** svn path=/trunk/boinc/; revision=6286 --- checkin_notes | 10 ++++++++++ client/file_names.C | 6 +++--- doc/bare_core.php | 2 +- doc/boinc_news.inc | 8 ++++++++ doc/configuration.php | 7 +++++-- doc/contact.php | 2 +- doc/index.php | 7 +++++-- doc/sea.php | 3 +-- doc/versions.inc | 16 ---------------- lib/util.C | 2 ++ lib/util.h | 4 ++-- 11 files changed, 38 insertions(+), 29 deletions(-) diff --git a/checkin_notes b/checkin_notes index 7b161ad650..ef884a5a6f 100755 --- a/checkin_notes +++ b/checkin_notes @@ -7395,3 +7395,13 @@ David 3 June 2005 sched/ handle_request.C sched_util.C + +David 6 June 2005 + - remove char* versions of starts_with() and ends_with(). + (Attempt to fix app_start problem on HPUX) + + client/ + cs_trickle.C + file_names.C + lib/ + util.C,h diff --git a/client/file_names.C b/client/file_names.C index b3746de4af..7bad83a22d 100644 --- a/client/file_names.C +++ b/client/file_names.C @@ -197,9 +197,9 @@ void get_statistics_filename(char* master_url, char* path) { bool is_image_file(const char* filename) { std::string fn = filename; downcase_string(fn); - if (ends_with(fn, ".jpg")) return true; - if (ends_with(fn, ".jpeg")) return true; - if (ends_with(fn, ".png")) return true; + if (ends_with(fn, std::string(".jpg"))) return true; + if (ends_with(fn, std::string(".jpeg"))) return true; + if (ends_with(fn, std::string(".png"))) return true; return false; } diff --git a/doc/bare_core.php b/doc/bare_core.php index 6c42800d12..6ead4c88aa 100644 --- a/doc/bare_core.php +++ b/doc/bare_core.php @@ -33,7 +33,7 @@ Some examples follow. Instructions from Paul Buck's BOINC Owner's Manual.
  • -Instructions from Berki Yenigun, +Instructions from Berki Yenigun, deadsmile at minitel.net
  • Running diff --git a/doc/boinc_news.inc b/doc/boinc_news.inc index 9961b62db9..6fab10f7ad 100644 --- a/doc/boinc_news.inc +++ b/doc/boinc_news.inc @@ -2,6 +2,14 @@ $project_news = array( +array("June 3, 2005", + "Two Wiki-based BOINC informational sites have been launched recently: + The Unofficial BOINC Wiki + (in English) and + Deutsche BOINC FAQ (in German). + Because these sites are Wikis, + participants can add and modify content." +), array("May 31, 2005", "BOINC is featured in The Berkeley Science Review." ), diff --git a/doc/configuration.php b/doc/configuration.php index c07b729eb8..82578c5bb0 100644 --- a/doc/configuration.php +++ b/doc/configuration.php @@ -123,8 +123,11 @@ features on the administrative pages. Note: enabling 'grep logs' with very long log files can hang your server, since grepping GB files can take a long time. If you enable this feature, be sure to rotate the logs so that they are not too big."); -list_item("sched_lockfile_dir", "Directory where scheduler lockfiles - are stored. Must be writeable to the Apache user."); +list_item("sched_lockfile_dir", + "Enables scheduler locking (recommended) and specifies + directory where scheduler lockfiles are stored. + Must be writeable to the Apache user. +"); list_end(); echo " diff --git a/doc/contact.php b/doc/contact.php index d00bacff9c..6e483e8d15 100644 --- a/doc/contact.php +++ b/doc/contact.php @@ -26,7 +26,7 @@ Contact him at rwalton at ssl.berkeley.edu.

    -Other BOINC developers (many of them volunteers) include: +BOINC developers (many of them volunteers) include:

    "; $i = 0; diff --git a/doc/index.php b/doc/index.php index 8eb9c40233..6c5f5e094b 100644 --- a/doc/index.php +++ b/doc/index.php @@ -86,8 +86,11 @@ computer resources

    Resources