Updated all page templates

Log page now displays recent log entries
Job Details page now shows job-specific log entries.
Jobs page lists all jobs in the database, while homepage lists all
running/completed/failed jobs in groups
This commit is contained in:
2010-03-18 02:05:32 +00:00
parent 9af46a1c5d
commit 69cead4ca3
9 changed files with 196 additions and 20 deletions

View File

@@ -1,11 +1,11 @@
<?php
$running_jobs = array();
$completed_jobs = array();
$running_jobs[] = new HandBrakeCluster_Job(42);
$running_jobs = HandBrakeCluster_Job::allWithStatus(HandBrakeCluster_JobStatus::RUNNING);
$completed_jobs = HandBrakeCluster_Job::allWithStatus(HandBrakeCluster_JobStatus::COMPLETE);
$failed_jobs = HandBrakeCluster_Job::allWithStatus(HandBrakeCluster_JobStatus::FAILED);
$this->smarty->assign('running_jobs', $running_jobs);
$this->smarty->assign('completed_jobs;', $completed_jobs);
$this->smarty->assign('completed_jobs', $completed_jobs);
$this->smarty->assign('failed_jobs', $failed_jobs);
?>

View File

@@ -1,8 +1,13 @@
<?php
$job_id = $this->request->get('id');
$job = new HandBrakeCluster_Job($job_id);
$job = HandBrakeCluster_Job::fromId($job_id);
$this->smarty->assign('job', $job);
$client_log_entries = HandBrakeCluster_ClientLogEntry::recentForJob($job_id, 30);
$worker_log_entries = HandBrakeCluster_WorkerLogEntry::recentForJob($job_id, 30);
$this->smarty->assign('client_log_entries', $client_log_entries);
$this->smarty->assign('worker_log_entries', $worker_log_entries);
?>

View File

@@ -0,0 +1,6 @@
<?php
$jobs = HandBrakeCluster_Job::all(HandBrakeCluster_Main::instance()->database());
$this->smarty->assign('jobs', $jobs);
?>

View File

@@ -0,0 +1,9 @@
<?php
$client_log_entries = HandBrakeCluster_ClientLogEntry::recent(30);
$worker_log_entries = HandBrakeCluster_WorkerLogEntry::recent(30);
$this->smarty->assign('client_log_entries', $client_log_entries);
$this->smarty->assign('worker_log_entries', $worker_log_entries);
?>