Changes between Version 8 and Version 9 of BossaReference
- Timestamp:
- Jul 18, 2008, 9:30:17 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BossaReference
v8 v9 59 59 priority for that user's level. 60 60 61 == API for job creation == 62 63 {{{ 64 int bossa_app_lookup(string $app_name) 65 }}} 66 Returns the ID of the application with the given short name. 67 68 {{{ 69 int bossa_batch_create(int $appid, string name, bool $calibration) 70 }}} 71 Creates a batch with the given name and returns its ID. 72 73 {{{ 74 bool bossa_job_create(int $appid, int $batchid, mixed $app_data, bool $calibration) 75 }}} 76 Creates a job with the given app data. 77 Initial priorities are one. 78 Returns true on success.