Searched +full:redissue +full:. +full:api +(+path:plugin +path:redissue) -(+path:plugin +path:redissue +path:lang) (Results 1 – 5 of 5) sorted by relevance
| /plugin/redissue/ |
| D | README.md | 1 # Plugin Redissue 3 Plugin Dokuwiki display issues of Redmine and keep the rights of Redmine too. Redissue have the fol… 7 * 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… 15 In any case, Php-Redmine-API must be located inside a `vendor` folder ! 20 git clone https://github.com/kbsali/php-redmine-api.git 21 cd php-redmine-api 22 # Go to last version. Use "git describe --abbrev=0" to see last tag. [all …]
|
| D | syntax.php | 3 * Redissue Syntax Plugin: Insert a link to redmine's issue 9 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 …]
|
| /plugin/redissue/conf/ |
| D | default.php | 3 * Options for the redissue plugin 6 $conf['redissue.url'] = 'http://redmine.com'; //Set url of your redmine server 7 $conf['redissue.img'] = ''; 8 $conf['redissue.boostrap-themes'] = 'bootstrap3'; 9 $conf['redissue.API'] = ''; 10 $conf['redissue.view'] = '2'; 11 $conf['redissue.short'] = '0';
|
| D | metadata.php | 4 * Additions for the redissue plugin 7 $meta['redissue.url'] = array('string'); 8 $meta['redissue.img'] = array('string'); 9 $meta['redissue.bootstrap-themes'] = array('string'); 10 $meta['redissue.API'] = array('string'); 11 $meta['redissue.view'] = array('multichoice','_choices' => array(4,2)); 12 $meta['redissue.short'] = array('onoff');
|
| /plugin/redissue/redmine/ |
| D | redmine.php | 3 * Redissue Syntax Plugin: Insert a link to redmine's issue 9 require 'vendor/php-redmine-api/lib/autoload.php'; 40 … $cur_name = $all_users['users'][$i]['firstname'] . ' ' . $all_users['users'][$i]['lastname'];
|