History log of /dokuwiki/ (Results 1076 – 1100 of 10498)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
826fda5c25-May-2021 Olivier Humbert <trebmuh@tuxfamily.org>

translation update

3c4b22e822-May-2021 alexdraconian <78018187+alexdraconian@users.noreply.github.com>

Linkwiz update

Linkwiz Searches title if useheading option is 1 or content

44398ba215-May-2021 Schplurtz le Déboulonné <schplurtz@laposte.net>

translation update

8d10861f11-May-2021 SergeyB <brutspark@gmail.com>

translation update

629a763d09-May-2021 Satoshi Sahara <sahara.satoshi@gmail.com>

remove MEDIA_DIFF event handling

MEDIA_DIFF event is not documented in devel:events_list and not used in any plugins.

6cf7b13906-May-2021 Andreas Gohr <andi@splitbrain.org>

auth_ismanager: fix group check on PHP8

casting and array access specifity seem to differ on PHP8, breaking the
fix in 1525c2281e6bc28f12ce8a59976e68e5a0e788fa

70491ab429-Apr-2021 Poorchop <Poorchop@users.noreply.github.com>

Avoid potential horizontal overflow in mobile view

Long page names cause overflow in this element, which makes the whole page scroll horizontally in mobile Safari. This rule prevents that from happe

Avoid potential horizontal overflow in mobile view

Long page names cause overflow in this element, which makes the whole page scroll horizontally in mobile Safari. This rule prevents that from happening by wrapping long text.

show more ...

6cb0567416-Apr-2021 Andreas Gohr <andi@splitbrain.org>

updated composer dependencies


.gitignore
composer.lock
vendor/composer/ClassLoader.php
vendor/composer/InstalledVersions.php
vendor/composer/autoload_classmap.php
vendor/composer/autoload_real.php
vendor/composer/autoload_static.php
vendor/composer/installed.json
vendor/composer/installed.php
vendor/composer/platform_check.php
vendor/marcusschwarz/lesserphp/HISTORY.md
vendor/marcusschwarz/lesserphp/LICENSE
vendor/marcusschwarz/lesserphp/README.md
vendor/marcusschwarz/lesserphp/composer.json
vendor/marcusschwarz/lesserphp/lessc.inc.php
vendor/openpsa/universalfeedcreator/LICENSE
vendor/openpsa/universalfeedcreator/lib/Creator/HTMLCreator.php
vendor/phpseclib/phpseclib/README.md
vendor/phpseclib/phpseclib/composer.json
vendor/phpseclib/phpseclib/phpseclib/Crypt/Base.php
vendor/phpseclib/phpseclib/phpseclib/Crypt/Hash.php
vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA.php
vendor/phpseclib/phpseclib/phpseclib/File/ANSI.php
vendor/phpseclib/phpseclib/phpseclib/File/ASN1.php
vendor/phpseclib/phpseclib/phpseclib/File/X509.php
vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger.php
vendor/phpseclib/phpseclib/phpseclib/Net/SFTP.php
vendor/phpseclib/phpseclib/phpseclib/Net/SFTP/Stream.php
vendor/phpseclib/phpseclib/phpseclib/Net/SSH1.php
vendor/phpseclib/phpseclib/phpseclib/Net/SSH2.php
vendor/splitbrain/php-archive/.gitignore
vendor/splitbrain/php-archive/README.md
vendor/splitbrain/php-archive/composer.json
vendor/splitbrain/php-archive/phpunit.xml
vendor/splitbrain/php-archive/src/Tar.php
vendor/splitbrain/php-cli/.gitignore
vendor/splitbrain/php-cli/README.md
vendor/splitbrain/php-cli/composer.json
vendor/splitbrain/php-cli/src/Options.php
vendor/splitbrain/slika/README.md
vendor/splitbrain/slika/src/Adapter.php
vendor/splitbrain/slika/src/GdAdapter.php
e374f7ef13-Apr-2021 Åsmund Stavdahl <asmund.stavdahl@ntnu.no>

