Skip to content
Extraits de code Groupes Projets
Valider e3b25042 rédigé par Thomas Steur's avatar Thomas Steur Validation de GitHub
Parcourir les fichiers

Merge pull request #10713 from lipis/GitHub

Fixed GitHub case
parents e4211b26 7359c372
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -187,7 +187,7 @@ class CreatePull extends TranslationBase ...@@ -187,7 +187,7 @@ class CreatePull extends TranslationBase
while (true) { while (true) {
$username = $dialog->ask($output, 'Please provide your github username (to create a pull request using Github API): '); $username = $dialog->ask($output, 'Please provide your GitHub username (to create a pull request using GitHub API): ');
$returnCode = shell_exec('curl \ $returnCode = shell_exec('curl \
-X POST \ -X POST \
......
...@@ -33,7 +33,7 @@ class GenerateTravisYmlFile extends ConsoleCommand ...@@ -33,7 +33,7 @@ class GenerateTravisYmlFile extends ConsoleCommand
->addOption('artifacts-pass', null, InputOption::VALUE_REQUIRED, ->addOption('artifacts-pass', null, InputOption::VALUE_REQUIRED,
"Password to the Piwik build artifacts server. Will be encrypted in the .travis.yml file.") "Password to the Piwik build artifacts server. Will be encrypted in the .travis.yml file.")
->addOption('github-token', null, InputOption::VALUE_REQUIRED, ->addOption('github-token', null, InputOption::VALUE_REQUIRED,
"Github token of a user w/ push access to this repository. Used to auto-commit updates to the " "GitHub token of a user w/ push access to this repository. Used to auto-commit updates to the "
. ".travis.yml file and checkout dependencies. Will be encrypted in the .travis.yml file.\n\n" . ".travis.yml file and checkout dependencies. Will be encrypted in the .travis.yml file.\n\n"
. "If not supplied, the .travis.yml will fail the build if it needs updating.") . "If not supplied, the .travis.yml will fail the build if it needs updating.")
->addOption('php-versions', null, InputOption::VALUE_OPTIONAL, ->addOption('php-versions', null, InputOption::VALUE_OPTIONAL,
...@@ -70,4 +70,4 @@ class GenerateTravisYmlFile extends ConsoleCommand ...@@ -70,4 +70,4 @@ class GenerateTravisYmlFile extends ConsoleCommand
return $returnCode; return $returnCode;
} }
} }
\ No newline at end of file
...@@ -1113,7 +1113,7 @@ Thanks @entertainyou, @SimenB, @just-paja for the heads-up. ...@@ -1113,7 +1113,7 @@ Thanks @entertainyou, @SimenB, @just-paja for the heads-up.
* Added js API. Closes #265 * Added js API. Closes #265
* Added: initial run of tests with `--watch`. Closes #345 * Added: initial run of tests with `--watch`. Closes #345
* Added: mark `location` as a global on the CS. Closes #311 * Added: mark `location` as a global on the CS. Closes #311
* Added `markdown` reporter (github flavour) * Added `markdown` reporter (GitHub flavour)
* Added: scrolling menu to coverage.html. Closes #335 * Added: scrolling menu to coverage.html. Closes #335
* Added source line to html report for Safari [Tyson Tate] * Added source line to html report for Safari [Tyson Tate]
* Added "min" reporter, useful for `--watch` [Jakub Nešetřil] * Added "min" reporter, useful for `--watch` [Jakub Nešetřil]
......
...@@ -148,7 +148,7 @@ program.on('reporters', function() { ...@@ -148,7 +148,7 @@ program.on('reporters', function() {
console.log(' xunit - xunit reporter'); console.log(' xunit - xunit reporter');
console.log(' min - minimal reporter (great with --watch)'); console.log(' min - minimal reporter (great with --watch)');
console.log(' json-stream - newline delimited json events'); console.log(' json-stream - newline delimited json events');
console.log(' markdown - markdown documentation (github flavour)'); console.log(' markdown - markdown documentation (GitHub flavour)');
console.log(' nyan - nyan cat!'); console.log(' nyan - nyan cat!');
console.log(); console.log();
process.exit(); process.exit();
......
...@@ -655,7 +655,7 @@ Their replacements are listed here: ...@@ -655,7 +655,7 @@ Their replacements are listed here:
- Fixed a minor bug in thenable assimilation, regressed - Fixed a minor bug in thenable assimilation, regressed
because of the change in the forwarding protocol. because of the change in the forwarding protocol.
- Fixed behavior of "q/util" `deep` method on dates and - Fixed behavior of "q/util" `deep` method on dates and
other primitives. Github issue #11. other primitives. GitHub issue #11.
## 0.2.6 ## 0.2.6
......
...@@ -63,7 +63,7 @@ Application.prototype.printHelpAndExit = function () { ...@@ -63,7 +63,7 @@ Application.prototype.printHelpAndExit = function () {
console.log(" the tests are in another plugin. For use with travis build."); console.log(" the tests are in another plugin. For use with travis build.");
console.log(" --assume-artifacts: Assume the diffviewer and processed screenshots will be stored on the."); console.log(" --assume-artifacts: Assume the diffviewer and processed screenshots will be stored on the.");
console.log(" builds artifacts server. For use with travis build."); console.log(" builds artifacts server. For use with travis build.");
console.log(" --screenshot-repo: Specifies the github repository that contains the expected screenshots"); console.log(" --screenshot-repo: Specifies the GitHub repository that contains the expected screenshots");
console.log(" to link to in the diffviewer. For use with travis build."); console.log(" to link to in the diffviewer. For use with travis build.");
console.log(" --core: Only execute UI tests that are for Piwik core or Piwik core plugins."); console.log(" --core: Only execute UI tests that are for Piwik core or Piwik core plugins.");
console.log(" --first-half: Only execute first half of all the test suites. Will be only applied if no") console.log(" --first-half: Only execute first half of all the test suites. Will be only applied if no")
......
...@@ -70,7 +70,7 @@ DiffViewerGenerator.prototype.generate = function (callback) { ...@@ -70,7 +70,7 @@ DiffViewerGenerator.prototype.generate = function (callback) {
} }
expectedHtml += '<a href="' + expectedUrl + '">Expected</a>&nbsp;'; expectedHtml += '<a href="' + expectedUrl + '">Expected</a>&nbsp;';
githubUrl = '<a href="' + expectedUrlGithub + '">Github</a>'; githubUrl = '<a href="' + expectedUrlGithub + '">GitHub</a>';
} else { } else {
var expectedHtml = '<em>Not found</em>'; var expectedHtml = '<em>Not found</em>';
} }
...@@ -123,4 +123,4 @@ DiffViewerGenerator.prototype.generate = function (callback) { ...@@ -123,4 +123,4 @@ DiffViewerGenerator.prototype.generate = function (callback) {
callback(); callback();
}; };
exports.DiffViewerGenerator = DiffViewerGenerator; exports.DiffViewerGenerator = DiffViewerGenerator;
\ No newline at end of file
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter