| /plugin/dokugitviewer/ |
| D | git-utils.inc.php | 5 function run_git($command, $repo, $bare=false) argument 7 $repo = str_replace('/', '', $repo); 8 $repo = str_replace('\\', '', $repo); 10 $repo.='/.git'; 14 $c = GIT_EXEC.' --git-dir='.ROOT_DIR.$repo.' '.$command; 24 function git_get_log($repo, $limit = 10, $bare=false) argument 28 $data = run_git('log --pretty=format:"'.$params.'" -'.$limit, $repo, $bare);
|
| /plugin/git/syntax/ |
| D | localstatus.php | 120 … $this->helper->render_changed_files_table($renderer, $commits, $repo); 121 … $this->helper->renderChangesMade($renderer, $repo, 'Commit local'); 122 $this->renderCommitMessage($renderer, $repo); 128 if ($repo->LocalCommitsExist()) 154 $this->renderSubmitMessage($renderer, $repo); 158 $log = $repo->get_log('origin/master..HEAD'); 159 $commits = $repo->get_commits($log); 171 $this->helper->render_changed_files_table($renderer, $commits, $repo); 172 $this->helper->renderChangesMade($renderer, $repo, 'Approve Local'); 193 function renderCommitMessage(&$renderer, $repo) argument [all …]
|
| D | remotestatus.php | 118 $waiting_to_commit = $repo->get_status(); 126 $commits = $repo->get_commits($log); 131 … $this->helper->render_changed_files_table($renderer, $commits, $repo); 132 … $this->helper->renderChangesMade($renderer, $repo, 'Merge upstream');
|
| /plugin/git/ |
| D | helper.php | 107 function resetGitStatusCache($repo) argument 117 … $sql = "INSERT OR REPLACE INTO git (repo, timestamp, status ) VALUES ('".$repo."', 0, 'clean');"; 174 $repo = new GitRepo($destination, true, false); 175 $repo->git_path = $git_exe_path; 176 $repo->clone_from($origin); 244 function render_changed_files_table($renderer, $commits, $repo) argument 261 $files = explode("\n", $repo->get_status()); 265 $files = explode("\n", $repo->get_files_by_commit('origin/master..HEAD')); 269 $files = explode("\n", $repo->get_files_by_commit($hash)); 340 function renderChangesMade(&$renderer, &$repo, $mode) argument [all …]
|
| /plugin/gitbacked/action/ |
| D | editcommit.php | 63 $repo = new GitRepo($repoPath, $this, true, true); 79 return $repo; 101 $repo = $this->initRepo(); 104 $repo->add($filePath); 105 $repo->commit($message); 109 $repo->push('origin', $repo->activeBranch()); 180 $repo = $this->initRepo(); 185 $revBefore = $repo->run('rev-parse HEAD'); 189 $repo->pull('origin', $repo->activeBranch()); 193 $revAfter = $repo->run('rev-parse HEAD'); [all …]
|
| /plugin/gitlog/ |
| D | syntax.php | 149 * @param string $repo 154 function git_log($repo, $limit = 10, $bare=false) argument 158 $data = $this->run_git('log --pretty=format:"'.$params.'" -'.$limit, $repo, $bare); 167 $changedfiles = $this->run_git('show --pretty="format:" --name-only '.$columns[0], $repo, $bare); 186 * @param string $repo 190 function run_git($command, $repo, $bare=false) argument 194 $repo .= DIRECTORY_SEPARATOR . '.git'; 199 $c = $this->getConf('git_exec').' --git-dir="'.$repo.'" '.$command;
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudSourceRepositories/ |
| D | UpdateRepoRequest.php | 32 public function setRepo(Repo $repo) argument 34 $this->repo = $repo; 41 return $this->repo;
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudBuild/ |
| D | BitbucketServerConnectedRepository.php | 48 public function setRepo(BitbucketServerRepositoryId $repo) argument 50 $this->repo = $repo; 57 return $this->repo;
|
| /plugin/issuelinks/helper/ |
| D | db.php | 109 * @param string $repo The repository 113 public function saveWebhook($service, $repo, $id, $secret) argument 117 'repository_id' => $repo, 160 * @param string $repo 164 public function getWebhookSecrets($service, $repo) argument 167 $secrets = $this->sqlArrayQuery($sql, [$service, $repo]); 200 * @param string $repo 203 public function deleteWebhook($service, $repo, $id) argument 207 'repository_id' => $repo, 233 public function getWebhooks($service, $repo = null, $id = null) argument [all …]
|
| /plugin/diagramsnet/lib/js/diagramly/ |
| D | GitHubClient.js | 386 GitHubClient.prototype.getSha = function(org, repo, path, ref, success, error) argument 390 var req = new mxXmlRequest(this.baseUrl + '/repos/' + org + '/' + repo + 415 var repo = tokens[1]; 427 var url = this.baseUrl + '/repos/' + org + '/' + repo + 443 var req = new mxXmlRequest(this.baseUrl + '/repos/' + org + '/' + repo + 450 success(this.createGitHubFile(org, repo, ref, JSON.parse(req.getText()), asLibrary)); 466 GitHubClient.prototype.createGitHubFile = function(org, repo, ref, data, asLibrary) argument 468 var meta = {'org': org, 'repo': repo, 'ref': ref, 'name': data.name, property 531 var repo = tokens[1]; 542 …this.checkExists(org + '/' + repo + '/' + ref + '/' + path, true, mxUtils.bind(this, function(chec… [all …]
|
| D | GitLabClient.js | 338 var repo = tokens[repoPos]; 341 var url = this.baseUrl + '/projects/' + encodeURIComponent(org + '/' + repo) + '/repository/' + 387 var repo = tokens[repoPos]; 401 var url = this.baseUrl + '/projects/' + encodeURIComponent(org + '/' + repo) + 432 url = this.baseUrl + '/projects/' + encodeURIComponent(org + '/' + repo) + 440 success(this.createGitLabFile(org, repo, ref, JSON.parse(req.getText()), asLibrary, refPos)); 507 GitLabClient.prototype.createGitLabFile = function(org, repo, ref, data, asLibrary, refPos) argument 510 var htmlUrl = gitLabUrl + org + '/' + repo + '/blob/' + ref + '/' + data.file_path; 511 …var downloadUrl = gitLabUrl + org + '/' + repo + '/raw/' + ref + '/' + data.file_path + '?inline=f… 514 var meta = {'org': org, 'repo': repo, 'ref': ref, 'name': fileName, property [all …]
|
| D | GitLabFile.js | 25 encodeURIComponent(this.meta.repo) +'/-/project_members'); 37 ((this.meta.repo != null) ? encodeURIComponent(this.meta.repo) + '/' +
|
| /plugin/issuelinks/action/ |
| D | ajax.php | 147 foreach ($repos as $repo) { 148 $stateIssue = empty($repo->hookID) ? 'inactive' : 'active'; 149 if ($repo->error === 403) { 151 } elseif (!empty($repo->error)) { 154 $repoDisplayName = $repo->displayName; 155 $project = $repo->full_name; 156 …$hookTitle = $repo->error === 403 ? $this->getLang('title:forbidden') : $this->getLang('title:issu… 161 'data-id' => $repo->hookID,
|
| /plugin/matrixnotifierwas/vendor/guzzlehttp/guzzle/ |
| D | README.md | 65 | 3.x | EOL | `guzzle/guzzle` | `Guzzle` | [v3][guzzle-3-repo] | [v3][g… 66 | 4.x | EOL | `guzzlehttp/guzzle` | `GuzzleHttp` | [v4][guzzle-4-repo] | N/A … 67 | 5.x | EOL | `guzzlehttp/guzzle` | `GuzzleHttp` | [v5][guzzle-5-repo] | [v5][g… 68 | 6.x | Security fixes only | `guzzlehttp/guzzle` | `GuzzleHttp` | [v6][guzzle-6-repo] | [v6][g… 69 | 7.x | Latest | `guzzlehttp/guzzle` | `GuzzleHttp` | [v7][guzzle-7-repo] | [v7][g… 71 [guzzle-3-repo]: https://github.com/guzzle/guzzle3 72 [guzzle-4-repo]: https://github.com/guzzle/guzzle/tree/4.x 73 [guzzle-5-repo]: https://github.com/guzzle/guzzle/tree/5.3 74 [guzzle-6-repo]: https://github.com/guzzle/guzzle/tree/6.5 75 [guzzle-7-repo]: https://github.com/guzzle/guzzle [all …]
|
| /plugin/authgooglesheets/vendor/guzzlehttp/guzzle/ |
| D | README.md | 79 | 3.x | EOL | `guzzle/guzzle` | `Guzzle` | [v3][guzzle-3-repo] | [v3][guzzle-3-d… 80 | 4.x | EOL | `guzzlehttp/guzzle` | `GuzzleHttp` | [v4][guzzle-4-repo] | N/A … 81 | 5.x | EOL | `guzzlehttp/guzzle` | `GuzzleHttp` | [v5][guzzle-5-repo] | [v5][guzzle-5-d… 82 | 6.x | Latest | `guzzlehttp/guzzle` | `GuzzleHttp` | [v6][guzzle-6-repo] | [v6][guzzle-6-d… 84 [guzzle-3-repo]: https://github.com/guzzle/guzzle3 85 [guzzle-4-repo]: https://github.com/guzzle/guzzle/tree/4.x 86 [guzzle-5-repo]: https://github.com/guzzle/guzzle/tree/5.3 87 [guzzle-6-repo]: https://github.com/guzzle/guzzle
|
| /plugin/git/action/ |
| D | revert.php | 49 $repo = new GitRepo($datapath); 50 $repo->git_path = $git_exe_path; 51 $repo->revertLastCommit();
|
| D | merge.php | 45 $repo = new GitRepo($datapath); 46 $repo->git_path = $git_exe_path; 47 $repo->pull('origin', 'master');
|
| D | commit.php | 55 $repo = new GitRepo($datapath); 56 $repo->git_path = $git_exe_path; 57 $result = $repo->commit($commit_message);
|
| D | push.php | 60 $repo = new GitRepo($datapath); 61 $repo->git_path = $git_exe_path; 62 $result = $repo->push();
|
| /plugin/issuelinks/services/ |
| D | GitHub.service.php | 235 $repo = new Repository(); 236 $repo->full_name = $repoData['full_name']; 237 $repo->displayName = $repoData['name']; 244 $repo->error = 403; 249 $repo->hookID = $ourIsseHook['id']; 251 $projects[] = $repo; 459 $repo = $issue->getProject(); 461 $endpoint = '/repos/' . $repo . '/issues/' . $issueNumber; 466 $endpoint = '/repos/' . $repo . '/pulls/' . $issueNumber; 470 $issues = $this->parseMergeRequestDescription($repo, $mergeRequestText);
|
| /plugin/git/db/ |
| D | update0002.sql | 1 INSERT INTO git(repo, timestamp, status ) VALUES ('local', 0, 'clean'); 2 INSERT INTO git(repo, timestamp, status ) VALUES ('upstream', 0, 'clean');
|
| D | update0001.sql | 1 CREATE TABLE git (repo TEXT PRIMARY KEY, timestamp INTEGER, status TEXT); field 2 CREATE UNIQUE INDEX idx_git ON git(repo);
|
| /plugin/pycode/ |
| D | syntax.php | 217 $repo = array(); // store all <src-url>(s) found in the current page 248 $repo[$src_url] = 0; 251 in_array($src_url, array_keys($repo)) == false) { 252 $repo[$src_url] = 2; 265 if ($repo[$src_url] == 0) { 274 elseif ($repo[$src_url] == 2) { 293 if ($repo[$src_url] == 0 or $repo[$src_url] == 1) { 302 $repo[$src_url] = 1; 304 elseif ($repo[$src_url] == 2) {
|
| /plugin/repo/ |
| D | plugin.info.txt | 1 base repo 7 url http://www.dokuwiki.org/plugin:repo
|
| /plugin/asciidocjs/node_modules/lodash/ |
| D | flake.lock | 27 "repo": "flake-utils", 33 "repo": "flake-utils",
|