Changes between Version 1 and Version 2 of WebSubmit


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

--

Legend:

Unmodified
Added
Removed
Modified
  • WebSubmit

    v1 v2  
    1616 * '''inc/submit_db.inc''': access to job-submissions parts of BOINC database
    1717 * '''inc/submit_util.inc''': job submission utility functions
     18
     19== Example: single-server portal ==
     20
     21Users submit jobs using forms on the project web site:
     22
     23[[Image(submit2.png)]]
     24
     25These forms are application-specific; you must develop them yourself.
     26Two examples are included in the BOINC distribution:
     27 * '''html/user/tree_threader.php'''
     28 * '''html/user/lammps.php'''
     29
     30TODO: the above are full of application-specific complexity;
     31provide a minimal/generic example.
     32
     33The job-submission scripts use [RemoteOverview#LocalPHPinterfaces local PHP interfaces] to
     34authenticate users and to create jobs and batches.
     35
     36Input files can be handled in any of several ways:
     37
     38 * Uploading them (from the submitter's computer) as part of the submission form.
     39   The submission script would then [JobStage stage them].
     40 * Using the [RemoteInputFiles#Per-userfilesandbox user file sandbox] mechanism.
     41 * Serving them from a remote server.
    1842
    1943== Authorizing requests ==