Message boards : Web interfaces : Filtered view for error results
Message board moderation
Author | Message |
---|---|
Send message Joined: 27 Jun 06 Posts: 305 |
A selection on error results (only the red ones) would make it much easier to find problem hosts, especially when the validation takes a long time. A minor change like this should do in results.php (bold lines) : _________________________ db_init(); $hostid = get_int("hostid", true); $userid = get_int("userid", true); $offset = get_int("offset", true); [b]$invalid = get_int ("invalid", true);[/b] if (!$offset) $offset=0; if ($hostid) { $host = lookup_host($hostid); $type = "computer"; $clause = "hostid=$hostid"; } else { $user = get_logged_in_user(); if ($userid != $user->id) { error_page("No access"); } $type = "user"; $clause = "userid=$userid"; [b]if ($invalid) { $clause .= " AND validate_state=2 OR (received_time IS NOT NULL AND report_deadline<".date(); }[/b] } _________________________ plus an additional link results.php?userid=999&invalid=1 from home.php ��u� |
Send message Joined: 27 Jun 06 Posts: 305 |
Still missing this feature very much, especially in projects with tons of tiny work units *sigh* |
Send message Joined: 3 Apr 06 Posts: 547 |
Still missing this feature very much, especially in projects with tons of tiny work units *sigh* You could try to submit the patch directly to admins of these projects. Or maybe to Boinc_Dev mailing list? This is read and replied by the Boinc devs. Peter |
Send message Joined: 12 Feb 06 Posts: 232 |
I think most of the devs do not read this forum, but all of them read the e-mail list. Try submitting the patch there. -- Eric Myers "Education is not the filling of a pail, but the lighting of a fire." -- William Butler Yeats |
Send message Joined: 27 Jun 06 Posts: 305 |
Join WCG.... WCG doesn't run so well on my oldish crunching equipment :-/ |
Send message Joined: 27 Jun 06 Posts: 305 |
Had to sign up to trac anyway, I submitted the mod (on the current code) there. Maybe it helps :-) Stupid me, I failed to make it an "Enhancement", now it stands there as a "Defect" :-( Need some practice with trac. |
Send message Joined: 3 Apr 06 Posts: 547 |
Stupid me, I failed to make it an "Enhancement", now it stands there as a "Defect" :-( Make another ticket marked as "Enhancement" and ask Nicolas to close the "Defect" ticked as being a duplicate of the "Enhancement" one ;-) Peter |
Send message Joined: 29 Aug 05 Posts: 15552 |
Stupid me, I failed to make it an "Enhancement", now it stands there as a "Defect" :-( Nah, there's some of us who can change that. I checked and saw that it was changed already by Didactylos (David B.); others who can change things there are Kathryn, Nicolas and I. And the people you appoint the tickets to, of course. ;-) |
Send message Joined: 27 Jun 06 Posts: 305 |
Good :-) Actually there even was a defect, at one place it had & instead of & in a link and that's fixed now. Severe defect ;-) p.s.: thanks for fixing the keywords, I had looked in the trac help and it didn't say which separators to use. |
Send message Joined: 3 Apr 06 Posts: 547 |
I submitted the mod (on the current code) there. Just to note it's trac Ticket [trac]#469[/trac]. Peter |
Copyright © 2024 University of California.
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License,
Version 1.2 or any later version published by the Free Software Foundation.