- web: in filtered job lists,

"pending" should include "inconclusive",
    and "invalid" should include "too late to validate"

svn path=/trunk/boinc/; revision=17726
This commit is contained in:
David Anderson 2009-04-02 17:41:14 +00:00
parent 74afc41312
commit c66cba7f8f
2 changed files with 10 additions and 2 deletions

View File

@ -3557,3 +3557,11 @@ Charlie 2 Apr 2009
screensaver_win.h
mac_build/
Mac_SA_Secure.sh
David 2 Apr 2009
- web: in filtered job lists,
"pending" should include "inconclusive",
and "invalid" should include "too late to validate"
html/inc/
result.inc

View File

@ -71,9 +71,9 @@ $state_name = array(
$state_clause = array(
"",
" and server_state=4 ",
" and server_state=5 and outcome=1 and validate_state=0 ",
" and server_state=5 and outcome=1 and (validate_state=0 or validate_state=4) ",
" and server_state=5 and outcome=1 and validate_state=1 ",
" and server_state=5 and outcome=1 and validate_state=2 ",
" and server_state=5 and outcome=1 and (validate_state=2 or validate_state=5) ",
" and server_state=5 and outcome=3 ",
);