History log of /dokuwiki/inc/Cache/CacheParser.php (Results 1 – 12 of 12)
Revision Date Author Comments
# d4f83172 31-Aug-2023 Andreas Gohr <andi@splitbrain.org>

code style: line breaks


# 615810c5 30-Aug-2023 Andreas Gohr <andi@splitbrain.org>

address issues mention in PR#4045


# 8c7c53b0 30-Aug-2023 Andreas Gohr <andi@splitbrain.org>

codestyle adjustments: class declaration braces


# a95427a5 29-Aug-2023 Andreas Gohr <andi@splitbrain.org>

Apply rector fixes to inc/Cache


# a8a3c3d9 26-Jan-2023 Andreas Gohr <andi@splitbrain.org>

update ParserCache dependency to reflect new file location


# 2b9be456 10-Nov-2022 Andreas Gohr <andi@splitbrain.org>

some more fixes for undefined vars

This makes more use of $INPUT to access $_SERVER and fixes a warning in
one of the search methods.


# c1ec88ce 01-May-2020 Andreas Gohr <andi@splitbrain.org>

remove calls to deprecated methods and classes


# b4b0b31b 22-Feb-2019 Michael Große <mic.grosse@googlemail.com>

Use deprecation helper

Instead of writing our own magic getters and setters for all variables
that used to be public, this adds a trait that does that in a generic
way.
This trait was copied from Me

Use deprecation helper

Instead of writing our own magic getters and setters for all variables
that used to be public, this adds a trait that does that in a generic
way.
This trait was copied from MediaWiki and adjusted to DokuWiki.
The original author seems to be @tgr Tisza Gergő

The downside of this trait is that the properties keep their
(potentially undesired) name. While that could be fixed within the
helper, that might add unnecessary complexity. The name can change when
support is dropped.

show more ...


# d2f1d7a1 14-Feb-2019 Michael Große <mic.grosse@googlemail.com>

Rename fields and add deprecated __get/__set

These fields might still be accessed from the outside, so in order to
not break backwards compatibility, this uses magic methods that emit
deprecation er

Rename fields and add deprecated __get/__set

These fields might still be accessed from the outside, so in order to
not break backwards compatibility, this uses magic methods that emit
deprecation errors.

show more ...


# 72c2bae8 04-Feb-2019 Michael Große <mic.grosse@googlemail.com>

Fix typo and rename method in comments too


# 42c00b45 02-Feb-2019 Michael Große <mic.grosse@googlemail.com>

Rename methods to conform with PSR 2

The method _useCache doesn't seem to be in use outside the core cache
classes[0], thus no deprecation placeholder was created.

[0]: https://codesearch.dokuwiki.

Rename methods to conform with PSR 2

The method _useCache doesn't seem to be in use outside the core cache
classes[0], thus no deprecation placeholder was created.

[0]: https://codesearch.dokuwiki.org/search?project=dokuwiki&project=plugin&project=template&q=&defs=&refs=_useCache&path=&hist=&type=php

show more ...


# 0db5771e 02-Feb-2019 Michael Große <mic.grosse@googlemail.com>

Refactor cache.php into different files