@jenstornell, iirc your plugin didn’t play nice with the cache enabled? So I attempted to fix this by using an adapted scheduler plugin, a worker + cronjob. This plugin is a remaining artefact of that and I actually discourage to use it any longer. Actually: if no cache is used; then I’ld suggest to use your plugin.
I also have plans for Kirby 3 to make this better, but in a “generic” way - e.g. not only for scheduling pages.
In kirby\vendor\getkirby\toolkit\lib\url.php (Kirby 2) is defined:
/**
* Returns the correct separator for parameters
* depending on the operating system
*
* @return string
*/
public static function paramSeparator() {
return detect::windows() ? ';' : ':';
}
@bastianallgeier, what do you think about changing the result OS-independent to
return '_';
I think, nobody needs this difference between Windows and the other OS furthermore, if you choose a wise seperator, e.g. like my suggestion.
This would make it easy to build correct OS-independent code e.g. in snippets oder plugins, if the coder did not know that this function exists and needs to be used.
I have downloaded and installed a langkit 2.5.12 on PHP 7.2.6 and changed that function to
public static function paramSeparator() {
return '=';
}
All pages like /blog/page=2 and /de/blog/page=2
run without any problem and I don’t see the ugly ";"e.g. within /blog/page;2 on my Windows server any more
[Added:]
I took the langkit to test the languages too. Normaly I have a single language installation, only German
[:Added]
Just wondering if Kirby 3 will come with a new Starterkit/theme design?
Will the current Starterkit theme be compatible with Kirby 3?
Not a deal breaker, just curious.
We are still working on making Kirby 3 ready for the public release, so we don’t have a fixed release date yet. Like you, we can’t wait to get Kirby 3 out of the door and we are working towards that goal. Just as always: It’s done when it’s done.
are you planning to add inside editor for css/javascript files? a quick edit to assets would be nice core functionality IMHO.
like the one wordpress has on admin side.
I agree. In Kirby 3 it will be a lot easier to build Panel plugins, so something like that is definitely doable. But we are not planning to add this feature to the core.