| /dokuwiki/.github/workflows/ |
| H A D | testWindows.yml | 18 run: 39 run: | 44 run: | 48 - name: Run PHPUnit 49 run: | 51 composer run test
|
| H A D | autoFix.yml | 27 run: | 37 - name: Run Rector 38 run: ./_test/vendor/bin/rector process --config _test/rector.php --no-diffs 40 - name: Run PHP CodeSniffer autofixing 42 run: ./_test/vendor/bin/phpcbf --standard=_test/phpcs_MigrationAdjustments.xml 52 …ully check the changes before merging. Please note that unit tests are not run for automated pull …
|
| H A D | testLinux.yml | 18 run: 57 run: | 62 run: | 69 - name: Run PHPUnit 70 run: | 72 composer run test
|
| H A D | phpCS.yml | 32 - name: run PHP codesniffer 33 run: | 36 composer run check
|
| H A D | release-build.yml | 21 run: | 25 run: | 54 run: | 58 run: | 97 run: | 108 run: |
|
| H A D | release-preparation.yml | 33 run: | 43 run: | 48 run: | 56 run: | 63 run: |
|
| H A D | deletedFiles.yml | 29 run: | 38 run: |
|
| /dokuwiki/vendor/splitbrain/slika/ |
| H A D | README.md | 19 Simply get an Adapter from the Slika factory, run some operations on it and call `save`. 21 …onsider the chain to be one command. Do not reuse the adapter returned by `run()`, it is a single … 23 Options (see below) can be passed as a second parameter to the `run` factory. 34 Slika::run('input.png', $options) 55 Slika::run('input.jpg')->resize(500,500)->save('output.png', 'png'); 58 Slika::run('input.jpg')->resize(500,0)->save('output.png', 'png'); 61 Slika::run('input.jpg')->resize(0,500)->save('output.png', 'png'); 69 Slika::run('input.jpg')->crop(500,500)->save('output.png', 'png'); 86 Slika::run('input.jpg')->rotate(Slika::ROTATE_CW)->save('output.png', 'png'); 94 Slika::run('input.jpg')->autorotate()->save('output.png', 'png'); [all …]
|
| /dokuwiki/_test/ |
| H A D | README | 15 The composer configuration contains a number of scripts to run the various tools on all of DokuWiki. 17 Run all the tests: 19 composer run test 23 composer run check 27 composer run autofix
|
| /dokuwiki/lib/plugins/styling/ |
| H A D | admin.php | 38 $run = $INPUT->extract('run')->str('run'); 39 if (!$run) return; 41 $run = 'run' . ucfirst($run); 42 $this->$run(); 101 echo '<button type="submit" name="run[preview]" class="btn_preview primary">' . 104 … echo '<button type="submit" name="run[reset]">' . $this->getLang('btn_reset') . '</button>'; 108 …echo '<button type="submit" name="run[save]" class="primary">' . $this->getLang('btn_save') . '</b… 113 … echo '<button type="submit" name="run[revert]">' . $this->getLang('btn_revert') . '</button>';
|
| /dokuwiki/lib/scripts/ |
| H A D | linkwiz.test.js | 4 …* This is a simple self-contained test suite until we introduce a proper way to run JavaScript tes… 7 * Needs to be run manually as: 34 // Run the tests
|
| /dokuwiki/bin/ |
| H A D | plugin.php | 26 …$options->registerArgument('plugin', 'The plugin CLI you want to run. Leave off to see list', fals… 32 * Arguments and options have been parsed when this is run 45 $plugin->run(); 111 $cli->run();
|
| H A D | render.php | 45 * Arguments and options have been parsed when this is run 66 $cli->run();
|
| H A D | indexer.php | 48 * Arguments and options have been parsed when this is run 118 $cli->run();
|
| H A D | striplangs.php | 46 * Arguments and options have been parsed when this is run 116 $cli->run();
|
| /dokuwiki/vendor/splitbrain/slika/src/ |
| H A D | Slika.php | 18 /** these can be overwritten using the options array in run() */ 40 public static function run($imagePath, $options = []) function in splitbrain\\slika\\Slika
|
| /dokuwiki/inc/Action/ |
| H A D | AbstractAction.php | 47 * Check conditions are met to run this action 61 * Throw an Exception if a different action should be run after this step.
|
| H A D | Plugin.php | 10 * Used to run action plugins
|
| /dokuwiki/lib/exe/ |
| H A D | taskrunner.php | 20 $taskRunner->run();
|
| /dokuwiki/ |
| H A D | SECURITY.md | 5 …ilites as fast as possible, but please keep in mind that this is a project run by volunteers. Depe…
|
| /dokuwiki/vendor/php81_bc/strftime/ |
| H A D | composer.json | 28 "test": "Run PHPUnit tests"
|
| /dokuwiki/inc/ |
| H A D | TaskRunner.php | 13 * Run an asynchronous task. 18 * Run the next task 23 public function run() function in dokuwiki\\TaskRunner 46 // run one of the jobs
|
| /dokuwiki/_test/core/ |
| H A D | DokuWikiTest.php | 57 * Reset the DokuWiki environment before each test run. Makes sure loaded config, 151 * Reinitialize the data directory for this class run 154 // remove any leftovers from the last run 166 * Reinitialize the conf directory for this class run
|
| /dokuwiki/vendor/splitbrain/php-cli/src/ |
| H A D | Base.php | 115 * Arguments and options have been parsed when this is run 133 public function run() function in splitbrain\\phpcli\\Base 136 throw new Exception('This has to be run from the command line'); 148 // region run handlers - for easier overriding
|
| /dokuwiki/inc/Extension/ |
| H A D | SyntaxPlugin.php | 68 * may be not be run during the object's current life. 83 * The function must not assume any other of the classes methods have been run
|