History log of /dokuwiki/ (Results 1526 – 1550 of 10498)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
3f6872b117-May-2020 Myron Turner <turnermm02@shaw.ca>

Checks for PHP mail in install.php and warns if mail used after install (#3056)

* Checks for PHP mail in install.php and warns if mail used after install.

* fixed spacing in instal.php

* Recon

Checks for PHP mail in install.php and warns if mail used after install (#3056)

* Checks for PHP mail in install.php and warns if mail used after install.

* fixed spacing in instal.php

* Reconfigured warning message and code for PHP mail not existing or disabled. Removed the substitute mail function in inc/compatibility.php

* fixed some spacing errors in install.php

* Adds warning to error_log when call is made to unavailable PHP mail function and posts the warning to browser top if current user is admin.

* adds newline at end of compatibility.php and $lang global to Mailer.class.php

* Changes to handling of msg and `return false` as suggested by @phy25

* Removed tab from lilne 719

* removed additional tabs from Mailer.class.php

* Update inc/Mailer.class.php

removes unnecessary object

* Update inc/Mailer.class.php

changed msg styling for msg_managers_only warning for no PHP mail function

* Update inc/Mailer.class.php

* Update inc/Mailer.class.php

show more ...

0485973816-May-2020 Moisés Braga Ribeiro <moisesbr@gmail.com>

strnatcasecmp() is the correct fallback for $collator->compare()

Fix of functions _sort_filenames_without_collator() and compare().
Updated documentation.

ec35f6f716-May-2020 Schplurtz le Déboulonné <Schplurtz@laposte.net>

translation update

3d31297c15-May-2020 Moisés Braga Ribeiro <moisesbr@gmail.com>

Cleanup of function sort_keys()

Fixed behavior without collator: ksort() with flags SORT_NATURAL and SORT_FLAG_CASE.
Fix of getAdditionalNamespacesFromResults() function in "Ui/Search.php".

Screens

Cleanup of function sort_keys()

Fixed behavior without collator: ksort() with flags SORT_NATURAL and SORT_FLAG_CASE.
Fix of getAdditionalNamespacesFromResults() function in "Ui/Search.php".

Screens fixed:
- Search (namespace selector below search field)

show more ...

7d8012ca15-May-2020 Moisés Braga Ribeiro <moisesbr@gmail.com>

Cleanup of function sort_pagenames() [name changed]

Name changed from sort_pages() to sort_pagenames().
Fixed behavior without collator: sort() with flags SORT_NATURAL and SORT_FLAG_CASE.

Fix of ft

Cleanup of function sort_pagenames() [name changed]

Name changed from sort_pages() to sort_pagenames().
Fixed behavior without collator: sort() with flags SORT_NATURAL and SORT_FLAG_CASE.

Fix of ft_backlinks() and ft_mediause() function in "fulltext.php".

Functions that call ft_backlinks() and now have the expected results:
html.php:1085, html_backlinks(): display backlinks
Remote\ApiCore.php:456, listBackLinks(): Return a list of backlinks

Functions that call ft_mediause() and now have the expected results:
media.php:222, media_inuse(): Convenience function to check if a media file is still in use
media.php:1199, media_details(): Prints mediafile tags

Screens fixed:
- Backlinks
- List of pages that references a media file (View tab in the 3rd column of Media Manager)

Fix of callSuggestions() function in "Ajax.php".

Screens fixed:
- OpenSearch suggestions: /lib/exe/ajax.php?call=suggestions&q={query}

show more ...

15a1d63c15-May-2020 Moisés Braga Ribeiro <moisesbr@gmail.com>

Cleanup of function compare() [name changed]

Name changed from strcompare() to compare().

Fix of ft_pagesorter() function in "fulltext.php".
ft_pagesorter() is used by _ft_pageLookup(), which is us

Cleanup of function compare() [name changed]

Name changed from strcompare() to compare().

Fix of ft_pagesorter() function in "fulltext.php".
ft_pagesorter() is used by _ft_pageLookup(), which is used by ft_pageLookup().

Functions that call ft_pageLookup() and now have the expected results:
Action\Search.php:69, execute(): run the search
Ajax.php:50, callQsearch(): Searches for matching pagenames
Ajax.php:352, callLinkwiz(): List matching namespaces and pages for the link wizard

Screens fixed:
- Search (list of matching pagenames)
- Quick search (when typing)
- Internal link suggestion when editing a page (when nothing was typed)

Fix of menuSort() function in "Ui/Admin.php".

Screens fixed:
- Administration

Fix of sort_search_fulltext() function in "search.php".
This function does not seem to be used anywhere.

show more ...

741d531e15-May-2020 Moisés Braga Ribeiro <moisesbr@gmail.com>

Cleanup of function sort_filenames() [name changed]

Name changed from natural_sort() to sort_filenames().
Fixed behavior without collator: page name sorting reflected in filename array.
Fix of searc

Cleanup of function sort_filenames() [name changed]

Name changed from natural_sort() to sort_filenames().
Fixed behavior without collator: page name sorting reflected in filename array.
Fix of search() function in "search.php".

Functions that call search() and now have the expected results:
Ajax.php:188, callMedians(): Return subnamespaces for the Mediamanager
Ajax.php:322, callIndex(): Return sub index for index view
Ajax.php:392, callLinkwiz(): List matching namespaces and pages for the link wizard
html.php:908, html_index(): Display page index
media.php:713, media_filelist(): List all files in a given Media namespace
media.php:1528, media_searchlist(): List all files found by the search request
media.php:1966, media_nstree(): Build a tree outline of available media namespaces
Remote\ApiCore.php:349, readNamespace(): List all pages in the given namespace (and below)
Remote\ApiCore.php:432, listAttachments(): List all media files

Screens fixed:
- Index
- All media lists (including fullscreen)
- Internal link suggestion when editing a page

show more ...

ea0a567714-May-2020 Moisés Braga Ribeiro <moisesbr@gmail.com>

Cleanup of function _init_collator()

Debug messages added.

10396f7712-May-2020 Andreas Gohr <andi@splitbrain.org>

use serialized cache key for isAdmin/isManager cache

This avoids potential collisions.

8d43d15e11-May-2020 Andreas Gohr <andi@splitbrain.org>

fix tests for cached isAdmin/isManager

96348f2711-May-2020 Andreas Gohr <andi@splitbrain.org>

Cache results of isAdmin and isManager

isAdmin() is called within the ACL check (and probably various other
places in DokuWiki core). In a Wiki with lots of ACL checks (most
noticable with the index

Cache results of isAdmin and isManager

isAdmin() is called within the ACL check (and probably various other
places in DokuWiki core). In a Wiki with lots of ACL checks (most
noticable with the indexmenu) and users with a lot of groups (as typical
in corporate ActiveDirectory environments) this check can take a
significant portion of the time of a request time doing exactly the same
thing again and again.

This introduces a static request level cache for the result of the
isAdmin and isManager checks based on the requested user and groups.

A new parameter allows to skip the cache, though I don't think there
should be a good reason to skip the cache except for testing purposes.

show more ...

0f3b1a8911-May-2020 Moisés Braga Ribeiro <moisesbr@gmail.com>

Reimplementation of strcmp() [continued]

Fix of sort_search_fulltext() function in "search.php".
This function does not seem to be used anywhere.

49097b7b11-May-2020 Moisés Braga Ribeiro <moisesbr@gmail.com>

Reimplementation of strcasecmp()

Reimplementation of strcasecmp() using collator.
It uses the same implementation already made for strcmp().
Fix of menuSort() function in "Ui/Admin.php".

Screens fi

Reimplementation of strcasecmp()

Reimplementation of strcasecmp() using collator.
It uses the same implementation already made for strcmp().
Fix of menuSort() function in "Ui/Admin.php".

Screens fixed:
- Administration

show more ...

5f10907310-May-2020 Moisés Braga Ribeiro <moisesbr@gmail.com>

Reimplementation of ksort()

Reimplementation of ksort() using collator.
Fix of getAdditionalNamespacesFromResults() function in "Ui/Search.php".

Screens fixed:
- Search (namespace selector below se

Reimplementation of ksort()

Reimplementation of ksort() using collator.
Fix of getAdditionalNamespacesFromResults() function in "Ui/Search.php".

Screens fixed:
- Search (namespace selector below search field)

show more ...

49021f5406-May-2020 DokuWiki Translation Tool <admin@dokuwiki.org>

Translation update (zh) (#3071)

* translation update
* Update inc/lang/zh/lang.php
* Update lib/plugins/extension/lang/zh/lang.php
* Update lib/plugins/config/lang/zh/lang.php

Co-authored-by:

Translation update (zh) (#3071)

* translation update
* Update inc/lang/zh/lang.php
* Update lib/plugins/extension/lang/zh/lang.php
* Update lib/plugins/config/lang/zh/lang.php

Co-authored-by: Xin <chenxin1034@gmail.com>

show more ...

de37beb406-May-2020 Thien Hau <thienhausoftware@gmail.com>

translation update


inc/lang/vi/admin.txt
inc/lang/vi/adminplugins.txt
inc/lang/vi/conflict.txt
inc/lang/vi/denied.txt
inc/lang/vi/draft.txt
inc/lang/vi/edit.txt
inc/lang/vi/editrev.txt
inc/lang/vi/index.txt
inc/lang/vi/lang.php
inc/lang/vi/locked.txt
inc/lang/vi/login.txt
inc/lang/vi/mailtext.txt
inc/lang/vi/newpage.txt
inc/lang/vi/norev.txt
inc/lang/vi/onceexisted.txt
inc/lang/vi/password.txt
inc/lang/vi/preview.txt
inc/lang/vi/pwconfirm.txt
inc/lang/vi/read.txt
inc/lang/vi/recent.txt
inc/lang/vi/register.txt
inc/lang/vi/registermail.txt
inc/lang/vi/resendpwd.txt
inc/lang/vi/resetpwd.txt
inc/lang/vi/revisions.txt
inc/lang/vi/searchpage.txt
inc/lang/vi/showrev.txt
inc/lang/vi/stopwords.txt
inc/lang/vi/subscr_digest.txt
inc/lang/vi/subscr_form.txt
inc/lang/vi/subscr_list.txt
inc/lang/vi/subscr_single.txt
inc/lang/vi/updateprofile.txt
inc/lang/vi/uploadmail.txt
lib/plugins/acl/lang/vi/help.txt
lib/plugins/acl/lang/vi/lang.php
lib/plugins/authad/lang/vi/lang.php
lib/plugins/authad/lang/vi/settings.php
lib/plugins/authldap/lang/vi/lang.php
lib/plugins/authldap/lang/vi/settings.php
lib/plugins/authpdo/lang/vi/lang.php
lib/plugins/authpdo/lang/vi/settings.php
lib/plugins/authplain/lang/vi/lang.php
lib/plugins/config/lang/vi/intro.txt
lib/plugins/config/lang/vi/lang.php
lib/plugins/extension/lang/vi/intro_install.txt
lib/plugins/extension/lang/vi/intro_plugins.txt
lib/plugins/extension/lang/vi/intro_search.txt
lib/plugins/extension/lang/vi/intro_templates.txt
lib/plugins/extension/lang/vi/lang.php
lib/plugins/popularity/lang/vi/intro.txt
lib/plugins/popularity/lang/vi/lang.php
lib/plugins/popularity/lang/vi/submitted.txt
lib/plugins/revert/lang/vi/intro.txt
lib/plugins/revert/lang/vi/lang.php
lib/plugins/styling/lang/vi/intro.txt
lib/plugins/styling/lang/vi/lang.php
lib/plugins/usermanager/lang/vi/add.txt
lib/plugins/usermanager/lang/vi/delete.txt
lib/plugins/usermanager/lang/vi/edit.txt
lib/plugins/usermanager/lang/vi/import.txt
lib/plugins/usermanager/lang/vi/intro.txt
lib/plugins/usermanager/lang/vi/lang.php
lib/plugins/usermanager/lang/vi/list.txt
lib/tpl/dokuwiki/lang/vi/lang.php
lib/tpl/dokuwiki/lang/vi/style.txt
0e20480f04-May-2020 Phy <git@phy25.com>

Trigger event for msg()

Triggers INFOUTIL_MSG_SHOW.

00d9ae5703-May-2020 Moisés Braga Ribeiro <moisesbr@gmail.com>

Reimplementation of sort() [continued]

Fix of callSuggestions() function in "Ajax.php".

Screens fixed:
- OpenSearch suggestions: /lib/exe/ajax.php?call=suggestions&q={query}

6dbc271903-May-2020 Moisés Braga Ribeiro <moisesbr@gmail.com>

Reimplementation of sort()

Reimplementation of sort() using collator.
Fix of ft_backlinks() and ft_mediause() function in "fulltext.php".

Functions that call ft_backlinks() and now have the expecte

Reimplementation of sort()

Reimplementation of sort() using collator.
Fix of ft_backlinks() and ft_mediause() function in "fulltext.php".

Functions that call ft_backlinks() and now have the expected results:
html.php:1085, html_backlinks(): display backlinks
Remote\ApiCore.php:456, listBackLinks(): Return a list of backlinks

Functions that call ft_mediause() and now have the expected results:
media.php:222, media_inuse(): Convenience function to check if a media file is still in use
media.php:1199, media_details(): Prints mediafile tags

Screens fixed:
- Backlinks
- List of pages that references a media file (View tab in the 3rd column of Media Manager)

show more ...

45d5cd9d03-May-2020 Moisés Braga Ribeiro <moisesbr@gmail.com>

Reimplementation of strcmp()

Reimplementation of strcmp() using collator.
Fix of ft_pagesorter() function in "fulltext.php".
ft_pagesorter() is used by _ft_pageLookup(), which is used by ft_pageLook

Reimplementation of strcmp()

Reimplementation of strcmp() using collator.
Fix of ft_pagesorter() function in "fulltext.php".
ft_pagesorter() is used by _ft_pageLookup(), which is used by ft_pageLookup().

Functions that call ft_pageLookup() and now have the expected results:
Action\Search.php:69, execute(): run the search
Ajax.php:50, callQsearch(): Searches for matching pagenames
Ajax.php:352, callLinkwiz(): List matching namespaces and pages for the link wizard

Screens fixed:
- Search (list of Matching pagenames)
- Quick search (when typing)
- Internal link suggestion when editing a page (when nothing was typed)

show more ...

b170ac8529-Apr-2020 Moisés Braga Ribeiro <moisesbr@gmail.com>

Bootstrap and reimplementation of natsort()

New file "sort.php" for sort functions.
Inclusion of "sort.php" in the bootstrap ("load.php").
Reimplementation of natsort() using collator.
Fix of search

Bootstrap and reimplementation of natsort()

New file "sort.php" for sort functions.
Inclusion of "sort.php" in the bootstrap ("load.php").
Reimplementation of natsort() using collator.
Fix of search() function in "search.php".

Functions that call search() and now have the expected results:
Ajax.php:188, callMedians(): Return subnamespaces for the Mediamanager
Ajax.php:322, callIndex(): Return sub index for index view
Ajax.php:392, callLinkwiz(): List matching namespaces and pages for the link wizard
html.php:908, html_index(): Display page index
media.php:713, media_filelist(): List all files in a given Media namespace
media.php:1528, media_searchlist(): List all files found by the search request
media.php:1966, media_nstree(): Build a tree outline of available media namespaces
Remote\ApiCore.php:349, readNamespace(): List all pages in the given namespace (and below)
Remote\ApiCore.php:432, listAttachments(): List all media files

Screens fixed:
- Index
- All media lists (including fullscreen)
- Internal link suggestion when editing a page

show more ...

dce2182402-May-2020 Andreas Gohr <andi@splitbrain.org>

remove jQuery Migrate as outlined in #1546

ab0a890201-May-2020 Andreas Gohr <andi@splitbrain.org>

dependency upgrades

All composer dependencies have been updated


composer.json
composer.lock
vendor/composer/autoload_real.php
vendor/composer/installed.json
vendor/marcusschwarz/lesserphp/HISTORY.md
vendor/marcusschwarz/lesserphp/README.md
vendor/marcusschwarz/lesserphp/lessc.inc.php
vendor/phpseclib/phpseclib/BACKERS.md
vendor/phpseclib/phpseclib/README.md
vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA.php
vendor/phpseclib/phpseclib/phpseclib/Crypt/Random.php
vendor/phpseclib/phpseclib/phpseclib/File/ASN1.php
vendor/phpseclib/phpseclib/phpseclib/File/X509.php
vendor/phpseclib/phpseclib/phpseclib/Net/SFTP.php
vendor/phpseclib/phpseclib/phpseclib/Net/SSH1.php
vendor/phpseclib/phpseclib/phpseclib/Net/SSH2.php
vendor/phpseclib/phpseclib/phpseclib/System/SSH/Agent.php
vendor/phpseclib/phpseclib/phpseclib/System/SSH/Agent/Identity.php
vendor/simplepie/simplepie/CHANGELOG.md
vendor/simplepie/simplepie/LICENSE.txt
vendor/simplepie/simplepie/README.markdown
vendor/simplepie/simplepie/autoloader.php
vendor/simplepie/simplepie/composer.json
vendor/simplepie/simplepie/library/SimplePie.php
vendor/simplepie/simplepie/library/SimplePie/Author.php
vendor/simplepie/simplepie/library/SimplePie/Cache.php
vendor/simplepie/simplepie/library/SimplePie/Cache/Base.php
vendor/simplepie/simplepie/library/SimplePie/Cache/DB.php
vendor/simplepie/simplepie/library/SimplePie/Cache/File.php
vendor/simplepie/simplepie/library/SimplePie/Cache/Memcache.php
vendor/simplepie/simplepie/library/SimplePie/Cache/Memcached.php
vendor/simplepie/simplepie/library/SimplePie/Cache/MySQL.php
vendor/simplepie/simplepie/library/SimplePie/Caption.php
vendor/simplepie/simplepie/library/SimplePie/Category.php
vendor/simplepie/simplepie/library/SimplePie/Content/Type/Sniffer.php
vendor/simplepie/simplepie/library/SimplePie/Copyright.php
vendor/simplepie/simplepie/library/SimplePie/Core.php
vendor/simplepie/simplepie/library/SimplePie/Credit.php
vendor/simplepie/simplepie/library/SimplePie/Decode/HTML/Entities.php
vendor/simplepie/simplepie/library/SimplePie/Enclosure.php
vendor/simplepie/simplepie/library/SimplePie/Exception.php
vendor/simplepie/simplepie/library/SimplePie/File.php
vendor/simplepie/simplepie/library/SimplePie/HTTP/Parser.php
vendor/simplepie/simplepie/library/SimplePie/IRI.php
vendor/simplepie/simplepie/library/SimplePie/Item.php
vendor/simplepie/simplepie/library/SimplePie/Locator.php
vendor/simplepie/simplepie/library/SimplePie/Misc.php
vendor/simplepie/simplepie/library/SimplePie/Net/IPv6.php
vendor/simplepie/simplepie/library/SimplePie/Parse/Date.php
vendor/simplepie/simplepie/library/SimplePie/Parser.php
vendor/simplepie/simplepie/library/SimplePie/Rating.php
vendor/simplepie/simplepie/library/SimplePie/Registry.php
vendor/simplepie/simplepie/library/SimplePie/Restriction.php
vendor/simplepie/simplepie/library/SimplePie/Sanitize.php
vendor/simplepie/simplepie/library/SimplePie/Source.php
vendor/simplepie/simplepie/library/SimplePie/XML/Declaration/Parser.php
vendor/simplepie/simplepie/library/SimplePie/gzdecode.php
vendor/splitbrain/php-cli/README.md
vendor/splitbrain/php-cli/src/CLI.php
vendor/splitbrain/php-cli/src/Options.php
vendor/splitbrain/php-cli/src/TableFormatter.php
656246ff01-May-2020 Andreas Gohr <andi@splitbrain.org>

removed deprecated mail_send()

This has been replaced by the Mailer class some years ago.

c1ec88ce01-May-2020 Andreas Gohr <andi@splitbrain.org>

remove calls to deprecated methods and classes

1...<<61626364656667686970>>...420