From d18861e5e7205276a5db19394886445244b9df43 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Tue, 10 May 2005 17:04:13 +0000 Subject: [PATCH] *** empty log message *** svn path=/trunk/boinc/; revision=6092 --- doc/boinc_dev.php | 1 + doc/docutil.php | 47 +++++++++++++++++++++++++++++++++++++++++++++- doc/index.php | 4 ++++ doc/links.php | 7 +++++++ sched/sched_send.C | 2 ++ 5 files changed, 60 insertions(+), 1 deletion(-) diff --git a/doc/boinc_dev.php b/doc/boinc_dev.php index 8e38cfc200..b110b5fb85 100644 --- a/doc/boinc_dev.php +++ b/doc/boinc_dev.php @@ -66,6 +66,7 @@ Various implementation notes:
  • How to see what has changed between two versions of an executable.
  • Account management systems +
  • Spec info for RPMs "; diff --git a/doc/docutil.php b/doc/docutil.php index 3295a9cc17..f601776515 100644 --- a/doc/docutil.php +++ b/doc/docutil.php @@ -28,6 +28,18 @@ function page_head($title) { "; } +function copyright() { + echo " + Copyright © $y University of California + "; + return; + echo " +

    + + \"Creative
    + "; +} + function page_tail() { $y = date("Y "); echo " @@ -35,7 +47,9 @@ function page_tail() {

    Return to BOINC main page

    - Copyright © $y University of California + "; + copyright(); + echo "

    @@ -107,4 +121,35 @@ function list_end() { echo "

    \n"; } +function stats_sites() { + echo " +

    + "; +} ?> diff --git a/doc/index.php b/doc/index.php index a99c89abe0..f42daca49a 100644 --- a/doc/index.php +++ b/doc/index.php @@ -135,5 +135,9 @@ echo " + +
    +
    "; +copyright(); ?> diff --git a/doc/links.php b/doc/links.php index fbaa2a1431..ec0b17a68c 100644 --- a/doc/links.php +++ b/doc/links.php @@ -21,6 +21,13 @@ page_head("Web sites for BOINC participants"); list_start(); echo " +

    Project status

    +BOINC project status +

    Statistics

    +"; +stats_sites(); +echo " +

    Informational sites

    LanguageSite "; diff --git a/sched/sched_send.C b/sched/sched_send.C index 2b670fcb42..6e40a823b2 100644 --- a/sched/sched_send.C +++ b/sched/sched_send.C @@ -238,6 +238,7 @@ int wu_is_infeasible( reply.wreq.insufficient_speed = true; reason |= INFEASIBLE_CPU; } +#if 0 if (wu.delay_bound < request.global_prefs.work_buf_min_days*SECONDS_IN_DAY) { log_messages.printf( SCHED_MSG_LOG::DEBUG, @@ -248,6 +249,7 @@ int wu_is_infeasible( reply.wreq.excessive_work_buf = true; reason |= INFEASIBLE_WORK_BUF; } +#endif } return reason;