Searched +full:redissue +full:. +full:short +(+path:plugin +path:redissue) -(+path:plugin +path:redissue +path:lang) (Results 1 – 4 of 4) sorted by relevance
/plugin/redissue/ |
H A D | README.md | 1 # Plugin Redissue 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) … 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… 117 Then simply add your server with: `server="first"` in redissue syntax. 124 …short: (**dokuwiki theme only**, bootstrap not needed this functionnality). If you've dokuwiki the… 126 …Redissue will display all the issue of this tracker for this specific project. If "project" or "tr… [all …]
|
H A D | syntax.php | 32 $this->Lexer->addEntryPattern('<redissue[^>/]*>(?=.*</redissue>)', $mode,'plugin_redissue'); 54 'text'=>$this->getLang('redissue.text.default') 85 // Short 86 $data['short'] = $this->getConf('redissue.short'); 87 preg_match("/short *= *(['\"])([0-1])\\1/", $match, $over_short); 89 $data['short'] = $over_short[2]; 159 $view = $this->getConf('redissue.view'); 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' ; [all …]
|
/plugin/redissue/conf/ |
H A 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';
|
H A 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');
|