Lines Matching +full:commit +full:- +full:message
3 * Plugin GitLab: Gets commit message by project name and commit id.
16 …$this->Lexer->addSpecialPattern('\[\[gitlabapi>[a-zA-Z0-9.-]+>[a-z0-9]+\]\]', $mode, 'plugin_gitla…
21 $commit_id_short = substr($commit_id, 0, -2);
22 list($repository_id, $web_url)= $this->getInfoByName($repository_name);
23 list($commit_msg, $commit_id_long) = $this->getInfoByHash($repository_id, $commit_id_short);
32 …$renderer->doc .= '<a target="_blank" href="' . htmlspecialchars($data[0]) . '/commit/' . htmlspec…
39 $gitlabServer = $this->getConf('server');
40 $apiToken = $this->getConf('api_token');
43 $repositories = json_decode($http->get($reqUrl), true);
55 $gitlabServer = $this->getConf('server');
56 $apiToken = $this->getConf('api_token');
59 $data = json_decode($http->get($reqUrl), true);
61 return array($data['message'], $data['id']);