| a3db0ab0 | 02-Apr-2019 |
Simon Lees <sflees@suse.de> |
Allow @CURNS@ to be capitalised in namespace templates
Personally I have some pages where I use @CURNS@ - @PAGE@ or @CURNS@ @PAGE@ as the title so this change saves me a bit of manual capitalisation |
| a31c1fc0 | 01-Apr-2019 |
Schplurtz le Déboulonné <schplurtz@laposte.net> |
translation update |
| 4809b236 | 31-Mar-2019 |
Maykon Oliveira <maykonoliveira850@gmail.com> |
translation update |
| 10ad58fb | 31-Mar-2019 |
Rut Kristin Aanestad <dark@met.no> |
translation update |
| b794fbf5 | 31-Mar-2019 |
Andy Green <41481515+demob-dev@users.noreply.github.com> |
add wpru interwiki prefix |
| 2402e44b | 30-Mar-2019 |
Andreas Gohr <andi@splitbrain.org> |
avoide codesniff warnings on deliberate switch fallthrough
codesniffer and Idea unfortunately can't agree on the comment format to mark a deliberate fallthrough in a switch statement. so we have to
avoide codesniff warnings on deliberate switch fallthrough
codesniffer and Idea unfortunately can't agree on the comment format to mark a deliberate fallthrough in a switch statement. so we have to use both :-/
show more ...
|
| 21b17bae | 23-Dec-2018 |
Rainbow Spike <Dr-Yukon@users.noreply.github.com> |
Support "local" subdir when listing the smiley directory |
| 5a8d6e48 | 26-Mar-2019 |
Michael Große <mic.grosse@googlemail.com> |
Rename HTTPClient namespace to HTTP
This should make namespace a bit more flexible in scope and allow us to move more functionality there later. |
| 0efa8d12 | 17-Mar-2019 |
Michael Große <mic.grosse@googlemail.com> |
Rename protected methods for PSR2 |
| 60b9af73 | 17-Mar-2019 |
Michael Große <mic.grosse@googlemail.com> |
Move deprecated HTTPClient classes to deprecated.php |
| 198564ab | 17-Mar-2019 |
Michael Große <mic.grosse@googlemail.com> |
Refactor HTTPClient into different files |
| 06a70133 | 14-Mar-2019 |
Phy <git@phy25.com> |
fix zero ID/NS issue with page_findnearest |
| 68baa033 | 14-Mar-2019 |
Phy <git@phy25.com> |
add ID/NS = '0' test against page_findnearest |
| 5e0da3ce | 14-Mar-2019 |
Phy <git@phy25.com> |
fix zero value issue with metadata indexer |
| f1ce98a5 | 14-Mar-2019 |
Phy <git@phy25.com> |
add key/value = '0' test to metadata indexer |
| 73f05217 | 14-Mar-2019 |
Phy <git@phy25.com> |
fix zero ID issue with linkwiz and search indexer |
| 40b5fb5b | 14-Mar-2019 |
Phy <git@phy25.com> |
fix zero ID issue with wl() and getID() |
| 4f9b023c | 14-Mar-2019 |
Phy <git@phy25.com> |
add $ID = '0' test against wl() and getID() |
| fe36a27b | 13-Mar-2019 |
Phy <git@phy25.com> |
cookie.js when setValue‘s value parameter is false delete entry |
| b9ab8e4f | 13-Mar-2019 |
Phy <git@phy25.com> |
install.php: respect useacl=0 choice, fixes #2576 |
| bded2f50 | 13-Mar-2019 |
Phy <git@phy25.com> |
cookie.js add def parameter to getValue() |
| 40be5e7a | 12-Mar-2019 |
Phy <git@phy25.com> |
cookie.js convert value type to string
This prevents different type returned for DokuCookie.getValue():
DokuCookie.setValue('foo', false); console.log(DokuCookie.getValue('foo')); // false location
cookie.js convert value type to string
This prevents different type returned for DokuCookie.getValue():
DokuCookie.setValue('foo', false); console.log(DokuCookie.getValue('foo')); // false location.reload(); // pseudo code console.log(DokuCookie.getValue('foo')); // 'false'
show more ...
|
| 1c3eca7d | 12-Mar-2019 |
Phy <git@phy25.com> |
set_doku_pref bugfix, closes #2721
- Read last entries (if duplicate) when get - Remove duplicate entries when set - Type-aware compare to decide append or modify - Remove $cookieVal empty check bef
set_doku_pref bugfix, closes #2721
- Read last entries (if duplicate) when get - Remove duplicate entries when set - Type-aware compare to decide append or modify - Remove $cookieVal empty check before setcookie, because there might be cases when we want to remove cookie
show more ...
|
| df69dada | 12-Mar-2019 |
Phy <git@phy25.com> |
more definition tests of doku_pref, for #1129 |
| 5833995a | 12-Mar-2019 |
Phy <git@phy25.com> |
add tests for get/set_doku_pref #2721 |