History log of /plugin/farmer/ (Results 26 – 50 of 193)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
425d733e20-Dec-2023 Andreas Gohr <andi@splitbrain.org>

use new test workflows

a2a8c90b20-Dec-2023 Andreas Gohr <andi@splitbrain.org>

use ufo operator for comparison. replaces #81

ec6e142705-Apr-2023 Andreas Gohr <andi@splitbrain.org>

Version upped

5b5c848605-Apr-2023 Andreas Gohr <andi@splitbrain.org>

fixed tests

2dcb6a7d17-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 ...

9d96619a14-Nov-2022 GYX <gyx138@qq.com>

translation update

55c2891a12-May-2022 Andreas Gohr <andi@splitbrain.org>

Version upped

917a67f012-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.

dbe6e95908-Jan-2021 Andreas Gohr <andi@splitbrain.org>

Version upped

668809d708-Jan-2021 Eivind <eivind.morland@gmail.com>

Added log directory

0ab85e3a24-Oct-2019 Bartek S <sadupl@gmail.com>

translation update

9c4112b108-Oct-2019 Bartek S <sadupl@gmail.com>

translation update

ad31cefc23-Apr-2019 Andreas Gohr <andi@splitbrain.org>

Version upped

bd5b28d023-Apr-2019 Andreas Gohr <gohr@cosmocode.de>

Added github auto reply

8249063f01-Apr-2019 Schplurtz le Déboulonné <schplurtz@laposte.net>

translation update

cec4c4cb20-Mar-2019 Andreas Gohr <andi@splitbrain.org>

Version upped

59ac8ad720-Mar-2019 Andreas Gohr <gohr@cosmocode.de>

fixed testing

b6738dd720-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 ...

3cee988516-Mar-2019 Anna Dabrowska <dabrowska@cosmocode.de>

Add user conf for style inheritance

bdb1e6e921-Feb-2019 Anna Dabrowska <dabrowska@cosmocode.de>

Correct template placeholder string

05ea762516-Feb-2019 Anna Dabrowska <dabrowska@cosmocode.de>

WIP style inheritance from farmer

depends on extended config cascade in dokuwiki core

04dc6bd521-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 ...

a0589de207-Jun-2018 Andreas Gohr <andi@splitbrain.org>

Version upped

3062cd8e07-Jun-2018 Andreas Gohr <gohr@cosmocode.de>

invalidate opcache when setting plugin state

see splitbrain/dokuwiki#2369

27d9544512-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 ...

12345678