| 16ad9412 | 11-Jan-2020 |
Rainbow Spike <Dr-Yukon@users.noreply.github.com> |
CDN antibrake
GooglePage Speed Insights rank up 5-10 points Otherwise, the browser render is waiting for loading and compiling big CDN script libraries |
| cef1629d | 01-Jun-2019 |
Rainbow Spike <Dr-Yukon@users.noreply.github.com> |
Update template.php |
| 39cb9fcd | 25-Jan-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
claer() idx files only created by index class |
| 9d112640 | 24-Jan-2020 |
PBU <pbu@xs4all.nl> |
translation update |
| e28d66f8 | 23-Jan-2020 |
Жељко Тодоровић <zeljko_todorovic@mail.com> |
translation update |
| 1b008e87 | 14-Jan-2020 |
Michael Große <mic.grosse@googlemail.com> |
Restore some backwards compatibility for injected handlers
Some plugins, for example the move plugin, use their own handler class. We need to give these plugins time to adjust their code.
This shou
Restore some backwards compatibility for injected handlers
Some plugins, for example the move plugin, use their own handler class. We need to give these plugins time to adjust their code.
This should restore the functionality of the move plugin. We still need to extract the handler class itself.
It also adds another debug method for triggering the deprecation event, since none of the two existing methods are suitable here. This dbgCustomDeprecationEvent method should be used sparingly and only where the other two don't work.
Co-authored-by: Phy <git@phy25.com>
show more ...
|
| 0d088939 | 14-Jan-2020 |
Michael Große <mic.grosse@googlemail.com> |
Restore backwards compatibility for Doku_Parser
Apparently, #2358 introduced a breaking change to the constructor and usage of Doku_Parser, which broke some plugins, e.g. the move plugin in michitux
Restore backwards compatibility for Doku_Parser
Apparently, #2358 introduced a breaking change to the constructor and usage of Doku_Parser, which broke some plugins, e.g. the move plugin in michitux/dokuwiki-plugin-move#176
This patch should restore the legacy behavior of this deprecated class.
show more ...
|
| 246d3337 | 29-Jun-2018 |
Michael Große <grosse@cosmocode.de> |
♻️ Rename flag to better show actual effect
This flag only causes parameters with empty strings to be skipped, not all empty() values. |
| 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 ...
|
| 02361d2a | 20-Jan-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
define getPages() in AbstractIndex instead of PageIndex
getPages() is inherited to each subclass of AbstractIndex, but MetadataIndex::getPages() will override the inherited method. |
| d756b1ca | 20-Jan-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
restore accessibility protected for getIndexWords() |
| 094ebf29 | 20-Jan-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
separate Tokenizer class |
| 868bf7c9 | 19-Jan-2020 |
rusly-id <rusly-id@users.noreply.github.com> |
translation update |
| c562873b | 19-Jan-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
remove Undefined method dispacher for _test |
| be5c1ea2 | 19-Jan-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
move lookup() to PagewordIndex class, reduce term 'Indexer'
make similar MetadataIndex::lookupKey() and PagewordIndex::lookup() |
| 46b83514 | 19-Jan-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
resolve conflictions, CodeSniffer errors |
| 166288e3 | 15-Jan-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
cast int for addIndexKey()
Does it solve scrutinizer inspection? The expression ``$this->addIndexKey('page', '', $page);`` of type ``false|integer|string`` adds the type ``string`` to the return on
cast int for addIndexKey()
Does it solve scrutinizer inspection? The expression ``$this->addIndexKey('page', '', $page);`` of type ``false|integer|string`` adds the type ``string`` to the return on line 73 which is incompatible with the return type documented by ``dokuwiki\Search\AbstractIndex::getPID`` of type ``integer|false``.
show more ...
|
| efe70805 | 15-Jan-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
use ::class for class name resolution |
| a9912249 | 15-Jan-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
remove global FT_SNIPPET_NUMBER
it is defined as namespace constant in Search/FulltextSearch.php file, and used in Remote/ApiCore.php and Ui/Search.php files. |
| 0cba610b | 14-Jan-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
rewrite deprecated ft_* functions |
| 3f4a342b | 14-Jan-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
rewrite deprecated idx_* functions |
| 9ad37f37 | 14-Jan-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
remove getInstance() from AbstractIndex |
| b47a51d9 | 14-Jan-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
fix $errors static |
| 839557ad | 13-Jan-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
fix Undefined methods dispatcher |
| 489a7bf9 | 13-Jan-2020 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
Undefined methods dispatcher
prepared for unit tests compatibility only |