Home
last modified time | relevance | path

Searched +full:redissue +full:. +full:view +(+path:plugin +path:redissue) -(+path:plugin +path:redissue +path:lang) (Results 1 – 4 of 4) sorted by relevance

/plugin/redissue/
H A DREADME.md1 # Plugin Redissue
13 Redissue needs [Php-Redmine-API](https://github.com/kbsali/php-redmine-api) to work. Download it in…
40redissue.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…
42redissue.theme: If you have the theme [Bootstrap 3](https://www.dokuwiki.org/template:bootstrap3) …
43 * redissue.API: Set your Redmine API's key, preference Administrator key. This setting can be overr…
44 * redissue.view: Choose the view you want to display. This will depend on the wiki user's access ri…
100Redissue **settings**. You must define these in a json file called `server.json` (already availabl…
117 Then simply add your server with: `server="first"` in redissue syntax.
126Redissue will display all the issue of this tracker for this specific project. If "project" or "tr…
[all …]
H A Dsyntax.php32 $this->Lexer->addEntryPattern('<redissue[^>/]*>(?=.*</redissue>)', $mode,'plugin_redissue');
54 'text'=>$this->getLang('redissue.text.default')
159 $view = $this->getConf('redissue.view');
161 $redmine->connect($url, $data['server_token'], $view, $wiki_user);
210.= '<a title="'.$this->getLang('redissue.link.issue').'" href="' . $this->getIssueUrl($data['id'],…
216.= '<a title="'.$this->getLang('redissue.link.issue').'" href="' . $this->getIssueUrl($data['id'],…
228 return $this->getConf('redissue.img') ?: 'lib/plugins/redissue/images/redmine.png' ;
284 $renderer->doc .= '<dt>'.$this->getLang('redissue.author').' :</dt>';
288 $renderer->doc .= '<dt>'.$this->getLang('redissue.created').' :</dt>';
290 $renderer->doc .= '<dt>'.$this->getLang('redissue.updated').' :</dt>';
[all …]
/plugin/redissue/conf/
H A Ddefault.php3 * 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';
H A Dmetadata.php4 * 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');