Home
last modified time | relevance | path

Searched +full:redproject +full:. +full:api +(+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 …
19 $ git clone https://github.com/kbsali/php-redmine-api.git
20 $ cd php-redmine-api
24 Don't forget to install the requirements of PhP-Redmine-API :
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…
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
9 require 'vendor/php-redmine-api/lib/autoload.php';
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');
106 $view = $this->getConf('redproject.view');
113 $proj = $client->api('project')->show($data['proj']);
235 $issueTotal = $client->api('issue')->all(array(
[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));