| 4986a584 | 09-Mar-2020 |
Phy <git@phy25.com> |
shortcut relative link: fix 3 levels up situation |
| 26a03f08 | 09-Mar-2020 |
Phy <git@phy25.com> |
Match multiple levels shortcut relative link, fixes #1076
Previously the regex only matches one level. Test added as well. |
| 4bdfdb32 | 08-Mar-2020 |
Phy <git@phy25.com> |
separate some test AuthPlugins to single files
created AuthDeletePlugin and AuthCaseInsensitivePlugin under dokuwiki\test\mock |
| 7a0654be | 08-Mar-2020 |
Phy <git@phy25.com> |
check RemoteException code in unit tests |
| b53267d3 | 17-Jun-2019 |
Phy <git@phy25.com> |
Change cases of assertTrue in tests |
| 0f43ea44 | 10-Jun-2019 |
Schplurtz le Déboulonné <Schplurtz@laposte.net> |
add drupal and seafile hash methods |
| 7d3a1fc9 | 06-Mar-2020 |
bleistivt <me@bleistivt.net> |
Add test for video titles |
| 6d7829a7 | 03-Mar-2020 |
Phy <git@phy25.com> |
add alternative support for PHP not throwing ArgumentCountError in remote/APi
PHP 5.6 and 7.0 won't throw ArgumentCountError. In this case, we use set_error_handler on E_WARNING and throw exceptions
add alternative support for PHP not throwing ArgumentCountError in remote/APi
PHP 5.6 and 7.0 won't throw ArgumentCountError. In this case, we use set_error_handler on E_WARNING and throw exceptions if it's about argument missing.
show more ...
|
| 2fc08911 | 03-Mar-2020 |
Phy <git@phy25.com> |
suppress argument missing warnings on remote API test
This makes sure PHPUnit won't convert warnings into exceptions, and thus behaves as the same as regular DokuWiki where E_NOTICE is suppressed. |
| 5c6412cc | 03-Mar-2020 |
Phy <git@phy25.com> |
rename vague AuthPlugin used by remote and authdelete tests |
| 81f50a50 | 03-Mar-2020 |
Phy <git@phy25.com> |
add unit tests that check exception type on remote args missing for #2545 |
| 2ae2e001 | 02-Mar-2020 |
Phy <git@phy25.com> |
relax Revert permission to EDIT from manager
Revert is another type of edit, which may be simulated by manual editing without using this shortcut. This patch thus relaxes the permission check.
Than
relax Revert permission to EDIT from manager
Revert is another type of edit, which may be simulated by manual editing without using this shortcut. This patch thus relaxes the permission check.
Thank you @Klap-in for pointing this out.
show more ...
|
| 51ddbadd | 20-Feb-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
move histogram() into MetadataIndex class |
| 5f9bd525 | 20-Feb-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
Revert "histogram() change args order"
This reverts commit 4d04b7bbfe9c97673b0f22586d88e161aca34f70. |
| fd9f9891 | 20-Feb-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
remove unnecessary comment |
| 36faf696 | 21-Jan-2020 |
Michael Große <mic.grosse@googlemail.com> |
Split out temporary code style excludes
Splitting them out allows for plugins to use _test/phpcs.xml as the basis for their own linting without having an overly permissive coding standard. Also, thi
Split out temporary code style excludes
Splitting them out allows for plugins to use _test/phpcs.xml as the basis for their own linting without having an overly permissive coding standard. Also, this makes it more obvious and painful that these are just intended as temporary exceptions and should be actually fixed.
The rule `Generic.ControlStructures.InlineControlStructure.NotAllowed` has its comment adjust to make it clear that this is an intended deviation from the PSR-2/PSR-12 coding standard.
The rule `PSR1.Classes.ClassDeclaration.MissingNamespace` has to remain in the DokuWiki coding standard as the plugin base classes can currently not reasonably be in namespaces.
show more ...
|
| 9329b002 | 02-Feb-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
change static methods into instance methods |
| 4a90f94b | 02-Feb-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
move backlinks() and mediause() into MediaIndex class |
| 743c9a28 | 31-Jan-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
rename PagewordIndex to FulltextIndex |
| 4d04b7bb | 31-Jan-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
histogram() change args order
INdexer::histogram() is only used in indexer_histogram.test.php file. |
| 4027a91a | 30-Jan-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
use Indexer.php instead of PageIndex.php |
| 4352f974 | 22-Jan-2020 |
Andreas Gohr <gohr@cosmocode.de> |
Better callable support in Event default actions
Instead of parsing the passed callback ourselves, this patch relies on call_user_func_array() instead to call an Event's default action. This ensures
Better callable support in Event default actions
Instead of parsing the passed callback ourselves, this patch relies on call_user_func_array() instead to call an Event's default action. This ensures all possible ways to define a callback (including static methods) can be used.
This should fix a problem mentioned in #2943
show more ...
|
| c083b3ca | 20-Jan-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
create PluginUtils.test.php |
| 2f5645ef | 19-Jan-2020 |
Phy <git@phy25.com> |
add trim, and polish test_quotes of css_compress, again
An edge case that space at the beginning won't get removed. |
| 74be1290 | 19-Jan-2020 |
Phy <git@phy25.com> |
polish test_quotes of css_compress
Now the testcase string should be clearer to read |