Home
last modified time | relevance | path

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

/plugin/jenkins/
H A Dsyntax.php9 require 'jenkinsapi/jenkins.php';
37 'url' => str_replace('https://', '', $url)
43 'url' => str_replace('http://', '', $url)
61 $jenkins_data = $this->getURLProtocol($this->getConf('jenkins.url'));
62 $data['url'] = $jenkins_data['url'];
107 $url = $jenkins->getJobURLRequest($data['job']);
109 $url = $url . '/' . $data['build_nb'];
112 $request = $jenkins->request($url, $build);
130 … $renderer->doc .= '<img src="lib/plugins/jenkins/images/'.$weather_icon.'" class="jenkins">';
132 …$renderer->doc .= '<a href="'.$request['url'].'" class="jenkins" target="_blank"> '.$request['full…
[all …]
H A DREADME.md1 # Plugin Jenkins
4 Dokuwiki plugin for Jenkins user.
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/…
35 <jenkins job="JOB_NAME" />
41 <jenkins job="FOLDER/JOB_NAME" />
44 By default, jenkins plugin display the last build of your job. If you want to display a specific bu…
47 <jenkins job="FOLDER/JOB_NAME" build="459"/>
52 ![Plugin Preview](https://s1.postimg.org/olp2xm0f3/jenkins_preview.png)
[all …]
/plugin/jenkins/jenkinsapi/
H A Djenkins.php3 * Jenkins API
8 public $url; variable in DokuwikiJenkins
12 $this->url = $data['protocol'].'://'.$data['user'].':'.$data['token'].'@'.$data['url'];
15 function request($url, $build = false) { argument
17 $url_srv = $this->url . $url . '/api/json';
19 $url_srv = $this->url . $url . '/lastBuild/api/json';
39 $job_url .= '/job/'.$job_part;
45 function getWeatherImg($url) { argument
46 $request = $this->request($url, true);
/plugin/jenkins/conf/
H A Ddefault.php3 * Options for jenkins plugin
6 $conf['jenkins.url'] = 'http://jenkins.com';
7 $conf['jenkins.user'] = '';
8 $conf['jenkins.token'] = '';
H A Dmetadata.php4 * Additions for jenkins plugin
7 $meta['jenkins.url'] = array('string');
8 $meta['jenkins.user'] = array('string');
9 $meta['jenkins.token'] = array('string');