| b00eb817 | 20-Apr-2016 |
Andreas Gohr <gohr@cosmocode.de> |
fixed wrong namespace length
as pointed out in https://github.com/splitbrain/dokuwiki/pull/1530/files/b89dfc20f1e13333ce49ce0d6a3a83cc9836094b#r60392099 |
| f449b8c9 | 20-Apr-2016 |
Anika Henke <anika@selfthinker.org> |
removed references to 'disabled' file in plugins.local.php |
| 30f3bd15 | 20-Apr-2016 |
Michael Grosse <grosse@cosmocode.de> |
Do not cache cleanID for $ascii == true
Caching must differentiate between a call with $ascii == true and a call without that parameter. Since calling that function with $ascii == true rare, we simp
Do not cache cleanID for $ascii == true
Caching must differentiate between a call with $ascii == true and a call without that parameter. Since calling that function with $ascii == true rare, we simply do not cache that case.
show more ...
|
| b8eba07c | 19-Apr-2016 |
Gerrit Uitslag <klapinklapin@gmail.com> |
Remove conf setting 'pluginmanager', since old plugin manager is not default anymore.
This `$conf['pluginmanager']` setting was especially for disabling of pluginmanager in farms. (see also commit c
Remove conf setting 'pluginmanager', since old plugin manager is not default anymore.
This `$conf['pluginmanager']` setting was especially for disabling of pluginmanager in farms. (see also commit c45608d )
show more ...
|
| 1e1b23a0 | 19-Apr-2016 |
Gerrit Uitslag <klapinklapin@gmail.com> |
Remove disabling by renaming to '<pluginfoldername>.disabled'
remaining folders with .disabled in the foldername are displayed in extension manager with rename warning. |
| dbed6ed0 | 19-Apr-2016 |
Andreas Gohr <andi@splitbrain.org> |
upgraded jQuery to 2.2.3
This drops support for Internet Explorer <9 which we no longer support. |
| 955d4588 | 19-Apr-2016 |
Andreas Gohr <andi@splitbrain.org> |
removed support for loading authplugins by old name #1535 |
| 5b17fbaa | 19-Apr-2016 |
Andreas Gohr <andi@splitbrain.org> |
removed deprecated support for render() in non-syntax plugins #1535 |
| 42cbd322 | 19-Apr-2016 |
Andreas Gohr <gohr@cosmocode.de> |
Add a protected file to the authplain config cascade
This adds the possibility to define file with protected users in the config cascade to be used with the plain auth mechanism.
This makes it poss
Add a protected file to the authplain config cascade
This adds the possibility to define file with protected users in the config cascade to be used with the plain auth mechanism.
This makes it possible for farms to have way to inherit Farmer users in animals.
show more ...
|
| aa13c9aa | 19-Apr-2016 |
Anika Henke <anika@selfthinker.org> |
removed deprecated changelog functions getRevisionInfo() and getRevisions() outside of class |
| 1a6c82de | 18-Apr-2016 |
Anika Henke <anika@selfthinker.org> |
removed deprecated cliopts |
| a1eba280 | 18-Apr-2016 |
Gerrit Uitslag <klapinklapin@gmail.com> |
Remove support for .disable in plugin folder
Close #1323 |
| b018ecbe | 18-Apr-2016 |
Michael Grosse <grosse@cosmocode.de> |
Fix caching issue in wikiFN
The function wikiFN effectively takes the $clean flag now into account when caching filepaths and when returning them from cache.
Fixes #1536 |
| 6834946f | 18-Apr-2016 |
Andreas Gohr <andi@splitbrain.org> |
correctly handle line breaks in textarea #1312
Textareas use CRLF, but internally we use LF. |
| bc3d2252 | 18-Apr-2016 |
Andreas Gohr <andi@splitbrain.org> |
fixed typo from nofollow to noopener |
| b89dfc20 | 18-Apr-2016 |
Andreas Gohr <andi@splitbrain.org> |
vendor prefix plugin namespace
As suggested by @micgro42 the plugin namespace should use a vendor prefix to avoid name clashes when DokuWiki is integrated with other software. |
| a2e03c82 | 18-Apr-2016 |
Andreas Gohr <andi@splitbrain.org> |
correctly check for pageid in tpl_include_page
@scrutinizer-notifier noticed that the $pageid might be false when page_findnearest looks for it. |
| d0e997c6 | 18-Apr-2016 |
Michael Große <mic.grosse@posteo.de> |
Make cleaning optional in mediaFN, keep as default
As in wikiFN cleaning the id should be optional, but still the default, in mediaFN as well. |
| dbd2b659 | 16-Apr-2016 |
David Roy <davidroyapp@gmail.com> |
translation update |
| 38c55182 | 15-Apr-2016 |
Andreas Gohr <andi@splitbrain.org> |
form prefill: honor empty values
when a form was submitted with an empty input, that data should still overwrite the preset value. |
| 8638ead5 | 15-Apr-2016 |
Andreas Gohr <andi@splitbrain.org> |
added dropdown type to new Form system #1312 |
| a94a808c | 15-Apr-2016 |
Andreas Gohr <andi@splitbrain.org> |
use LF instead of CRLF as discussed in #1101
Until we did some more research on compatibility we should stick with what works, even when the RFC says otherwise.
Should we decide to change line endi
use LF instead of CRLF as discussed in #1101
Until we did some more research on compatibility we should stick with what works, even when the RFC says otherwise.
Should we decide to change line endings to RFC conform CRLF, it should be done on the whole body, not the signature only.
show more ...
|
| 7c3e4a67 | 15-Apr-2016 |
Andreas Gohr <andi@splitbrain.org> |
renamed ignoreacl parameter to useacl |
| 914045f3 | 14-Apr-2016 |
Andreas Gohr <andi@splitbrain.org> |
add rel=noopener to links opening in new window
This is a security measurement supported in Chrome and Opera (and probably other browsers soonish)
See http://mathiasbynens.github.io/rel-noopener/ f
add rel=noopener to links opening in new window
This is a security measurement supported in Chrome and Opera (and probably other browsers soonish)
See http://mathiasbynens.github.io/rel-noopener/ for rationale
show more ...
|
| 600fb65e | 14-Apr-2016 |
Andreas Gohr <andi@splitbrain.org> |
autoload plugin namespace
This introduces an autoloader for namespaces starting with plugin\*
This way, plugins can easily have additional classes auto loaded without needing to register their own
autoload plugin namespace
This introduces an autoloader for namespaces starting with plugin\*
This way, plugins can easily have additional classes auto loaded without needing to register their own loader. A plugin\*\test\* namespace will automatically be mapped to the _test directory of the plugin.
show more ...
|