Home
last modified time | relevance | path

Searched +full:git -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang) (Results 1 – 14 of 14) sorted by relevance

/dokuwiki/vendor/geshi/geshi/src/geshi/
H A Dbash.php179 'git', 'git add', 'git add--interactive', 'git am', 'git annotate',
180 'git apply', 'git archive', 'git bisect', 'git bisect--helper',
181 'git blam
[all...]
/dokuwiki/bin/
H A Dgittool.php12 * Easily manage DokuWiki git repositories
27 "Manage git repositories for DokuWiki and its plugins and templates.\n\n" .
41 'Tries to install a known plugin or template (prefix with template:) via git. Uses the DokuWiki.org ' .
42 'plugin repository to find the proper git repository. Multiple extensions can be given as parameters'
53 'The same as clone, but when no git source repository can be found, the extension is installed via ' .
65 'Lists all git repositories found in this DokuWiki installation'
70 'Any unknown commands are assumed to be arguments to git and will be executed in all repositories ' .
109 * Tries to install the given extensions using git clone
137 * Tries to install the given extensions using git clone with fallback to install
169 * Executes the given git comman
[all...]
/dokuwiki/vendor/composer/
H A Dinstalled.json8 "type": "git",
9 "url": "https://github.com/aziraphale/email-address-validator.git",
52 "type": "git",
53 "url": "https://github.com/GeSHi/geshi-1.0.git",
102 "type": "git",
103 "url": "https://github.com/kissifrot/php-ixr.git",
157 "type": "git",
158 "url": "https://github.com/flack/UniversalFeedCreator.git",
215 "type": "git",
216 "url": "https://github.com/paragonie/constant_time_encoding.git",
[all...]
/dokuwiki/
H A D.htaccess.dist16 ## Don't allow access to git directories
18 RedirectMatch 404 /\.git
/dokuwiki/inc/
H A Dinfoutils.php88 } elseif (is_dir(DOKU_INC . '.git')) {
89 $version['type'] = 'Git';
92 // First try to get date and commit hash by calling Git
94 $commitInfo = shell_exec("git log -1 --pretty=format:'%h %cd' --date=short");
102 // we cannot use git on the shell -- let's do it manually!
103 if (file_exists(DOKU_INC . '.git/HEAD')) {
104 $headCommit = trim(file_get_contents(DOKU_INC . '.git/HEAD'));
108 $pathToHead = DOKU_INC . '.git/' . $headCommit;
112 $packedRefs = file_get_contents(DOKU_INC . '.git/packed-refs');
123 // Get commit date from Git objec
[all...]
/dokuwiki/vendor/geshi/geshi/
H A Dbuild.xml6 Packs up a new version of geshi, tags it in git and releases it on
198 description="create the git tag for the current version"
201 command="git tag v${version}'"
H A DCHANGELOG38 - Restructure git repository
214 * Common subcommands for Apache, APT, CVS, Git, SVN and YUM for Bash (BenBE)
333 * Added Git commands for bash, ifup/ifdown (BenBE)
/dokuwiki/vendor/phpseclib/phpseclib/
H A DREADME.md17 * [Browse Git](https://github.com/phpseclib/phpseclib)
/dokuwiki/vendor/simplepie/simplepie/
H A DREADME.markdown118 2. In the `simplepie` directory, run `git shortlog -ns`
/dokuwiki/lib/plugins/extension/helper/
H A Dextension.php116 * If the extension is under git control
123 return file_exists($this->getInstallDir() . '/.git');
613 * @return string One of "none", "manual", "git" or "automatic"
619 if (is_dir($this->getInstallDir() . '/.git')) return 'git';
H A Dlist.php595 $errors .= '<p class="permerror">' . $this->getLang('git') . '</p>';
/dokuwiki/lib/plugins/extension/
H A Dcli.php28 " g - installed via git\n" .
/dokuwiki/vendor/simplepie/simplepie/src/
H A DMisc.php2077 * Uses the git index if it exists, otherwise uses the modification time
2087 if (file_exists($root . '/.git/index')) {
2088 static::$SIMPLEPIE_BUILD = filemtime($root . '/.git/index');
/dokuwiki/vendor/simplepie/simplepie/src/Parse/
H A DDate.php424 'GIT' => -32400,