Home
last modified time | relevance | path

Searched refs:project (Results 451 – 475 of 601) sorted by path

1...<<11121314151617181920>>...25

/plugin/gitlabapi/gitlab/
H A Dgitlabapi.php36 $project = $this->gitlabRequest($url_request);
38 foreach ($project as $p) {
/plugin/gitlabapi/
H A Dplugin.info.txt6 desc Display some information such as commits, issues etc. from a GitLab project.
H A Dsyntax.php129 $project = $gitlab->getProject();
132 if (empty($project)) {
137 $project_id = $project['id'];
139 $project_url = $project['web_url'];
140 $project_name = $project['name'];
141 $date_time = $this->getDateTime($project['last_activity_at']);
142 $namespace = $project['namespace']['full_path'];
/plugin/gitlabproject/
H A DREADME.md3 Plugin Gitlab-Project display a Gitlab project inside Dokuwiki.
19 * **unwanted.users**: If you want to not display some users of your project, add them here, separat…
28 <gitlab project="<NAMESPACE>/<PROJECT_NAME>" />
31 **NAMESPACE** is the namespace of your project, typically the name of the user or group in which th…
33 **PROJECT_NAME** is the name of project.
35 For e.g., if you have a project available at `http://my-gitlab/foo/bar`, the syntax will be:
38 <gitlab project="foo/bar" />
67 <gitlab server="second" project="foo/bar" />
H A Dplugin.info.txt6 desc Display informations from a Gitlab project
H A Dsyntax.php67 preg_match("/project *= *(['\"])(.*?)\\1/", $match, $project);
68 if (count($project) != 0) {
69 $data['project'] = $project[2];
107 $project = $gitlab->getProject();
108 $project_url = $project['web_url'];
109 $project_name = $project['name'];
110 if(empty($project)) {
114 $date_time = $this->getDateTime($project['last_activity_at']);
115 $namespace = $project['namespace']['name'];
118 $kind = $project['namespace']['kind'];
/plugin/gitlabproject/gitlab/
H A Dgitlab.php43 $project = $this->gitlabRequest($url_request);
45 return $project;
/plugin/googleads/
H A DCHANGELOG.md2 All notable changes to this project will be documented in this file.
5 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
/plugin/googleads/lang/en/
H A Douttro.txt9 If you find this plugin useful, please consider supporting the project via [[http://tjgrant.com/wik…
/plugin/googleanalytics/
H A DCHANGELOG.md2 All notable changes to this project will be documented in this file.
5 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
/plugin/googleanalytics/lang/en/
H A Dintro.txt36 If you find this plugin useful, please consider supporting the project via [[http://tjgrant.com/wik…
/plugin/hipchat/
H A Dcomposer.lock3 "This file locks the dependencies of your project to a known state",
/plugin/hyphenation/phpHyphenation/
H A Dchangelog.txt5 + Changed project name from "PHP Hypehnation" to "phpHyphenator"
/plugin/icalevents/vendor/sabre/vobject/
H A DCHANGELOG.md775 * VObject is now a separate project from SabreDAV. See the SabreDAV changelog
/plugin/imagecarousel/
H A DLICENSE655 {project} Copyright (C) {year} {fullname}
/plugin/imagecarousel/vendor/slick/
H A DCONTRIBUTING.markdown34 …d in Github as a contributor, but I have and will continue to steer the direction of this project.*
/plugin/inserticon/
H A DLICENSE9 and from the GNOME project, licensed under the GPL-2
/plugin/ipban/ip-lib/
H A DREADME.md2 …atus/github/mlocati/ip-lib?branch=master&svg=true)](https://ci.appveyor.com/project/mlocati/ip-lib)
/plugin/issuelinks/action/
H A Dajax.php73 $project = $INPUT->str('project');
76 $response = $service->deleteWebhook($project, $INPUT->str('hookid'));
78 $response = $service->createWebhook($project);
155 $project = $repo->full_name;
160 'data-project' => $project,
167 'data-project' => $project,
/plugin/issuelinks/db/
H A Dupdate0001.sql4 project TEXT NOT NULL CHECK(project <> ''), field
18 PRIMARY KEY (service, id, project, is_mergerequest)
24 project TEXT NOT NULL CHECK (project <> ''), field
30 …PRIMARY KEY (service, id, project, is_mergerequest, referenced_service, referenced_id, referenced_…
36 project TEXT NOT NULL CHECK(project <> ''), field
39 PRIMARY KEY (service, project, id, is_mergerequest)
52 FOREIGN KEY (project_id) REFERENCES issues(project),
/plugin/issuelinks/helper/
H A Ddata.php208 * @param string $project
214 public function getIssue($pmServiceName, $project, $issueid, $isMergeRequest) argument
216 $issue = Issue::getInstance($pmServiceName, $project, $issueid, $isMergeRequest);
H A Ddb.php317 …public function getMergeRequestsReferencingIssue($serviceName, $project, $issueId, $isMergeRequest) argument
328 … return $this->sqlArrayQuery($sql, [$serviceName, $project, $issueId, $isMergeRequest ? 1 : 0]);
393 * @param string $project
401 …public function savePageRevIssues($page, $rev, $serviceName, $project, $issue_id, $isMergeRequest,… argument
423 'project_id' => $project,
/plugin/issuelinks/
H A Dplugin.info.txt6 desc Show links with popups for issues of project management services
/plugin/issuelinks/script/
H A Dadmin_repo.js59 project: $this.data('project'), property in initializeRepoAdminInterface.requestHookToogle.settings.data
128 function checkImportStatus(servicename, project, $importStatusElement) { argument
135 'issuelinks-project': project,
164 project,
178 const project = $this.data('project');
184 project: project, property in AnonymousFunctiond4ddff230300.settings.data
198 project,
/plugin/issuelinks/services/
H A DGitHub.service.php257 public function deleteWebhook($project, $hookid) argument
260 $data = $this->makeGitHubRequest("/repos/$project/hooks/$hookid", [], 'DELETE');
265 $db->deleteWebhook('github', $project, $hookid);
274 public function createWebhook($project) argument
290 $data = $this->makeGitHubRequest("/repos/$project/hooks", $data, 'POST');
295 $db->saveWebhook('github', $project, $id, $secret);
506 list($project, $issueId) = explode('-', $match);
509 'project' => $project,

1...<<11121314151617181920>>...25