Changes between Version 5 and Version 6 of JobIntro


Ignore:
Timestamp:
Apr 12, 2014, 2:46:11 PM (10 years ago)
Author:
davea
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • JobIntro

    v5 v6  
    4545It validates and assimilates the results, and deletes the input and output files.
    4646
    47 === Local submission ===
     47There are three general methods for job submission:
    4848
    49 In this approach, jobs are submitted by programs or scripts run on the BOINC server.
    50 The job submitter, of course, must have login access to the server.
     49 '''Local submission'''::
     50  In this approach, jobs are submitted by programs or scripts run on the BOINC server.
     51  The job submitter must have login access to the server.
    5152
    52 === Web-based submission ===
     53 '''Web-based submission'''::
     54  In this approach, jobs are submitted via web pages running on the BOINC server.
     55  The job submitter need not have login access to the server.
    5356
    54 In this approach, jobs are submitted via web pages running on the BOINC server.
    55 The job submitter need not have login access to the server.
     57 '''Remote submission'''::
     58  In this approach, jobs are submitted by programs or web pages running
     59  outside the BOINC server.
    5660
    57 === Remote submission ===
     61== Batches ==
    5862
    59 In this approach, jobs are submitted by programs or web pages running
    60 outside the BOINC server.
     63For convenience, jobs may be collected into '''batches'''.
     64Batches may be monitored and controlled as a unit.
     65
     66== Ownership of jobs and batches ==
     67
     68In projects with multiple job submitters,
     69job submitters are identified by their user account on the project.
     70Jobs and batches are associated with the user ID of their submitters.
     71
     72=== Job submission control panel ===
     73
     74The web page '''submit.php''' allows users to view submitted jobs
     75and retrieve their output files.
     76This link should be shown only to authorized users.
     77You can do this, e.g., by putting the following on your home page (index.php):
     78{{{
     79$user = get_logged_in_user(false);
     80if ($user && BoincUserSubmit::lookup_userid($user->id);
     81    echo '
     82        <li><a href=submit.php>Job submission</a>
     83        <li><a href=sandbox.php>File sandbox</a>
     84    ';
     85}
     86}}}
     87(include the "File sandbox" link if you use this feature - see below).
     88