Changes between Version 5 and Version 6 of JobIntro
- Timestamp:
- Apr 12, 2014, 2:46:11 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
JobIntro
v5 v6 45 45 It validates and assimilates the results, and deletes the input and output files. 46 46 47 === Local submission === 47 There are three general methods for job submission: 48 48 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. 51 52 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. 53 56 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. 56 60 57 == = Remote submission ===61 == Batches == 58 62 59 In this approach, jobs are submitted by programs or web pages running 60 outside the BOINC server. 63 For convenience, jobs may be collected into '''batches'''. 64 Batches may be monitored and controlled as a unit. 65 66 == Ownership of jobs and batches == 67 68 In projects with multiple job submitters, 69 job submitters are identified by their user account on the project. 70 Jobs and batches are associated with the user ID of their submitters. 71 72 === Job submission control panel === 73 74 The web page '''submit.php''' allows users to view submitted jobs 75 and retrieve their output files. 76 This link should be shown only to authorized users. 77 You can do this, e.g., by putting the following on your home page (index.php): 78 {{{ 79 $user = get_logged_in_user(false); 80 if ($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