Lines Matching full:jobs

28 jobs. With cron jobs, you can exactly plan when a certain command is to be 
29 executed. But most homepage owners can't create cron jobs on their web
33 request it checks if any cron jobs should have been run since the previous
56 - logs all executed jobs
72 You can log messages to pseudo-cron's log file from cron jobs by calling
79 This release changed the way cron jobs are called. The file paths you specify in
126 // #scheduled jobs
134 // The directory where the script can store information on completed jobs and its log file.
144 // Maximum number of jobs run during one call of pseudocron.
145 // Set to a low value if your jobs take longer than a few seconds and if you scheduled them
146 // very close to each other. Set to 0 to run any number of jobs.
195 $jobs = $this->parseCronFile($this->cronTab);
197 for ($i=0;$i<count($jobs);$i++) {
199 if ($this->runJob($jobs[$i])) $jobsRun++;
376 …include(DOKU_PLUGIN.$this->pluginname."/jobs/".$job[PC_CMD]); // display errors only when debuggi…
378 …@include(DOKU_PLUGIN.$this->pluginname."/jobs/".$job[PC_CMD]); // any error messages are supressed
402 $jobs = Array();
408 $jobNumber = count($jobs);
409 $jobs[$jobNumber] = $job;
410 if ($jobs[$jobNumber][PC_DOW][0]!='*' AND !is_numeric($jobs[$jobNumber][PC_DOW])) {
411 $jobs[$jobNumber][PC_DOW] = str_replace(
414 $jobs[$jobNumber][PC_DOW]);
416 $jobs[$jobNumber][PC_CMD] = trim($job[PC_CMD]);
417 $jobs[$jobNumber][PC_COMMENT] = trim(substr($job[PC_COMMENT],1));
418 $jobs[$jobNumber][PC_CRONLINE] = $file[$i];
420 $jobfile = $this->getJobFileName($jobs[$jobNumber][PC_CMD]);
422 $jobs[$jobNumber]["lastActual"] = $this->getLastActualRunTime($jobs[$jobNumber][PC_CMD]);
423 $jobs[$jobNumber]["lastScheduled"] = $this->getLastScheduledRunTime($jobs[$jobNumber]);
427 $this->multisort($jobs, "lastScheduled");
429 if ($this->debug) var_dump($jobs);
430 return $jobs;