| 425d733e | 20-Dec-2023 |
Andreas Gohr <andi@splitbrain.org> |
use new test workflows |
| a2a8c90b | 20-Dec-2023 |
Andreas Gohr <andi@splitbrain.org> |
use ufo operator for comparison. replaces #81 |
| ec6e1427 | 05-Apr-2023 |
Andreas Gohr <andi@splitbrain.org> |
Version upped |
| 5b5c8486 | 05-Apr-2023 |
Andreas Gohr <andi@splitbrain.org> |
fixed tests |
| 2dcb6a7d | 17-Mar-2023 |
atisne <aurelien.tisne@csgroup.eu> |
Update config cascade to inherit protected settings from the farmer
Useful to freeze some global choices, like authentication method, security choices, ... It's still possible to overwrite protected
Update config cascade to inherit protected settings from the farmer
Useful to freeze some global choices, like authentication method, security choices, ... It's still possible to overwrite protected settings in the animal.
show more ...
|
| 9d96619a | 14-Nov-2022 |
GYX <gyx138@qq.com> |
translation update |
| 55c2891a | 12-May-2022 |
Andreas Gohr <andi@splitbrain.org> |
Version upped |
| 917a67f0 | 12-May-2022 |
Andreas Gohr <andi@splitbrain.org> |
unset animal from request
as discussed in https://github.com/splitbrain/dokuwiki/issues/3551 the animal should be removed from the list of GET parameters after it has been detected. |
| dbe6e959 | 08-Jan-2021 |
Andreas Gohr <andi@splitbrain.org> |
Version upped |
| 668809d7 | 08-Jan-2021 |
Eivind <eivind.morland@gmail.com> |
Added log directory |
| 0ab85e3a | 24-Oct-2019 |
Bartek S <sadupl@gmail.com> |
translation update |
| 9c4112b1 | 08-Oct-2019 |
Bartek S <sadupl@gmail.com> |
translation update |
| ad31cefc | 23-Apr-2019 |
Andreas Gohr <andi@splitbrain.org> |
Version upped |
| bd5b28d0 | 23-Apr-2019 |
Andreas Gohr <gohr@cosmocode.de> |
Added github auto reply |
| 8249063f | 01-Apr-2019 |
Schplurtz le Déboulonné <schplurtz@laposte.net> |
translation update |
| cec4c4cb | 20-Mar-2019 |
Andreas Gohr <andi@splitbrain.org> |
Version upped |
| 59ac8ad7 | 20-Mar-2019 |
Andreas Gohr <gohr@cosmocode.de> |
fixed testing |
| b6738dd7 | 20-Mar-2019 |
Andreas Gohr <gohr@cosmocode.de> |
Squashed commit of the following:
commit 1e4e163f00940799bf567b30ed63f533e46bbd00 Author: Andreas Gohr <gohr@cosmocode.de> Date: Wed Mar 20 15:58:43 2019 +0100
test with new beta version of t
Squashed commit of the following:
commit 1e4e163f00940799bf567b30ed63f533e46bbd00 Author: Andreas Gohr <gohr@cosmocode.de> Date: Wed Mar 20 15:58:43 2019 +0100
test with new beta version of travis script
show more ...
|
| 3cee9885 | 16-Mar-2019 |
Anna Dabrowska <dabrowska@cosmocode.de> |
Add user conf for style inheritance |
| bdb1e6e9 | 21-Feb-2019 |
Anna Dabrowska <dabrowska@cosmocode.de> |
Correct template placeholder string |
| 05ea7625 | 16-Feb-2019 |
Anna Dabrowska <dabrowska@cosmocode.de> |
WIP style inheritance from farmer
depends on extended config cascade in dokuwiki core |
| 04dc6bd5 | 21-Sep-2018 |
Szymon Olewniczak <solewniczak@rid.pl> |
quite unusual use case but maybe it'll be useful for you too.
I run the following script by php-cli:
``` <?php
//include base config $inc = realpath(__DIR__.'/../../..'); define('DOKU_INC', $inc.'
quite unusual use case but maybe it'll be useful for you too.
I run the following script by php-cli:
``` <?php
//include base config $inc = realpath(__DIR__.'/../../..'); define('DOKU_INC', $inc.'/');
// load and initialize the core system require_once(DOKU_INC.'inc/init.php');
//... ```
The script requires the dokuwiki DOKU_URL to be set properly but getBaseURL function in inc/init.php leads to bad results when $conf['baseurl'] isn't set:
``` function getBaseURL($abs=null){ global $conf; //if canonical url enabled always return absolute if(is_null($abs)) $abs = $conf['canonical'];
if(!empty($conf['basedir'])){ $dir = $conf['basedir']; }elseif(substr($_SERVER['SCRIPT_NAME'],-4) == '.php'){ $dir = dirname($_SERVER['SCRIPT_NAME']); // <- this is wrong when run on command line } ```
This commits fixes that behaviour for host based animal setup.
show more ...
|
| a0589de2 | 07-Jun-2018 |
Andreas Gohr <andi@splitbrain.org> |
Version upped |
| 3062cd8e | 07-Jun-2018 |
Andreas Gohr <gohr@cosmocode.de> |
invalidate opcache when setting plugin state
see splitbrain/dokuwiki#2369 |
| 27d95445 | 12-May-2018 |
Michael Große <mic.grosse@googlemail.com> |
feat: add support PWA manifest ✨
Greebo contains support for progressive web app manifests and a default manifest file at conf/manifest.json. This includes that manifest file for animals as well, en
feat: add support PWA manifest ✨
Greebo contains support for progressive web app manifests and a default manifest file at conf/manifest.json. This includes that manifest file for animals as well, ensuring that animals are rendered as standalone too.
show more ...
|