Searched +full:redissue +full:. +full:url +(+path:plugin +path:redissue) -(+path:plugin +path:redissue +path:lang) (Results 1 – 5 of 5) sorted by relevance
13 Redissue needs [Php-Redmine-API](https://github.com/kbsali/php-redmine-api) to work. Download it in…40 …redissue.url: Put your Redmine's url server, without a slash ending. Example : ``http://myredmine.…41 * redissue.img: Maybe you have a custom icon for your Redmine installation. You can put image'url h…42 …redissue.theme: If you have the theme [Bootstrap 3](https://www.dokuwiki.org/template:bootstrap3) …44 * redissue.view: Choose the view you want to display. This will depend on the wiki user's access ri…100 …url and the API key defined in the Redissue **settings**. You must define these in a json file cal…107 "url": "http://myfirst.redmine.com",111 "url": "http://mysecond.redmine.com",117 Then simply add your server with: `server="first"` in redissue syntax.119 …url or key in json file is wrong or if you put a wrong name in "server" parameter(e.g: call _flirt…[all …]
69 $data['server_url'] = $this->getConf('redissue.url');158 $url = $data['server_url'];228 return $this->getConf('redissue.img') ?: 'lib/plugins/redissue/images/redmine.png' ;233 $url = $data['server_url'];236 …$renderer->doc .= '<p style="color: red;">REDISSUE plugin: Server exist in JSON config but seems n…283 …$renderer->doc .= '<dd><a href="'.$url.'/projects/'.$project_identifier.'">'.$project['name'].'</a…285 … $renderer->doc .= '<dd><a href="'.$url.'/users/'.$author_id.'">'.$author['name'].'</a></dd>';287 … $renderer->doc .= '<dd><a href="'.$url.'/users/'.$assigned_id.'">'.$assigned['name'].'</a></dd>';312 …$renderer->doc .= '<a href="'.$url.'/projects/'.$project_identifier.'"> '.$project['name'].'</a></…314 … $renderer->doc .= '<a href="'.$url.'/users/'.$author_id.'">'.$author['name'].'</a></span>';[all …]
3 * Options for the redissue plugin6 $conf['redissue.url'] = 'http://redmine.com'; //Set url of your redmine server7 $conf['redissue.img'] = '';8 $conf['redissue.boostrap-themes'] = 'bootstrap3';9 $conf['redissue.API'] = '';10 $conf['redissue.view'] = '2';11 $conf['redissue.short'] = '0';
4 * Additions for the redissue plugin7 $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');
3 * Redissue Syntax Plugin: Insert a link to redmine's issue9 require 'vendor/php-redmine-api/lib/autoload.php';15 function connect($url, $apiKey, $impersonate, $user){ argument16 $this->client = new Redmine\Client($url, $apiKey);40 … $cur_name = $all_users['users'][$i]['firstname'] . ' ' . $all_users['users'][$i]['lastname'];