| Commit message (Collapse) | Author | Age |
... | |
| |
| |
| |
| |
| |
| | |
fix for failing test due to aligned url entry
ref https://github.com/dokuwiki/dokuwiki/issues/4270#issuecomment-2088208289
|
| |
| |
| |
| |
| |
| |
| | |
ref https://github.com/dokuwiki/dokuwiki/issues/4270
- align url of `plugin.info.txt` to standard prefix
- realign spacing as applicable
|
| |
| |
| |
| |
| |
| |
| | |
ref https://github.com/dokuwiki/dokuwiki/issues/4270
- align url to standard prefix
- realign spacing
|
|/ |
|
|
|
|
|
|
| |
See https://forum.dokuwiki.org/d/22179-dokuwiki-and-openldap-login-failing-with-no-srch/4
This was probably the result of a messy merge.
|
|\
| |
| | |
CSP nonce handling
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
This moves the little helper that will remove a "no-js" class from the
header element as soon as JavaScript is detected from the dokuwiki
template to our default inline script that also initializes the JSINFO
array.
This ensures that this inline script is run with a nonce (if available).
See #3788 for more infor
|
| | |
|
| | |
|
| |
| |
| |
| |
| | |
This prevents header errors when inspecting the CLI component in
plugin.php
|
| | |
|
| | |
|
|/ |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
This replaces the abandoned fork with my own fork at splitbrain/lesserphp
That fork has been cleaned up somewhat and the issues in #4088 should be
fixed.
|
| |
|
|\
| |
| | |
Translation update (ru)
|
| | |
|
|/ |
|
|\
| |
| | |
Translation update (pt)
|
| | |
|
|/ |
|
|
|
|
| |
The interface contract for the method getUserData does not allow an empty array to be returned.
|
| |
|
| |
|
|\
| |
| | |
Complete API Refactoring
|
| | |
|
| |
| |
| |
| |
| | |
RemoteApiTest::testCreateUserFailAccess failed on github but worked for
me. Seems to be a caching problem in auth_ismanager()
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Error codes are now extracted from API core and printed on the OpenAPI
overview page. This makes it easier to see what is in use.
Error messages have been cleaned up, some new codes have been assigned.
Some errors have been removed. Eg. it is fine to iterate a media
namespace you don't have read access to. The result will either be empty
or contain files from lower namespaces that you *do* have access to.
|
| |
| |
| |
| | |
added missing doc blocks
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
This only moves the calls. A proper refactoring of the user manager
would make sense:
1) introduce a helper component covering the basic operations including
proper error signalling using Exceptions
2) refactor admin and cli components to make use of 1)
3) make the operations in 1) available via the API
|
| | |
|
| | |
|
| |
| |
| |
| |
| | |
There is no need to implement getMethods anymore. All data comes from
reflection
|
| | |
|
| |
| |
| |
| |
| |
| | |
Failed because positional parameters are not really possible to model.
Named parameter could be introduces when our minimum requirement is
switched to PHP8+
|
| | |
|
|\ \
| | |
| | | |
correctly escape comments in user names. fixes #4099
|
| |/ |
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| | |
Our cache system ignores purge requests that have a referrer. The idea
is to avoid permanent recaching because a purge link was posted
somewhere.
However for the retry link in the extension manager we actually want the
link to work. So this patch supresses the referrer for that link.
|
|/
|
|
|
|
|
|
|
|
| |
When the plugin repository answers but returns non-data (as can happen
when the database isn't available, as we have learned yesterday), the
extension manager still tried to deserialize the data.
This changes all communication from php-serialized to JSON encoded data.
When JSON-decoding fails, the data is ignored and an error message is
shown. Failure data like this will not be cached.
|
| |
|
| |
|
|
|
|
|
|
| |
This adds a new configuration that allows to define how many logfiles
per facility should be kept. Old files are pruned daily via the task
runner.
|