Lines Matching full:jobs

82 jobs. With cron jobs, you can exactly plan when a certain command is to be 
83 executed. But most homepage owners can't create cron jobs on their web
87 request it checks if any cron jobs should have been run since the previous
110 - logs all executed jobs
126 You can log messages to pseudo-cron's log file from cron jobs by calling
133 This release changed the way cron jobs are called. The file paths you specify in
169 // #scheduled jobs
177 // The directory where the script can store information on completed jobs and its log file.
187 // Maximum number of jobs run during one call of pseudocron.
188 // Set to a low value if your jobs take longer than a few seconds and if you scheduled them
189 // very close to each other. Set to 0 to run any number of jobs.
238 $jobs = $this->parseCronFile($this->cronTab);
240 for ($i=0;$i<count($jobs);$i++) {
242 if ($this->runJob($jobs[$i])) $jobsRun++;
419 …include(DOKU_PLUGIN.$this->pluginname."/jobs/".$job[PC_CMD]); // display errors only when debuggi…
421 …@include(DOKU_PLUGIN.$this->pluginname."/jobs/".$job[PC_CMD]); // any error messages are supressed
445 $jobs = Array();
451 $jobNumber = count($jobs);
452 $jobs[$jobNumber] = $job;
453 if ($jobs[$jobNumber][PC_DOW][0]!='*' AND !is_numeric($jobs[$jobNumber][PC_DOW])) {
454 $jobs[$jobNumber][PC_DOW] = str_replace(
457 $jobs[$jobNumber][PC_DOW]);
459 $jobs[$jobNumber][PC_CMD] = trim($job[PC_CMD]);
460 $jobs[$jobNumber][PC_COMMENT] = trim(substr($job[PC_COMMENT],1));
461 $jobs[$jobNumber][PC_CRONLINE] = $file[$i];
463 $jobfile = $this->getJobFileName($jobs[$jobNumber][PC_CMD]);
465 $jobs[$jobNumber]["lastActual"] = $this->getLastActualRunTime($jobs[$jobNumber][PC_CMD]);
466 $jobs[$jobNumber]["lastScheduled"] = $this->getLastScheduledRunTime($jobs[$jobNumber]);
470 $this->multisort($jobs, "lastScheduled");
472 if ($this->debug) var_dump($jobs);
473 return $jobs;