Searched +full:gitlab +full:. +full:project +(+path:plugin +path:gitlabproject) -(+path:plugin +path:gitlabproject +path:lang) (Results 1 – 5 of 5) sorted by relevance
| /plugin/gitlabproject/ |
| D | README.md | 1 # Plugin Gitlab-Project 3 Plugin Gitlab-Project display a Gitlab project inside Dokuwiki. 7 This plugin does not need any requirements. 11 Download Gitlab Project into your `${dokuwiki_root}/lib/plugins` folder and restart dokuwiki or use… 15 You can configure Gitlab-Project in the Configuration Manager of Dokuwiki: 17 * **server.default**: Set your default Gitlab url, without slash ending. You can override this sett… 18 * **token.default**: Fill your admin token. You can override this setting in `server.json` file. 19 * **unwanted.users**: If you want to not display some users of your project, add them here, separat… 21 Gitlab-Project will use this data by default. 28 <gitlab project="<NAMESPACE>/<PROJECT_NAME>" /> [all …]
|
| D | syntax.php | 3 * Gitlab Syntax Plugin: display Gitlab project 9 require 'gitlab/gitlab.php'; 29 $this->Lexer->addSpecialPattern('<gitlab[^>]*/>', $mode, 'plugin_gitlabproject'); 33 $json_file = file_get_contents(__DIR__.'/server.json'); 51 preg_match("/server *= *(['\"])(.*?)\\1/", $match, $server); 60 $data['server'] = $this->getConf('server.default'); 63 $data['token'] = $this->getConf('token.default'); 66 // Match @project 67 preg_match("/project *= *(['\"])(.*?)\\1/", $match, $project); 68 if (count($project) != 0) { [all …]
|
| D | action.php | 23 'icon' => '../../plugins/gitlabproject/images/gitlab.png', 24 'open' => '<gitlab project="<NAMESPACE>/<PROJECT_NAME>"',
|
| D | plugin.info.txt | 3 email ttamalfor@gmail.com 6 desc Display informations from a Gitlab project
|
| /plugin/gitlabproject/gitlab/ |
| D | gitlab.php | 3 * Gitlab Access 17 return $this->dw_data['server'] . '/api/v3/'; 41 …$url_request = $this->getAPIUrl().'projects/'.urlencode($this->dw_data['project']).'/?private_toke… 43 $project = $this->gitlabRequest($url_request); 45 return $project; 50 …r_url_request = $this->getAPIUrl().'projects/'.urlencode((string)$this->dw_data['project']).'/memb… 52 $namespace_array = explode('/', $this->dw_data['project']); 55 …$group_url_request = $this->getAPIUrl().'groups/'.urlencode($namespace).'/members/?private_token='…
|