Searched +full:jenkins +full:. +full:user +(+path:plugin +path:jenkins) -(+path:plugin +path:jenkins +path:lang) (Results 1 – 5 of 5) sorted by relevance
1 # Plugin Jenkins4 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..28 …jenkins.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 …]
3 * Jenkins Syntax Plugin: display and trigger Jenkins job inside Dokuwiki9 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 Job68 preg_match("/job *= *(['\"])(.*?)\\1/", $match, $job);72 // Jenkins Build[all …]
3 * Options for jenkins plugin6 $conf['jenkins.url'] = 'http://jenkins.com';7 $conf['jenkins.user'] = '';8 $conf['jenkins.token'] = '';
4 * Additions for jenkins plugin7 $meta['jenkins.url'] = array('string');8 $meta['jenkins.user'] = array('string');9 $meta['jenkins.token'] = array('string');
3 * Jenkins API12 $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;