index array with braces rather than unsupported curly braces

a5be6e8009-Apr-2021 Jeff <jfberroyer@noparking.net>

Fix to issue #3470

49ab0c9307-Apr-2021 Eren <bosshyapma@protonmail.com>

translation update

8c6be20805-Apr-2021 Andreas Gohr <andi@splitbrain.org>

replace deprecated function calls

Replaces the use of resolve_pageid() and resolve_mediaid() with the
proper class invocations

5c844bb305-Apr-2021 Andreas Gohr <andi@splitbrain.org>

fix exists check in deprecated resolve_mediaid

This was copy'n'pasted from resolve_pageid. To correctly handle the
date_at parameter a media_exists() function had to be introduced.

4756d8a301-Apr-2021 Gerrit Uitslag <klapinklapin@gmail.com>

add unit test for namespace exclusion in ft_pageLookup()

248d652b01-Apr-2021 Gerrit Uitslag <klapinklapin@gmail.com>

exclude ns in pagelook ups

Enables excluding namespaces in the quick search of the searchform
https://github.com/Klap-in/dokuwiki-plugin-searchform/issues/7

a332d28831-Mar-2021 Thien Hau <thienhau.9a14@gmail.com>

translation update

1525c22828-Mar-2021 Anna Dabrowska <dabrowska@cosmocode.de>

Simplify code for checking user groups

de1dc35b27-Mar-2021 Nicolas Friedli <nicolas@theologique.ch>

Obsolete attribute

According the W3 HTML validator: Warning: The charset attribute on the script element is obsolete.

8d7a31bc26-Mar-2021 Markus Glaser <glaser@hallowelt.com>

translation update

4f58273620-Mar-2021 Guillaume Turri <guillaume.turri@gmail.com>

Add tests on sectionID and fixes #3436

This commit fixes a bug on sectionID which could lead to having duplicated id.

Note that this commit changes the API a bit $check used to be a key-value array

Add tests on sectionID and fixes #3436

This commit fixes a bug on sectionID which could lead to having duplicated id.

Note that this commit changes the API a bit $check used to be a key-value array
(with key=the origin id, and value=the number of time this id has been generated)
and is now just an array of string. That's because the previous structure
couldn't work.

As far as Dokuwiki sources are concerned, this change should have no impact because:
- most call to sectionID are done with $check=false (and the behavior in this case
isn't changed
- only Doku_Renderer->_headerToLink passes an actual array to this method. But this
array is initialized empty, it is only filled and read by sectionID itself.
(this Doku_Renderer->headers array is protected but the classes which extends it
aren't referring this array).

It could still break usages of pluging that would call sectionID and rely on the
format of this array. But even if this commits kept $check as an array<string, bool>
(for instance setting the values to 1) the semantic wouldn't be the same.

To put it in a nutshell:
- this change of API has 0 impact on the core of Dokuwiki
- there is no evidence that it would impact other code
- there doesn't seem to be a clean way to avoid this change

This commit fixes #3436

show more ...

3078c45319-Mar-2021 Olivier Humbert <trebmuh@tuxfamily.org>

translation update

72a969d418-Mar-2021 Olivier Humbert <trebmuh@tuxfamily.org>

translation update

a1ef690318-Mar-2021 Nicolas Friedli <nicolas@theologique.ch>

translation update

056469f912-Mar-2021 Gustavo B. Schenkel <gustavo.schenkel@gmail.com>

translation update

834b0b2006-Mar-2021 Anika Henke <anika@selfthinker.org>

Add semantic section elements to dokuwiki template

This changes the divs for the main content, header, footer,
sidebar and page tools to their semantic equivalent
(main, header, footer, nav and nav

Add semantic section elements to dokuwiki template

This changes the divs for the main content, header, footer,
sidebar and page tools to their semantic equivalent
(main, header, footer, nav and nav again)
and adds ARIA labels where appropriate.
The media manager popup changes to have a main and a nav.

show more ...

1...<<41424344454647484950>>...420