Home
last modified time | relevance | path

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

/plugin/redproject/
H A DREADME.md1 # Plugin Redproject
14 Redproject needs [Php-Redmine-API](https://github.com/kbsali/php-redmine-api) to work. Download it …
38redproject.url : Put your Redmine's url server, without a slash ending. Example : ``http://myredmi…
39 * redproject.API : Set your Redmine API's key, preference Administrator key. This setting can be ov…
40 * redproject.view : Choose the view you want to display. This will depend on the wiki user's access…
41 …ame UID as Redmine's users. e.g. : LDAP authentication. Redproject then will manage rights based o…
51 <redproject proj="identifier_project" />
75 Then simply add your server in redproject syntax:
81 **Note:** By default, redproject will take the data defined in Dokuwiki settings.
85 Here is a preview of redproject :
[all …]
H A Dsyntax.php3 * Redproject Syntax Plugin: Display Roadmap and other things
35 $this->Lexer->addSpecialPattern('<redproject[^>]*/>', $mode,'plugin_redproject');
36 … $this->Lexer->addEntryPattern('<redproject[^>]*>(?=.*</redproject>)', $mode,'plugin_redproject');
39 $this->Lexer->addExitPattern('</redproject>', 'plugin_redproject');
76 $data['server_token'] = $this->getConf('redproject.API');
79 $data['server_url'] = $this->getConf('redproject.url');
90 'text'=>'##ERROR &lt;redproject&gt;: project name required##'
106 $view = $this->getConf('redproject.view');
107 if ($view == self::RI_IMPERSONATE) {
207.= '<a href="'.$data['server_url'].'/projects/'.$projIdent.'/issues">'.$issueTotal['total_count'].
[all …]
/plugin/redproject/conf/
H A Ddefault.php3 * Options for the redproject plugin
6 $conf['redproject.url'] = 'http://redmine.com'; //Set url of your redmine server
7 $conf['redproject.API'] = '';
8 $conf['redproject.view'] = '2';
H A Dmetadata.php4 * Additions for the redproject plugin
7 $meta['redproject.url'] = array('string');
8 $meta['redproject.API'] = array('string');
9 $meta['redproject.view'] = array('multichoice','_choices' => array(4,2));