Searched +full:redissue +full:. +full:link +full:. +full:issue +(+path:plugin +path:redissue) -(+path:plugin +path:redissue +path:lang) (Results 1 – 3 of 3) sorted by relevance
1 # Plugin Redissue3 Plugin Dokuwiki display issues of Redmine and keep the rights of Redmine too. Redissue have the fol…5 * Name of issue6 * Number, percentage, author of issue7 * Make a link to the choosen issue in Redmine and the related project.8 * Display more or less information depending on your rights.9 …(http://getbootstrap.com/) (like with [Dokuwiki Temaplte Bootstrap3](https://github.com/LotarProje…13 Redissue needs [Php-Redmine-API](https://github.com/kbsali/php-redmine-api) to work. Download it in…20 git clone https://github.com/kbsali/php-redmine-api.git22 # Go to last version. Use "git describe --abbrev=0" to see last tag.[all …]
3 * Redissue Syntax Plugin: Insert a link to redmine's issue9 require 'redmine/redmine.php';31 $this->Lexer->addSpecialPattern('<redissue[^>]*/>', $mode,'plugin_redissue');32 $this->Lexer->addEntryPattern('<redissue[^>/]*>(?=.*</redissue>)', $mode,'plugin_redissue');35 $this->Lexer->addExitPattern('</redissue>', 'plugin_redissue');39 $json_file = file_get_contents(__DIR__.'/server.json');54 'text'=>$this->getLang('redissue.text.default')57 preg_match("/server *= *(['\"])(.*?)\\1/", $match, $server);66 $data['server_token'] = $this->getConf('redissue.API');69 $data['server_url'] = $this->getConf('redissue.url');[all …]
3 * Redissue Syntax Plugin: Insert a link to redmine's issue9 require 'vendor/php-redmine-api/lib/autoload.php';30 return $this->client->issue->show($issue_id);40 … $cur_name = $all_users['users'][$i]['firstname'] . ' ' . $all_users['users'][$i]['lastname'];53 function getDatesTimesIssue($issue){ argument54 $created = $issue['issue']['created_on'];55 $updated = $issue['issue']['updated_on'];56 $closed = $issue['issue']['closed_on'];