| ec34bb30 | 19-Oct-2022 |
Andreas Gohr <andi@splitbrain.org> |
Update core code to make use of sexplode()
This makes use of our own explode mechanism everywhere were we expect a fixed number of results. |
| b54ce96c | 19-Oct-2022 |
Andreas Gohr <andi@splitbrain.org> |
add proper namespace to test classes
This adds the test namespace to those test classes that are already in PSR4 format. |
| ec85aeb2 | 19-Oct-2022 |
Andreas Gohr <andi@splitbrain.org> |
fix autoloading for tests
This replaces my attempt in 12ebce974be688ac34bf4389645d5fc7baa29cc7
The canonical namespace for DokuWiki core tests is dokuwiki/test/ and this is mapped to _test/tests no
fix autoloading for tests
This replaces my attempt in 12ebce974be688ac34bf4389645d5fc7baa29cc7
The canonical namespace for DokuWiki core tests is dokuwiki/test/ and this is mapped to _test/tests now in the autoloader.
This means the majority of tests is in the dokuwiki/test/inc namespace.
Mockfiles are located at _test/mock and have the namespace dokuwiki/test/mock - if that's good or bad is debatable. I simply kept it as it always has been. But there might be an argument for having mock objects closer to the tests that use them (eg. right next to the test files).
show more ...
|
| 257ea06e | 19-Oct-2022 |
小李 <szsd5257@foxmail.com> |
translation update |
| ccc4830f | 16-Oct-2022 |
Olivier Humbert <trebmuh@tuxfamily.org> |
translation update |
| a8bda4bf | 16-Oct-2022 |
Olivier Humbert <trebmuh@tuxfamily.org> |
translation update |
| 08e37986 | 15-Oct-2022 |
Philippe Verbeke <ph.verbeke@gmail.com> |
translation update |
| 1a0013a6 | 14-Oct-2022 |
Schplurtz le Déboulonné <schplurtz@laposte.net> |
translation update |
| 2d198df1 | 12-Oct-2022 |
Aleksandr Selivanov <alexgearbox@yandex.ru> |
translation update |
| 631c6873 | 12-Oct-2022 |
Aleksandr Selivanov <alexgearbox@yandex.ru> |
translation update |
| 171622de | 12-Oct-2022 |
Olivier Humbert <trebmuh@tuxfamily.org> |
translation update |
| bbe6b3a7 | 12-Oct-2022 |
Andreas Gohr <andi@splitbrain.org> |
Remove the htmlok and phpok embedding options
Both options have grave security implications and novice users seem to ignore advice about them. In the last decades I never came across a wiki that had
Remove the htmlok and phpok embedding options
Both options have grave security implications and novice users seem to ignore advice about them. In the last decades I never came across a wiki that had legitimate use of these options.
If someone needs the functionality, it can easily be added back using a plugin. But I prefer to give users one less option to shoot themselves in the foot.
Removal of the translations for the config strings can follow after this has been merged.
show more ...
|
| ddba3176 | 12-Oct-2022 |
Andreas Gohr <andi@splitbrain.org> |
gitignore improvements for tracking the wiki namespace
The previous exceptions didn't work. Found the correct way at https://stackoverflow.com/a/57859600 |
| 2f907d1b | 11-Oct-2022 |
Andreas Gohr <andi@splitbrain.org> |
translation update |
| f5457a66 | 10-Oct-2022 |
Olivier HUMBERT <trebmuh@users.noreply.github.com> |
Update French translation
consistency with the rest of the translation |
| 9e83fb7b | 10-Oct-2022 |
Schplurtz le Déboulonné <Schplurtz@laposte.net> |
use real French words. Thanks to @Trebmuh |
| 7ca546c7 | 09-Oct-2022 |
Schplurtz le Déboulonné <Schplurtz@laposte.net> |
translate the logviwer plugin into French |
| 0519ac41 | 07-Oct-2022 |
Marvin Klein <32510006+MarvinKlein1508@users.noreply.github.com> |
Minify sytnax |
| e86df411 | 07-Oct-2022 |
Marvin Klein <32510006+MarvinKlein1508@users.noreply.github.com> |
Update inc/toolbar.php
Minify syntax
Co-authored-by: Gerrit Uitslag <klapinklapin@gmail.com> |
| 7f7e5699 | 06-Oct-2022 |
Andreas Gohr <andi@splitbrain.org> |
keep selected options visible
This fixes a styling issue in the base styles where selected options in a multiselect are no longer differentiable from non selected options when the focus is removed f
keep selected options visible
This fixes a styling issue in the base styles where selected options in a multiselect are no longer differentiable from non selected options when the focus is removed from the select.
show more ...
|
| e945440a | 04-Oct-2022 |
Marvin Klein <32510006+MarvinKlein1508@users.noreply.github.com> |
Fix toolbar in popup.php
The popup throws two warnings becasue $INFO is NULL within the popup itself.
This fixes this warning but not sure if it is intended to be null.
Fixes:
Warning: Trying t
Fix toolbar in popup.php
The popup throws two warnings becasue $INFO is NULL within the popup itself.
This fixes this warning but not sure if it is intended to be null.
Fixes:
Warning: Trying to access array offset on value of type null in D:\xampp\htdocs\dokuwiki\inc\toolbar.php on line 271
Warning: Trying to access array offset on value of type null in D:\xampp\htdocs\dokuwiki\inc\toolbar.php on line 272
show more ...
|
| 1d5848a6 | 21-Sep-2022 |
fiwswe <53953985+fiwswe@users.noreply.github.com> |
Replace direct access to $_SERVER with $INPUT->server->…
2nd try on a separate branch
Also fixes a line that was too long
Note: As I do not use this plugin, this is completely untested.
It sh
Replace direct access to $_SERVER with $INPUT->server->…
2nd try on a separate branch
Also fixes a line that was too long
Note: As I do not use this plugin, this is completely untested.
It should fix splitbrain#3778 (unless I made a stupid mistake).
See https://github.com/fiwswe/dokuwiki/commit/ce0feb5f5c38d0e698bd162105fbe61ceb27fca8
show more ...
|
| 1ab7d624 | 21-Sep-2022 |
fiwswe <53953985+fiwswe@users.noreply.github.com> |
Revert: Messed up PR #3774
The previuos commit was added to PR #3774 by mistake. reverting now. |
| ce0feb5f | 21-Sep-2022 |
fiwswe <53953985+fiwswe@users.noreply.github.com> |
Replace direct access to $_SERVER with $INPUT->server->…
Note: As I do not use this plugin, this is completely untested.
It should fix https://github.com/splitbrain/dokuwiki/issues/3778 (unless I
Replace direct access to $_SERVER with $INPUT->server->…
Note: As I do not use this plugin, this is completely untested.
It should fix https://github.com/splitbrain/dokuwiki/issues/3778 (unless I made a stupid mistake).
show more ...
|
| fe4fec2f | 19-Sep-2022 |
fiwswe <53953985+fiwswe@users.noreply.github.com> |
Shorten comment line to appease PHP Code Sniffer |