Home
last modified time | relevance | path

Searched refs:repo_path (Results 1 – 5 of 5) sorted by relevance

/plugin/gitbacked/classes/
DGitRepo.php24 protected $repo_path; variable in woolfg\\dokuwiki\\plugin\\gitbacked\\GitRepo
44 $repo_path, argument
50 … if (is_dir($repo_path) && file_exists($repo_path . "/.git") && is_dir($repo_path . "/.git")) {
52 $repo_path,
54 '"' . $repo_path . '" is already a git repository',
58 $repo = new self($repo_path, $plugin, true, false);
63 $repo_path,
95 $repo_path = null, argument
101 if (is_string($repo_path)) {
102 $this->setRepoPath($repo_path, $create_new, $_init);
[all …]
DGit.php76 …public static function &create($repo_path, $source = null, \action_plugin_gitbacked_editcommit $pl… argument
78 return GitRepo::createNew($repo_path, $source, $plugin);
91 public static function open($repo_path, \action_plugin_gitbacked_editcommit $plugin = null) argument
93 return new GitRepo($repo_path, $plugin);
110 $repo_path, argument
115 return GitRepo::createNew($repo_path, $plugin, $remote, true, $reference);
DGitBackedUtil.php162 $repo_path = dirname(realpath($repo_git_dir));
164 if (strlen($repo_path) < strlen($doku_inc_path)) {
170 if (file_exists($repo_path . "/.git") && is_dir($repo_path . "/.git")) {
171 return $repo_path;
/plugin/git/lib/
DGit.php40 public static function &create($repo_path, $source = null) { argument
41 return GitRepo::create_new($repo_path, $source);
53 public static function open($repo_path) { argument
54 return new GitRepo($repo_path);
84 protected $repo_path = null; variable in GitRepo
87 return $this->repo_path;
117 public static function &create_new($repo_path, $source = null) { argument
118 if (is_dir($repo_path) && file_exists($repo_path."/.git") && is_dir($repo_path."/.git")) {
119 throw new Exception('"'.$repo_path.'" is already a git repository');
121 $repo = new self($repo_path, true, false);
[all …]
/plugin/gitbacked/action/
Deditcommit.php310 public function notifyCreateNewError($repo_path, $reference, $error_message) argument
313 'GIT_REPO_PATH' => $repo_path,
328 public function notifyRepoPathError($repo_path, $error_message) argument
331 'GIT_REPO_PATH' => $repo_path,
348 public function notifyCommandError($repo_path, $cwd, $command, $status, $error_message) argument
351 'GIT_REPO_PATH' => $repo_path,
369 public function notifyCommandSuccess($repo_path, $cwd, $command) argument
375 'GIT_REPO_PATH' => $repo_path,