From: Justin J. Novack Date: Sun, 16 Sep 2012 19:17:28 +0000 (-0400) Subject: data/templates/revision-head.htm - ADD: display commit message X-Git-Tag: v0.3.0~42^2~48 X-Git-Url: https://git.cweiske.de/phorkie.git/commitdiff_plain/0845bf175dc416cdf107209fc34f7b37bf42b6e6?ds=sidebyside data/templates/revision-head.htm - ADD: display commit message --- diff --git a/data/templates/revision-head.htm b/data/templates/revision-head.htm index 132a68f..a5f7e88 100644 --- a/data/templates/revision-head.htm +++ b/data/templates/revision-head.htm @@ -10,6 +10,7 @@ revision {{repo.hash}}

+ message {{repo.message}}

diff --git a/src/phorkie/Repository.php b/src/phorkie/Repository.php index 448982b..6ed3807 100644 --- a/src/phorkie/Repository.php +++ b/src/phorkie/Repository.php @@ -32,6 +32,12 @@ class Repository */ public $hash; + /** + * Commit message of the last (or current) revision + * + * @var string + */ + public $message; /** @@ -56,6 +62,7 @@ class Repository $this->id = (int)$_GET['id']; $this->loadDirs(); $this->loadHash(); + $this->loadMessage(); } protected function loadDirs() @@ -97,6 +104,23 @@ class Repository $this->hash = $output; } + public function loadMessage() + { + $rev = (isset($this->hash)) ? $this->hash : 'HEAD'; + $output = $this->getVc()->getCommand('log') + ->setOption('oneline') + ->addArgument('-1') + ->addArgument($rev) + ->execute(); + $output = trim($output); + if (strpos($output, ' ') > 0) { + $output = substr($output, strpos($output, ' '), strlen($output)); + $this->message = trim($output); + } else { + $this->message = "This commit message intentionally left blank."; + } + } + public function loadById($id) { if (!is_numeric($id)) {