Home
last modified time | relevance | path

Searched +full:commit +full:- +full:message (Results 1 – 25 of 155) sorted by relevance

1234567

/plugin/git/lib/
DGit.php9 * @version 0.1.1-a
18 // ------------------------------------------------------------------------
72 // ------------------------------------------------------------------------
87 return $this->repo_path;
95 $this->getConf('');
99 $repo->git_path = $git_exe_path;
123 $repo->clone_from($source);
124 else $repo->run('init');
141 $this->set_repo_path($repo_path, $create_new, $_init);
160 $this->repo_path = $repo_path;
[all …]
/plugin/gitbacked/lang/en/
H A Dsettings.php9 $lang['pushAfterCommit'] = 'Push active branch to remote origin after every commit';
13 $lang['commitPageMsg'] = 'Commit message for page edits (%user%,%mail%,%summary%,%page%,%ns% are re…
14 $lang['commitPageMsgDel'] = 'Commit message for deleted pages (%user%,%mail%,%summary%,%page%,%ns% …
15 $lang['commitMediaMsg'] = 'Commit message for media files (%user%,%mail%,%media% are replaced by th…
16 $lang['commitMediaMsgDel'] = 'Commit message for deleted media files (%user%,%mail%,%media% are rep…
21 $lang['ignorePaths'] = 'Paths/files which are ignored and not added to git (comma-separated)';
23 …>emailAddressOnError</code> is defined, an eMail will be sent on any git commit. This is supposed …
/plugin/pagecss/
H A D.git-cliff.toml6 {% for commit in commits %}
7 - {{ commit.message | upper_first }} ([`{{ commit.id | truncate(7) }}`]({{ commit.remote }}{{ commi…
13 tag_pattern = "v[0-9]*"
/plugin/gitlog/
Dstyle.css1 .gitlogplugin li.commit {
2 margin-bottom: 10px;
3 border-spacing: 0;
6 .gitlogplugin li.commit div.message {
7 font-weight: bold;
10 .gitlogplugin li.commit span.meta {
11 font-size: 90%;
15 font-size: 90%;
18 .gitlogplugin li.commit ul.changedfiles{
21 font-size: 90%;
Dsyntax.php30 $this->Lexer->addSpecialPattern('<gitlog:.+?>', $mode, 'plugin_gitlog');
92 $repository = $this->clean_git_dir($data['dir']).$data['repository'];
94 $repository = $this->clean_git_dir($this->getConf('root_dir')).$data['repository'];
103 $log = $this->git_log($repository, $limit, $bare);
106 $renderer->doc .= '<ul class="gitlogplugin">';
110 $renderer->doc .= '<li class="commit"><div class="message">';
111 $renderer->doc .= hsc($row['message']);
112 $renderer->doc .= '</div><div class="meta">';
113 …$renderer->doc .= hsc($row['author']).' : '.date($this->getConf('date_format'), $row['timestamp'])…
114 $renderer->doc .= '</div>';
[all …]
/plugin/issuelinks/lang/en/
Dlang.php22 $lang['label:commit hash'] = 'Hash of the commit to import (0-9, a-f, at least eight digit)';
23 $lang['label github:choose organisation'] = 'Choose which organisation\'s repository-webhooks to ma…
24 $lang['label gitlab:choose organisation'] = 'Choose which group\'s project-webhooks to manage';
33 $lang['placeholder:git commit hash'] = 'edbd3278';
41 $lang['tab:issueimport'] = 'Issue-Import';
42 $lang['tab:commitimport'] = 'Commit-Import';
47 $lang['info:commit import in progress'] = 'Commit import by %s in progress!';
48 $lang['info:commit import in progress no user'] = 'Commit import in progress!';
55 …in/continue after %s. Please note that this time may be either UTC or server-time or your local ti…
57 $lang['menu:repo-admin'] = 'Issuelinks: setup project management services';
[all …]
/plugin/gitlab/
Dsyntax.php3 * Plugin GitLab: Gets commit message by project name and commit id.
16 …$this->Lexer->addSpecialPattern('\[\[gitlabapi>[a-zA-Z0-9.-]+>[a-z0-9]+\]\]', $mode, 'plugin_gitla…
21 $commit_id_short = substr($commit_id, 0, -2);
22 list($repository_id, $web_url)= $this->getInfoByName($repository_name);
23 list($commit_msg, $commit_id_long) = $this->getInfoByHash($repository_id, $commit_id_short);
32 …$renderer->doc .= '<a target="_blank" href="' . htmlspecialchars($data[0]) . '/commit/' . htmlspec…
39 $gitlabServer = $this->getConf('server');
40 $apiToken = $this->getConf('api_token');
43 $repositories = json_decode($http->get($reqUrl), true);
55 $gitlabServer = $this->getConf('server');
[all …]
/plugin/gitbacked/action/
H A Deditcommit.php6 * @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html
42 $this->temp_dir = GitBackedUtil::getTempDir();
47 $controller->register_hook('IO_WIKIPAGE_WRITE', 'AFTER', $this, 'handleIOWikiPageWrite');
48 $controller->register_hook('MEDIA_UPLOAD_FINISH', 'AFTER', $this, 'handleMediaUpload');
49 $controller->register_hook('MEDIA_DELETE_FILE', 'AFTER', $this, 'handleMediaDeletion');
50 $controller->register_hook('DOKUWIKI_DONE', 'AFTER', $this, 'handlePeriodicPull');
56 $repoPath = GitBackedUtil::getEffectivePath($this->getConf('repoPath'));
57 $gitPath = trim($this->getConf('gitPath'));
65 $repoWorkDir = $this->getConf('repoWorkDir');
70 : Git::getBin() . ' --work-tree ' . escapeshellarg($repoWorkDir));
[all …]
/plugin/git/syntax/
Dlocalstatus.php20 $this->helper =& plugin_load('helper', 'git');
21 if(!$this->helper) msg('Loading the git helper in the git_localstatus class failed.', -1);
64 $this->Lexer->addSpecialPattern('~~GITLocalStatus~~',$mode,'plugin_git_localstatus');
72 $match = substr($match,11,-2); //strip ~~REVISIONS: from start and ~~ from end
73 // Wolfgang 2007-08-29 suggests commenting out the next line
95 … $renderer->doc .= "<br/><br/>You need to be logged in to view this page. Please login.";
100 $this->getConf('');
104 $repo->git_path = $git_exe_path;
107 $waiting_to_commit = $repo->get_status();
110 $renderer->doc .= '<h3>These are the files that have changed:</h3>';
[all …]
Dremotestatus.php20 $this->helper =& plugin_load('helper', 'git');
21 if(!$this->helper) msg('Loading the git helper in the git_localstatus class failed.', -1);
64 $this->Lexer->addSpecialPattern('~~GITRemoteStatus~~',$mode,'plugin_git_remotestatus');
72 $match = substr($match,11,-2); //strip ~~REVISIONS: from start and ~~ from end
73 // Wolfgang 2007-08-29 suggests commenting out the next line
97 … $renderer->doc .= "<br/><br/>You need to be logged in to view this page. Please login.";
103 $this->getConf('');
109 $repo->git_path = $git_exe_path;
110 $repo->fetch();
111 $log = $repo->get_log();
[all …]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/
DCHANGELOG.md3 - Added port in url for trace and logger messages
4 [#1126](https://github.com/elastic/elasticsearch-php/pull/1126)
7 - (DOCS) Added the HTTP meta data section
8 [#1143](https://github.com/elastic/elasticsearch-php/pull/1143)
9 - Added support for API Compatibility Header
10 [#1142](https://github.com/elastic/elasticsearch-php/pull/1142)
11 - (DOCS) Added Helpers section to PHP book
12 [#1129](https://github.com/elastic/elasticsearch-php/pull/1129)
13 - Added the API description in phpdoc section for each endpoint
14 …[9e05c81](https://github.com/elastic/elasticsearch-php/commit/9e05c8108b638b60cc676b6a4f4be97c7df9…
[all …]
/plugin/git/
Dplugin.info.txt4 date 2012-12-02
6 …It allows, amongst other things to commit changes locally while asking for a commit message and pu…
Dhelper.php56 if(!$this->dt)
58 $this->dt =& plugin_load('syntax', 'data_entry');
59 if(!$this->dt)
61 …('Error loading the data table class from GIT Helper. Make sure the data plugin is installed.',-1);
80 $pattern = '/----.*dataentry.*\R----/s';
87 // Re-use the handle method to get the formatted data
90 $formatted = $this->dt->handle($cleanedMatch, null, null, $dummy);
93 // Re-use the save_data method to .... (drum roll) save the data.
95 $html = $this->dt->_saveData($formatted, $entry['id'], 'Title'.count($output));
109 $res = $this->loadSqlite();
[all …]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
Drelease-notes.asciidoc1 [[release-notes]]
4 * <<rn-7-15-0>>
5 * <<rn-7-14-0>>
6 * <<rn-7-13-1>>
7 * <<rn-7-13-0>>
8 * <<rn-7-12-0>>
9 * <<rn-7-11-0>>
10 * <<rn-7-10-0>>
11 * <<rn-7-9-1>>
12 * <<rn-7-9-0>>
[all …]
/plugin/gitbacked/classes/
H A DGitRepo.php70 $reference = "--reference $reference";
72 $repo->cloneRemote($source, $reference);
74 $repo->cloneFrom($source);
77 $repo->run('init');
100 $this->plugin = $plugin;
102 $this->setRepoPath($repo_path, $create_new, $_init);
125 $this->repo_path = $repo_path;
126 $this->bare = false;
131 $this->repo_path = $repo_path;
132 $this->bare = true;
[all …]
/plugin/fetchmedia/
Dpackage.json5 "repository": "git@github.com:cosmocode/dokuwiki-plugin-fetchmedia.git",
7 "license": "GPL-2.0",
9 "babel-core": "^6.25.0",
10 "babel-loader": "^7.1.1",
11 "babel-polyfill": "^6.23.0",
12 "babel-preset-env": "^1.6.0",
14 "eslint-config-airbnb-base": "^11.3.1",
15 "eslint-loader": "^1.9.0",
16 "eslint-plugin-import": "^2.7.0",
17 "validate-commit-message": "^3.0.1",
[all …]
/plugin/strata/driver/
H A Ddriver.php38 $this->_debug = $debug;
39 $this->util =& plugin_load('helper', 'strata_util');
62 * Returns the syntax for case-insensitive string comparison.
80 $this->castToNumber($val),
81 $this->ci($val)
92 $this->_dsn = $dsn;
94 $this->_db = $this->initializePDO($dsn);
96 if ($this->_debug) {
97 … msg(sprintf($this->util->getLang('driver_failed_detail'), hsc($dsn), hsc($e->getMessage())), -1);
99 msg($this->util->getLang('driver_failed'), -1);
[all …]
/plugin/pageredirect/
DChangeLog.md9 [UNRELEASED]: https://github.com/glensc/dokuwiki-plugin-pageredirect/compare/20221120...master
13 - Make external redirects optional, #43
14 - Add Move plugin support, #40
16 [20221120]: https://github.com/glensc/dokuwiki-plugin-pageredirect/compare/20220103...20221120
20 - Partial support for backlinks with redirects by @michitux in #26
21 - Esperanto translation in #30
22 - Add informal german language by @ebroda in #33
23 - Add redirection target to link metadata by @alexdraconian in #39
25 [20220103]: https://github.com/glensc/dokuwiki-plugin-pageredirect/compare/20170512...20220103
29 - plugin now requires dokuwiki 2014-05-05 (Ponder Stibbons)
[all …]
/plugin/asciidocjs/node_modules/pug-filters/node_modules/yargs/
DCHANGELOG.md5 - [#165](https://github.com/bcoe/yargs/pull/165) expose yargs.terminalWidth() thanks @ensonic (@bco…
6 - [#164](https://github.com/bcoe/yargs/pull/164) better array handling thanks @getify (@bcoe)
9 - [b6662b6](https://github.com/bcoe/yargs/commit/b6662b6774cfeab4876f41ec5e2f67b7698f4e2f) clarify …
10 - [0291360](https://github.com/bcoe/yargs/commit/02913606285ce31ce81d7f12c48d8a3029776ec7) fixed te…
13 - [#157](https://github.com/bcoe/yargs/pull/157) Merge pull request #157 from bcoe/command-yargs. a…
14 - [#158](https://github.com/bcoe/yargs/pull/158) Merge pull request #158 from kemitchell/spdx-licen…
17 - [#154](https://github.com/bcoe/yargs/pull/154) showHelp's method signature was misleading fixes #…
18 - [#151](https://github.com/bcoe/yargs/pull/151) refactor yargs' table layout logic to use new help…
19 - [#150](https://github.com/bcoe/yargs/pull/150) Fix README example in argument requirements (@anno…
21 ### v3.7.2 (2015/04/13 11:52 -07:00)
[all …]
/plugin/quickstats/GEOIP/vendor/maxmind/web-service-common/dev-bin/
Drelease.sh3 set -eu -o pipefail
9 ([0-9]+\.[0-9]+\.[0-9]+) \(([0-9]{4}-[0-9]{2}-[0-9]{2})\)
10 -*
23 notes="$(echo "${BASH_REMATCH[3]}" | sed -n -e '/^[0-9]\+\.[0-9]\+\.[0-9]\+/,$!p')"
25 if [[ "$date" != $(date +"%Y-%m-%d") ]]; then
32 if [ -n "$(git status --porcelain)" ]; then
37 php composer.phar self-update
45 read -e -p "Commit changes and push to origin? " should_push
54 message="$version
58 hub release create -m "$message" "$tag"
[all …]
/plugin/asciidocjs/node_modules/is-core-module/
DCHANGELOG.md8 ## [v2.13.0](https://github.com/inspect-js/is-core-module/compare/v2.12.1...v2.13.0) - 2023-08-05
12 - [Dev Deps] update `@ljharb/eslint-config`, `aud`, `semver`, `tape` [`c75b263`](https://github.com…
13 - [New] `node:test/reporters` and `wasi`/`node:wasi` are in v18.17 [`d76cbf8`](https://github.com/i…
15 ## [v2.12.1](https://github.com/inspect-js/is-core-module/compare/v2.12.0...v2.12.1) - 2023-05-16
19 - [Fix] `test/reporters` now requires the `node:` prefix as of v20.2 [`12183d0`](https://github.com…
21 ## [v2.12.0](https://github.com/inspect-js/is-core-module/compare/v2.11.0...v2.12.0) - 2023-04-10
25 - [actions] update rebase action to use reusable workflow [`c0a7251`](https://github.com/inspect-js…
26 - [Dev Deps] update `@ljharb/eslint-config`, `aud`, `tape` [`9ae8b7f`](https://github.com/inspect-j…
27 - [New] `test/reporters` added in v19.9, `wasi` added in v20 [`9d5341a`](https://github.com/inspect
28 - [Dev Deps] add missing `in-publish` dep [`5980245`](https://github.com/inspect-js/is-core-module/
[all …]
/plugin/dev/.github/workflows/
H A DgetEventNames.yml5 - cron: "0 0 * * *"
10 runs-on: Ubuntu-latest
12 - name: Install pup
19 - name: Checkout
22 fetch-depth: 0
24 - name: Download Event Names
28 - name: Create Pull Request
29 uses: peter-evans/create-pull-request@v4
31 commit-message: "Update event names"
34 delete-branch: true
/plugin/gitbacked/
H A DCHANGELOG.md8 <!-- Format restrictions - see https://common-changelog.org and https://keepachangelog.com/ for det…
9 <!-- Each Release must start with a line for the release version of exactly this format: ## [versio…
10 <!-- The subsequent comment lines start with a space - not to irritate the release scripts parser!
11 ## [yyyy-mm-dd]
12 <empty line> - optional sub sections may follow like:
14 - This feature was changed
17 - This feature was added
20 - This feature was changed
23 - This feature was removed
26 - This issue was fixed
[all …]
/plugin/dokugitviewer/
Dgit-utils.inc.php14 $c = GIT_EXEC.' --git-dir='.ROOT_DIR.$repo.' '.$command;
28 $data = run_git('log --pretty=format:"'.$params.'" -'.$limit, $repo, $bare);
34 'commit' => $columns[0],
37 'message' => $columns[3],
/plugin/dwcommits/lang/en/
Dlang.php10 $lang['encoding'] = 'utf-8';
35 …r set it manually or let dwcommit set it for you. If already set, it will appear in the text-box.';
41 $lang['explain_git'] = 'These functions can be used to bring your Git up-to-date';
49 $lang['header_git_commit'] = 'Commit local files';
50 $lang['btn_commit'] = 'Commit';
76 $lang['header_git_MsgArea'] = 'Message Area';

1234567