History log of /dokuwiki/ (Results 251 – 275 of 10498)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
186263b201-May-2024 Damien Regad <dregad@mantisbt.org>

Apply PSR-12 to media_nstree() function

de301a3501-May-2024 Damien Regad <dregad@mantisbt.org>

Fix display of media manager namespace hierarchy

When the media manager is called with ns parameter set to a value higher
than the last namespace defined in the wiki, the non-existing namespace
is n

Fix display of media manager namespace hierarchy

When the media manager is called with ns parameter set to a value higher
than the last namespace defined in the wiki, the non-existing namespace
is not added to the hierarchy.

This behavior is not consistent with what happens when the namespace's
name is lower. In this case, an entry is inserted in the tree at the
appropriate location.

Fixed by appending the temporary namespace at the end of the tree if it
was not inserted by the search loop.

Fixes #4276

show more ...

9988e85301-May-2024 Damien Regad <dregad@mantisbt.org>

Fix Undefined array key warning

E_WARNING: Undefined array key 3 in ./inc/media.php(1700)
E_WARNING: Trying to access array offset on value of type null in ./inc/media.php(1700)

This happens when t

Fix Undefined array key warning

E_WARNING: Undefined array key 3 in ./inc/media.php(1700)
E_WARNING: Trying to access array offset on value of type null in ./inc/media.php(1700)

This happens when the media manager is called with ns parameter set to
a value higher than the last namespace defined in the wiki.

Fixes #4276

show more ...

c51a3e9901-May-2024 Marek Lach <mareklachbc@tutanota.com>

translation update

e9b29fc501-May-2024 Zweihorn <4863737+Zweihorn@users.noreply.github.com>

Update extension.test.php

fix for failing test due to aligned url entry

ref https://github.com/dokuwiki/dokuwiki/issues/4270#issuecomment-2088208289

5a4a5e0501-May-2024 Damien Regad <dregad@mantisbt.org>

Fix PHP warning

E_WARNING: Trying to access array offset on value of type bool
./inc/Ui/Recent.php(165)

5c1c687301-May-2024 Damien Regad <dregad@mantisbt.org>

Bump $updateVersion to 56

34e675a830-Apr-2024 Zweihorn <4863737+Zweihorn@users.noreply.github.com>

align url for lib/plugin members

ref https://github.com/dokuwiki/dokuwiki/issues/4270

- align url of `plugin.info.txt` to standard prefix
- realign spacing as applicable

6b69197a30-Apr-2024 Zweihorn <4863737+Zweihorn@users.noreply.github.com>

align url

ref https://github.com/dokuwiki/dokuwiki/issues/4270

- align url to standard prefix
- realign spacing

31afae8a16-Apr-2024 Andreas Gohr <andi@splitbrain.org>

allow admin components to skip being shown in the admin menu

This is related to #4249. At least the farmer plugin provides a top
level admin component and several sub components which are loaded fro

allow admin components to skip being shown in the admin menu

This is related to #4249. At least the farmer plugin provides a top
level admin component and several sub components which are loaded from
the top component. For this use case it makes sense to be able to hide
components from the admin interface. Default remains to show all.

show more ...

821c061a16-Apr-2024 Andreas Gohr <andi@splitbrain.org>

move ldap debug statement

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.

7460b19815-Apr-2024 Andreas Gohr <andi@splitbrain.org>

escape environment data in admin interface

Data might contain special chars.

79f150bd15-Apr-2024 Andreas Gohr <andi@splitbrain.org>

Output more version data on the admin screen

Bug reports are often lacking crucial information about the environment
the wiki is run on and novice users often do not know how to obtain this
data.

T

Output more version data on the admin screen

Bug reports are often lacking crucial information about the environment
the wiki is run on and novice users often do not know how to obtain this
data.

This patch gathers some environmental information and outputs it next to
the DokuWiki version number on the admin screen.

Info included (if obtainable):

* PHP version
* Linux Distribution name and version
* Operating System and Version (refers to kernel version on linux)
* The PHP SAPI (modphp, cgi, fcgi)
* If running on kubernetes or docker

show more ...

606abce611-Apr-2024 Damien Regad <dregad@mantisbt.org>

Grammar: removed on, not removed in (date)

99a3dafa10-Apr-2024 Andreas Gohr <andi@splitbrain.org>

increase API version for new call, remove unused parameter

fb93418d10-Apr-2024 Andreas Gohr <andi@splitbrain.org>

remove obsolete TODO comment

c17acf8806-Apr-2024 mrgn <mo@pioka.pink>

translation update

25df03c805-Apr-2024 Philip Gabrielsen <philip@digno.no>

translation update

39a79d2602-Apr-2024 Zweihorn <4863737+Zweihorn@users.noreply.github.com>

Update deletedFiles.yml with the current ISO date.

Finally, the list of newly removed entries receives a header "# removed in $(date -I)" with the current ISO date.

3d8dbb1901-Apr-2024 Zweihorn <4863737+Zweihorn@users.noreply.github.com>

Update deletedFiles.yml with improved workflow

major improvements are:
- cleans this file from any re-introduced file
- adds deleted files to the top of the list
- takes extra care of full path n

Update deletedFiles.yml with improved workflow

major improvements are:
- cleans this file from any re-introduced file
- adds deleted files to the top of the list
- takes extra care of full path names (i.e. "^$E$" and "^$F$") to avoid cluttering grep with e.g., .txt and .txt_bak files
- uses data/deleted.files.tmp as lock file to produce a single trailing line only after adding any deleted files (thus the "cp" in the first "awk") and removes it (the "mv" in second "awk")

show more ...

3f8a89e527-Mar-2024 splitbrain <86426+splitbrain@users.noreply.github.com>

�� Rector and PHPCS fixes

f51673e527-Mar-2024 Andreas Gohr <andi@splitbrain.org>

fix listing of plugin components

Plugins may have one main component of a type or they might have
multiple of the same type in a subdirectory.

Sometimes they may have both. This is often the case f

fix listing of plugin components

Plugins may have one main component of a type or they might have
multiple of the same type in a subdirectory.

Sometimes they may have both. This is often the case for organically
grown plugin, commonly with helper classes where a helper.php exists
first only to be extended by helper/*.php files later.

This patch fixes the listing of plugin(components) by type in the plugin
controller.

It also adjusts bin/plugin.php to handle plugin CLI components.

show more ...

4c1ed9da27-Mar-2024 Andreas Gohr <andi@splitbrain.org>

usermanager: initialize auth sytem later

This prevents header errors when inspecting the CLI component in
plugin.php

ed46af8627-Mar-2024 Andreas Gohr <andi@splitbrain.org>

disable RemoveUnusedConstructorParamRector

At least until rectorphp/rector#8580 is fixed

885b0fb021-Mar-2024 Anushka Trivedi <21999998+opheliagame@users.noreply.github.com>

added API core.getMediaUsage

1...<<11121314151617181920>>...420