Home
last modified time | relevance | path

Searched +full:jenkins +full:. +full:user +(+path:plugin +path:jenkins) -(+path:plugin +path:jenkins +path:lang) (Results 1 – 5 of 5) sorted by relevance

/plugin/jenkins/
DREADME.md1 # Plugin Jenkins
4 Dokuwiki plugin for Jenkins user.
12 In future versions, it will allow you to trigger a job from Dokuwiki.
16 This plugin does not require any prerequisites.
20 … `${dokuwiki_root}/lib/plugins` folder and restart dokuwiki. Or use the plugin manager of Dokuwiki.
24 You should configure Dokwuki-Jenkins in the Config Manager of Dokuwiki:
26 * **jenkins.url**: Put your Jenkins url here, without a slash ending. i.e.: `http://my-jenkins.com`.
27 * **jenkins.user**: Enter the ID of a Jenkins user, with the right to view any job..
28jenkins.token**: Set the corresponding Jenkins user token. You can find it in `http://JENKINS_URL/
32 To use Dokuwiki-Jenkins, use the below syntax:
[all …]
Dsyntax.php3 * Jenkins Syntax Plugin: display and trigger Jenkins job inside Dokuwiki
9 require 'jenkinsapi/jenkins.php';
30 $this->Lexer->addSpecialPattern('<jenkins[^>]*/>', $mode, 'plugin_jenkins');
60 // Jenkins Configuration
61 $jenkins_data = $this->getURLProtocol($this->getConf('jenkins.url'));
64 $data['user'] = $this->getConf('jenkins.user');
65 $data['token'] = $this->getConf('jenkins.token');
67 // Jenkins Job
68 preg_match("/job *= *(['\"])(.*?)\\1/", $match, $job);
72 // Jenkins Build
[all …]
/plugin/jenkins/conf/
Ddefault.php3 * Options for jenkins plugin
6 $conf['jenkins.url'] = 'http://jenkins.com';
7 $conf['jenkins.user'] = '';
8 $conf['jenkins.token'] = '';
Dmetadata.php4 * Additions for jenkins plugin
7 $meta['jenkins.url'] = array('string');
8 $meta['jenkins.user'] = array('string');
9 $meta['jenkins.token'] = array('string');
/plugin/jenkins/jenkinsapi/
Djenkins.php3 * Jenkins API
12 $this->url = $data['protocol'].'://'.$data['user'].':'.$data['token'].'@'.$data['url'];
17 $url_srv = $this->url . $url . '/api/json';
19 $url_srv = $this->url . $url . '/lastBuild/api/json';
39 $job_url .= '/job/'.$job_part;