~ubuntu-branches/ubuntu/precise/boinc/precise

« back to all changes in this revision

Viewing changes to html/ops/cancel_wu_form.php

Tags: 6.12.8+dfsg-1
* New upstream release.
* Simplified debian/rules

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
// You should have received a copy of the GNU Lesser General Public License
17
17
// along with BOINC.  If not, see <http://www.gnu.org/licenses/>.
18
18
 
19
 
 
20
 
 
21
19
// use this to delete workunits that are not wanted
22
20
 
23
21
require_once("../inc/util_ops.inc");
27
25
echo "<form action=\"cancel_wu_action.php\">
28
26
";
29
27
echo "<p>
30
 
        This form may be used to cancel unnecessary or unwanted workunits.  We recommend that
31
 
        you stop the project before doing this.  Note that the workunits and their corresponding
32
 
        results (if any) are NOT removed from the database.  Instead, they are marked as 'no longer
33
 
        needed'.  In most cases you should probably only remove workunits whose results are all unsent,
34
 
        since otherwise a user will not get credit for a result that they might return.
35
 
        <p>
 
28
        This form may be used to cancel unnecessary or unwanted workunits.
 
29
    We recommend that you stop the project before doing this.
 
30
    Note that the workunits and their corresponding
 
31
    results (if any) are NOT removed from the database.
 
32
    Instead, they are marked as 'no longer needed'.
 
33
    In most cases you should probably only remove workunits whose results
 
34
    are all unsent,
 
35
    since otherwise a user will not get credit
 
36
    for a result that they might return.
 
37
    <p>
36
38
";
37
39
// TODO: David, a query that shows all workunits that do not have all results unsent is:
38
40
// select distinct workunit.id,workunit.name from workunit join result where workunit.id=result.workunitid and result.server_state!=2 order by workunit.id
48
50
    </form>
49
51
";
50
52
admin_page_tail();
51
 
$cvs_version_tracker[]="\$Id: cancel_wu_form.php 15758 2008-08-05 22:43:14Z davea $";  //Generated automatically - do not edit
 
53
$cvs_version_tracker[]="\$Id: cancel_wu_form.php 19053 2009-09-15 18:14:37Z davea $";  //Generated automatically - do not edit
52
54
?>