| fb9fa88b | 05-Dec-2017 |
Andreas Gohr <andi@splitbrain.org> |
do no index hidden pages |
| 39bceb98 | 10-Nov-2017 |
Andreas Gohr <andi@splitbrain.org> |
Change plugin functionality into a trait
This allows for using the functionality in class hierarchies that can not inherit from DokuWiki_Plugin. |
| cbeaa4a0 | 10-Nov-2017 |
Andreas Gohr <andi@splitbrain.org> |
replace Doku_CLI with splitbrain\phpcli\CLI
It has few more features (like turning down verbosity) and looks nicer |
| f023c68e | 05-Nov-2017 |
Andreas Gohr <andi@splitbrain.org> |
comment out empty language string
The empty string is not translatable in the translation interface and causes all languages to be <100%
This is an alternative approach to #2164 |
| 75efa2ac | 29-Oct-2017 |
Fedor Alekseev <fgaleskeev@gmail.com> |
translation update |
| 5f43dcf4 | 28-Oct-2017 |
Lukas Rademacher <lukas@rademacher.ac> |
Support for configurable e-mail return path |
| 37816f76 | 28-Oct-2017 |
Lukas Rademacher <lukas@rademacher.ac> |
Local Drafts: show diff instead off full text
Show the diff between the local draft and the remote head version, instead of the fulltext of the local draft. |
| 8f66a2ec | 27-Oct-2017 |
Joerg <scooter22@gmx.de> |
translation update |
| 389e1856 | 26-Oct-2017 |
Michael Große <grosse@cosmocode.de> |
fix: prevent two selected options, b/c apparently 'String' == 0
There was a bug, where the options array ['Auto', 0, 1] would result in HTML option tags where both the 'Auto' and the 0 option we
fix: prevent two selected options, b/c apparently 'String' == 0
There was a bug, where the options array ['Auto', 0, 1] would result in HTML option tags where both the 'Auto' and the 0 option were selected.
show more ...
|
| 750a0b51 | 19-Oct-2017 |
Michael Große <grosse@cosmocode.de> |
fix: link the old version in MM when view it
This commit fixes a bug in the media manager when viewing an old version of a media file. While, in case of an image, the old image would be displayed in
fix: link the old version in MM when view it
This commit fixes a bug in the media manager when viewing an old version of a media file. While, in case of an image, the old image would be displayed in the third pane, the link above would still link to the current version.
show more ...
|
| 0cb706af | 13-Oct-2017 |
Дмитрий Лебедев <dmitriy.lebedev@bars-open.ru> |
Let `utf8_substr` use `utf8_strlen` instead of `strlen(utf8_decode($value))` |
| e4ae21e9 | 06-Oct-2017 |
Jon Theil Nielsen <jontheil@gmail.com> |
translation update |
| 63da9d57 | 04-Oct-2017 |
F. Mueller-Donath <j.felix@mueller-donath.de> |
translation update |
| bce0dd6a | 02-Oct-2017 |
Дмитрий Лебедев <dmitriy.lebedev@bars-open.ru> |
Make `utf8_strlen` use multiple fallback options |
| f7813a68 | 20-Sep-2017 |
Niklas Keller <me@kelunik.com> |
Remove insecure SSLv3 fallback, use TLS 1.2 if possible
STREAM_CRYPTO_METHOD_TLS_CLIENT is only TLS 1.0 except for PHP 5.6.0-5.6.6 and 7.2.0+. |
| 7ed31746 | 20-Sep-2017 |
Szymon Olewniczak <solewniczak@rid.pl> |
proper handling of "0" as a search query in media manager + test case for this |
| 23e31e76 | 20-Sep-2017 |
Szymon Olewniczak <solewniczak@rid.pl> |
implement globbing media search |
| 76472096 | 20-Sep-2017 |
Szymon Olewniczak <solewniczak@rid.pl> |
add globbing to media search |
| ff45434b | 20-Sep-2017 |
Niklas Keller <me@kelunik.com> |
Use constant type comparison for hashes, fixes #2132 |
| 2d3b082e | 11-Sep-2017 |
Michael Große <grosse@cosmocode.de> |
test: add tests for the section edit regex |
| fb90e132 | 10-Sep-2017 |
Roman <vsmemorial@gmail.com> |
translation update |
| 2a85c691 | 07-Sep-2017 |
Andreas Gohr <gohr@cosmocode.de> |
abbreviated ternary operator |
| c7d61a4e | 07-Sep-2017 |
Andreas Gohr <gohr@cosmocode.de> |
pass action name by reference. fixes #2117
This fixes plugins that expect that they can change the global $ACT instead of $event->data in the ACTION_ACT_PREPROCESS event.
This make the whole route
pass action name by reference. fixes #2117
This fixes plugins that expect that they can change the global $ACT instead of $event->data in the ACTION_ACT_PREPROCESS event.
This make the whole route a little bit uncleaner but would increase backwards compatibility.
I'm not sure how widespread the problem is and if adding this is a good idea.
show more ...
|
| 68667f4a | 06-Sep-2017 |
Michael Große <grosse@cosmocode.de> |
fix(ActionRouter): trigger ACTION_ACT_PREPROCESS for all actions
This should recreate the behaviour prior to #1933, where the event was triggered for all ACT values. Some plugins, like edittable, de
fix(ActionRouter): trigger ACTION_ACT_PREPROCESS for all actions
This should recreate the behaviour prior to #1933, where the event was triggered for all ACT values. Some plugins, like edittable, depend on the functionality.
show more ...
|
| 06917fce | 05-Sep-2017 |
Michael Große <grosse@cosmocode.de> |
fix: fix regex to return table secedit buttons
Since the hid is optional, it must also be optional in the regex. Also this commit introduced named capture groups to make it more obvious which part o
fix: fix regex to return table secedit buttons
Since the hid is optional, it must also be optional in the regex. Also this commit introduced named capture groups to make it more obvious which part of the regex captures what.
Also there is now an explicit hid generated for tables, to enable jumping to the correct section after finishing editing.
This was broken in 2571786c763e04c7abbf27c2245a5720878dc3f1 or #1966 respectively.
Known Issues: * since both title and hid are optional, a hid may be misinterpreted as a title if the title is not generated.
show more ...
|