History log of /dokuwiki/_test/tests/inc/ (Results 126 – 150 of 575)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
4756d8a301-Apr-2021 Gerrit Uitslag <klapinklapin@gmail.com>

add unit test for namespace exclusion in ft_pageLookup()

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 ...

9dcfcc1520-Feb-2021 Michael Große <mic.grosse@googlemail.com>

test: run test in separate process in case of error

If there is an error when executing the method under test, then this
test caused the downstream test \remoteapicore_test::test_getBacklinks
to une

test: run test in separate process in case of error

If there is an error when executing the method under test, then this
test caused the downstream test \remoteapicore_test::test_getBacklinks
to unexpectedly fail. Probably, because the global plugin controller
would not have been reset to its original value.

Running this test in its own process ensures that it won't affect any
other test, even if it messes with the global state and doesn't clean up.

show more ...

e855b7ed20-Feb-2021 Michael Große <mic.grosse@googlemail.com>

test: fix two tests on PHP8

On PHP8 trying to access a non-existing array key leads to a warning,
which we might treat as errors?

This incidentally also fixes another test downstream which broke be

test: fix two tests on PHP8

On PHP8 trying to access a non-existing array key leads to a warning,
which we might treat as errors?

This incidentally also fixes another test downstream which broke because
this rendering test changes the global plugin controller, but doesn't
clean it up that if the test errors.

-9000 is used as the position to make it obvious that this number is
meaningless for this test.

show more ...

5805f15a20-Feb-2021 Michael Große <mic.grosse@googlemail.com>

style: fix test code style

This makes all the basic phpcs style fixes and adds visibility to the
class methods.

6d3d9dba06-Feb-2021 Damien Regad <dregad@mantisbt.org>

Improve remote_test::test_notExistingCall()

There are actually 2 distinct test cases of invalid methods:

1. Not following the definition in Api class's PHPDoc block
- core methods begin by a 'do

Improve remote_test::test_notExistingCall()

There are actually 2 distinct test cases of invalid methods:

1. Not following the definition in Api class's PHPDoc block
- core methods begin by a 'dokuwiki' or 'wiki' followed by a . and
the method name itself.
- plugin methods are formed like 'plugin.<plugin name>.<method name>'
2. Method "type" does not begin with 'dokuwiki', 'wiki' or 'plugin'

A new check was added so both are now covered.

Test was modified to make use of PHPUnit expectException() method,
instead of relying on a try/catch block.

show more ...

868550d406-Feb-2021 Damien Regad <dregad@mantisbt.org>

Fix incorrect assertion in input_test::test_set()

$INPUT is set to 'test2', but the $_POST checks for 'test'.

056bf31f06-Feb-2021 Damien Regad <dregad@mantisbt.org>

Fix various errors in PHPUnit tests on PHP 8

57538c4b04-Feb-2021 Andreas Gohr <andi@splitbrain.org>

fix deprecated phpunit assertions

f1d70d1204-Feb-2021 Andreas Gohr <andi@splitbrain.org>

remove old DokuCLI class

This has been deprecated in 2017. Removing it instead of fixing tests
and PHP8 compatibility

3366d07104-Feb-2021 Andreas Gohr <andi@splitbrain.org>

fix PHP8 errors in tests

These were problems within the tests itself. There are many more
problems in the actual code.

1c33cec304-Feb-2021 Andreas Gohr <andi@splitbrain.org>

add needed type hints for phpunit8

This will break a lot of plugin tests, but can't be avoided


/dokuwiki/_test/core/DokuWikiTest.php
/dokuwiki/_test/fetchphpunit.php
Subscriptions/BulkSubscriptionsSenderTest.php
Subscriptions/SubscriberManagerTest.php
XmlRpcServer.test.php
auth_aclcheck.test.php
auth_aclcheck_caseinsensitive.test.php
auth_admincheck.test.php
auth_loadacl.test.php
auth_nameencode.test.php
cache_use.test.php
changelog_getRevisionsAround.test.php
changelog_getlastrevisionat.test.php
changelog_getrelativerevision.test.php
changelog_getrevisioninfo.test.php
changelog_getrevisions.test.php
common_basicinfo.test.php
common_clientip.test.php
common_mediainfo.test.php
common_pageinfo.test.php
httpclient_https.test.php
httpclient_https_proxy.test.php
indexer_indexing.test.php
indexer_rename.test.php
media_searchlist.test.php
pageutils_clean_id.test.php
pageutils_findnearest.test.php
parser/parser.inc.php
parser/parser_code.test.php
parser/parser_file.test.php
parser/parser_footnote.test.php
parser/parser_quotes.test.php
parser/renderer_metadata.test.php
parser/renderer_xhtml.test.php
remote.test.php
remoteapicore.test.php
remoteapicore_aclcheck.test.php
sort_without_collator.test.php
template_tpl_get_action.php
/dokuwiki/_test/tests/lib/exe/css_at_import_less.test.php
/dokuwiki/_test/tests/lib/exe/css_css_loadfile.test.php
/dokuwiki/_test/tests/lib/exe/fetch_imagetoken.test.php
/dokuwiki/_test/tests/lib/exe/fetch_statuscodes_external.test.php
/dokuwiki/_test/tests/test/plugins.test.php
/dokuwiki/inc/Extension/PluginController.php
/dokuwiki/inc/Form/InputElement.php
/dokuwiki/inc/JpegMeta.php
/dokuwiki/inc/Logger.php
/dokuwiki/inc/Search/Indexer.php
/dokuwiki/inc/Subscriptions/BulkSubscriptionSender.php
/dokuwiki/inc/Ui/Diff.php
/dokuwiki/inc/Ui/Revisions.php
/dokuwiki/inc/auth.php
/dokuwiki/inc/common.php
/dokuwiki/inc/init.php
/dokuwiki/inc/io.php
/dokuwiki/inc/lang/zh/lang.php
/dokuwiki/inc/parser/xhtml.php
/dokuwiki/inc/search.php
/dokuwiki/inc/template.php
/dokuwiki/install.php
/dokuwiki/lib/plugins/authldap/lang/sv/settings.php
/dokuwiki/lib/plugins/authpdo/_test/mysql.test.php
/dokuwiki/lib/plugins/authpdo/_test/sqlite.test.php
/dokuwiki/lib/plugins/authpdo/lang/sv/settings.php
/dokuwiki/lib/plugins/authplain/_test/escaping.test.php
/dokuwiki/lib/plugins/authplain/_test/userdata.test.php
/dokuwiki/lib/plugins/config/_test/Setting/AbstractSettingTest.php
/dokuwiki/lib/plugins/config/lang/cs/lang.php
/dokuwiki/lib/plugins/config/lang/zh/lang.php
/dokuwiki/lib/plugins/logviewer/lang/en/intro.txt
/dokuwiki/lib/plugins/testing/_test/dummy_plugin_integration_test.test.php
/dokuwiki/lib/plugins/usermanager/_test/csv_export.test.php
/dokuwiki/lib/plugins/usermanager/_test/csv_import.test.php
/dokuwiki/lib/tpl/dokuwiki/css/basic.less
/dokuwiki/lib/tpl/dokuwiki/css/content.less
/dokuwiki/lib/tpl/dokuwiki/css/design.less
8dbb068e12-Jan-2021 Andreas Gohr <andi@splitbrain.org>

test translations for correctness

This inspired by https://www.dokuwiki.org/teams:i18n:translation-check
by @schplurtz Instead of relying on an external script that only checks
after a translation w

test translations for correctness

This inspired by https://www.dokuwiki.org/teams:i18n:translation-check
by @schplurtz Instead of relying on an external script that only checks
after a translation was merged, this test can be run in out CI
environment and help us to avaoid merging faulty translations.

show more ...


/dokuwiki/.github/workflows/phpCS.yml
/dokuwiki/.github/workflows/testLinux.yml
/dokuwiki/.github/workflows/testWindows.yml
lang.php
/dokuwiki/composer.json
/dokuwiki/composer.lock
/dokuwiki/data/deleted.files
/dokuwiki/inc/Action/Admin.php
/dokuwiki/inc/lang/de-informal/lang.php
/dokuwiki/inc/lang/es/lang.php
/dokuwiki/inc/lang/hy/admin.txt
/dokuwiki/inc/lang/hy/adminplugins.txt
/dokuwiki/inc/lang/hy/conflict.txt
/dokuwiki/inc/lang/hy/denied.txt
/dokuwiki/inc/lang/hy/diff.txt
/dokuwiki/inc/lang/hy/draft.txt
/dokuwiki/inc/lang/hy/edit.txt
/dokuwiki/inc/lang/hy/editrev.txt
/dokuwiki/inc/lang/hy/index.txt
/dokuwiki/inc/lang/hy/lang.php
/dokuwiki/inc/lang/sv/lang.php
/dokuwiki/inc/lang/sv/onceexisted.txt
/dokuwiki/inc/lang/vi/lang.php
/dokuwiki/inc/lang/vi/newpage.txt
/dokuwiki/install.php
/dokuwiki/lib/plugins/authad/lang/sv/lang.php
/dokuwiki/lib/plugins/authad/lang/sv/settings.php
/dokuwiki/lib/plugins/authldap/lang/sv/settings.php
/dokuwiki/lib/plugins/authpdo/lang/sv/lang.php
/dokuwiki/lib/plugins/authpdo/lang/sv/settings.php
/dokuwiki/lib/plugins/authplain/lang/sv/lang.php
/dokuwiki/lib/plugins/config/core/Writer.php
/dokuwiki/lib/plugins/config/lang/es/lang.php
/dokuwiki/lib/plugins/config/lang/fr/lang.php
/dokuwiki/lib/plugins/config/lang/sv/lang.php
/dokuwiki/lib/plugins/config/lang/vi/lang.php
/dokuwiki/lib/plugins/extension/helper/repository.php
/dokuwiki/lib/plugins/extension/lang/sv/lang.php
/dokuwiki/lib/plugins/extension/lang/vi/lang.php
/dokuwiki/lib/plugins/popularity/helper.php
/dokuwiki/lib/plugins/revert/lang/sv/lang.php
/dokuwiki/lib/plugins/styling/lang/sv/lang.php
/dokuwiki/lib/plugins/usermanager/lang/sv/lang.php
/dokuwiki/lib/tpl/dokuwiki/lang/sv/lang.php
/dokuwiki/vendor/composer/autoload_files.php
/dokuwiki/vendor/composer/autoload_static.php
/dokuwiki/vendor/composer/installed.json
1740936206-Jan-2021 Andreas Gohr <andi@splitbrain.org>

simplified the media_searchlist tests


media_searchlist.test.php
/dokuwiki/inc/Action/Admin.php
/dokuwiki/inc/Media/MediaFile.php
/dokuwiki/inc/Ui/Media/Display.php
/dokuwiki/inc/Ui/Media/DisplayRow.php
/dokuwiki/inc/Ui/Media/DisplayTile.php
/dokuwiki/inc/lang/hy/admin.txt
/dokuwiki/inc/lang/hy/adminplugins.txt
/dokuwiki/inc/lang/hy/conflict.txt
/dokuwiki/inc/lang/hy/denied.txt
/dokuwiki/inc/lang/hy/diff.txt
/dokuwiki/inc/lang/hy/draft.txt
/dokuwiki/inc/lang/hy/edit.txt
/dokuwiki/inc/lang/hy/editrev.txt
/dokuwiki/inc/lang/hy/index.txt
/dokuwiki/inc/lang/hy/lang.php
/dokuwiki/inc/lang/vi/lang.php
/dokuwiki/inc/lang/vi/newpage.txt
/dokuwiki/inc/media.php
/dokuwiki/inc/search.php
/dokuwiki/lib/images/fileicons/svg/7z.svg
/dokuwiki/lib/images/fileicons/svg/asm.svg
/dokuwiki/lib/images/fileicons/svg/bash.svg
/dokuwiki/lib/images/fileicons/svg/bz2.svg
/dokuwiki/lib/images/fileicons/svg/c.svg
/dokuwiki/lib/images/fileicons/svg/conf.svg
/dokuwiki/lib/images/fileicons/svg/cpp.svg
/dokuwiki/lib/images/fileicons/svg/cs.svg
/dokuwiki/lib/images/fileicons/svg/csh.svg
/dokuwiki/lib/images/fileicons/svg/css.svg
/dokuwiki/lib/images/fileicons/svg/csv.svg
/dokuwiki/lib/images/fileicons/svg/deb.svg
/dokuwiki/lib/images/fileicons/svg/doc.svg
/dokuwiki/lib/images/fileicons/svg/docx.svg
/dokuwiki/lib/images/fileicons/svg/file.svg
/dokuwiki/lib/images/fileicons/svg/gif.svg
/dokuwiki/lib/images/fileicons/svg/gz.svg
/dokuwiki/lib/images/fileicons/svg/h.svg
/dokuwiki/lib/images/fileicons/svg/htm.svg
/dokuwiki/lib/images/fileicons/svg/html.svg
/dokuwiki/lib/images/fileicons/svg/ico.svg
/dokuwiki/lib/images/fileicons/svg/java.svg
/dokuwiki/lib/images/fileicons/svg/jpeg.svg
/dokuwiki/lib/images/fileicons/svg/jpg.svg
/dokuwiki/lib/images/fileicons/svg/js.svg
/dokuwiki/lib/images/fileicons/svg/json.svg
/dokuwiki/lib/images/fileicons/svg/lua.svg
/dokuwiki/lib/images/fileicons/svg/mp3.svg
/dokuwiki/lib/images/fileicons/svg/mp4.svg
/dokuwiki/lib/images/fileicons/svg/ods.svg
/dokuwiki/lib/images/fileicons/svg/odt.svg
/dokuwiki/lib/images/fileicons/svg/ogg.svg
/dokuwiki/lib/images/fileicons/svg/ogv.svg
/dokuwiki/lib/images/fileicons/svg/pdf.svg
/dokuwiki/lib/images/fileicons/svg/php.svg
/dokuwiki/lib/images/fileicons/svg/pl.svg
/dokuwiki/lib/images/fileicons/svg/png.svg
/dokuwiki/lib/images/fileicons/svg/ppt.svg
/dokuwiki/lib/images/fileicons/svg/pptx.svg
/dokuwiki/lib/images/fileicons/svg/ps.svg
/dokuwiki/lib/images/fileicons/svg/py.svg
/dokuwiki/lib/images/fileicons/svg/rar.svg
/dokuwiki/lib/images/fileicons/svg/rb.svg
/dokuwiki/lib/images/fileicons/svg/rpm.svg
/dokuwiki/lib/images/fileicons/svg/rtf.svg
/dokuwiki/lib/images/fileicons/svg/sh.svg
/dokuwiki/lib/images/fileicons/svg/sql.svg
/dokuwiki/lib/images/fileicons/svg/svg.svg
/dokuwiki/lib/images/fileicons/svg/swf.svg
/dokuwiki/lib/images/fileicons/svg/tar.svg
/dokuwiki/lib/images/fileicons/svg/tgz.svg
/dokuwiki/lib/images/fileicons/svg/txt.svg
/dokuwiki/lib/images/fileicons/svg/wav.svg
/dokuwiki/lib/images/fileicons/svg/webm.svg
/dokuwiki/lib/images/fileicons/svg/xls.svg
/dokuwiki/lib/images/fileicons/svg/xlsx.svg
/dokuwiki/lib/images/fileicons/svg/xml.svg
/dokuwiki/lib/images/fileicons/svg/zip.svg
/dokuwiki/lib/plugins/config/core/Writer.php
/dokuwiki/lib/plugins/config/lang/fr/lang.php
/dokuwiki/lib/plugins/config/lang/vi/lang.php
/dokuwiki/lib/plugins/extension/helper/repository.php
/dokuwiki/lib/plugins/extension/lang/vi/lang.php
fe2e97f603-Dec-2020 Andreas Gohr <andi@splitbrain.org>

PHP 8: rename match() to apply() in Lexer #3298


/dokuwiki/.github/workflows/phpCS.yml
/dokuwiki/.github/workflows/testLinux.yml
/dokuwiki/.github/workflows/testWindows.yml
/dokuwiki/.gitignore
/dokuwiki/_test/data/log/_dummy
/dokuwiki/_test/fetchphpunit.php
/dokuwiki/_test/mysql.conf.php.dist
/dokuwiki/_test/pgsql.conf.php.dist
parser/lexer.test.php
/dokuwiki/composer.json
/dokuwiki/composer.lock
/dokuwiki/conf/dokuwiki.php
/dokuwiki/conf/mime.conf
/dokuwiki/conf/smileys.conf
/dokuwiki/data/log/_dummy
/dokuwiki/data/pages/wiki/syntax.txt
/dokuwiki/inc/Action/AbstractUserAction.php
/dokuwiki/inc/Action/Backlink.php
/dokuwiki/inc/Action/Conflict.php
/dokuwiki/inc/Action/Denied.php
/dokuwiki/inc/Action/Diff.php
/dokuwiki/inc/Action/Draft.php
/dokuwiki/inc/Action/Edit.php
/dokuwiki/inc/Action/Index.php
/dokuwiki/inc/Action/Locked.php
/dokuwiki/inc/Action/Login.php
/dokuwiki/inc/Action/Preview.php
/dokuwiki/inc/Action/Profile.php
/dokuwiki/inc/Action/Recent.php
/dokuwiki/inc/Action/Register.php
/dokuwiki/inc/Action/Resendpwd.php
/dokuwiki/inc/Action/Revert.php
/dokuwiki/inc/Action/Revisions.php
/dokuwiki/inc/Action/Show.php
/dokuwiki/inc/Action/Source.php
/dokuwiki/inc/Action/Subscribe.php
/dokuwiki/inc/Ajax.php
/dokuwiki/inc/Debug/DebugHelper.php
/dokuwiki/inc/ErrorHandler.php
/dokuwiki/inc/Exception/FatalException.php
/dokuwiki/inc/Extension/Event.php
/dokuwiki/inc/Extension/PluginController.php
/dokuwiki/inc/Form/ButtonElement.php
/dokuwiki/inc/Form/CheckableElement.php
/dokuwiki/inc/Form/DropdownElement.php
/dokuwiki/inc/Form/Element.php
/dokuwiki/inc/Form/FieldsetCloseElement.php
/dokuwiki/inc/Form/FieldsetOpenElement.php
/dokuwiki/inc/Form/Form.php
/dokuwiki/inc/Form/HTMLElement.php
/dokuwiki/inc/Form/InputElement.php
/dokuwiki/inc/Form/LabelElement.php
/dokuwiki/inc/Form/LegacyForm.php
/dokuwiki/inc/Form/OptGroup.php
/dokuwiki/inc/Form/TagCloseElement.php
/dokuwiki/inc/Form/TagElement.php
/dokuwiki/inc/Form/TagOpenElement.php
/dokuwiki/inc/Form/TextareaElement.php
/dokuwiki/inc/Form/ValueElement.php
/dokuwiki/inc/HTTP/Headers.php
/dokuwiki/inc/Logger.php
/dokuwiki/inc/Menu/Item/Revert.php
/dokuwiki/inc/Parsing/Lexer/ParallelRegex.php
/dokuwiki/inc/Sitemap/Mapper.php
/dokuwiki/inc/Ui/Admin.php
/dokuwiki/inc/Ui/Backlinks.php
/dokuwiki/inc/Ui/Diff.php
/dokuwiki/inc/Ui/Editor.php
/dokuwiki/inc/Ui/Index.php
/dokuwiki/inc/Ui/Login.php
/dokuwiki/inc/Ui/PageConflict.php
/dokuwiki/inc/Ui/PageDraft.php
/dokuwiki/inc/Ui/PageView.php
/dokuwiki/inc/Ui/Recent.php
/dokuwiki/inc/Ui/Revisions.php
/dokuwiki/inc/Ui/Search.php
/dokuwiki/inc/Ui/Subscribe.php
/dokuwiki/inc/Ui/Ui.php
/dokuwiki/inc/Ui/UserProfile.php
/dokuwiki/inc/Ui/UserRegister.php
/dokuwiki/inc/Ui/UserResendPwd.php
/dokuwiki/inc/auth.php
/dokuwiki/inc/fetch.functions.php
/dokuwiki/inc/form.php
/dokuwiki/inc/html.php
/dokuwiki/inc/infoutils.php
/dokuwiki/inc/init.php
/dokuwiki/inc/lang/ckb/lang.php
/dokuwiki/inc/lang/ckb/mailtext.txt
/dokuwiki/inc/lang/ckb/password.txt
/dokuwiki/inc/lang/ckb/registermail.txt
/dokuwiki/inc/lang/ckb/searchpage.txt
/dokuwiki/inc/lang/ckb/uploadmail.txt
/dokuwiki/inc/lang/cs/lang.php
/dokuwiki/inc/lang/nan/lang.php
/dokuwiki/inc/lang/pt-br/lang.php
/dokuwiki/inc/lang/vi/lang.php
/dokuwiki/inc/load.php
/dokuwiki/inc/media.php
/dokuwiki/inc/parser/xhtml.php
/dokuwiki/inc/template.php
/dokuwiki/lib/exe/ajax.php
/dokuwiki/lib/exe/fetch.php
/dokuwiki/lib/images/smileys/README
/dokuwiki/lib/images/smileys/biggrin.svg
/dokuwiki/lib/images/smileys/confused.svg
/dokuwiki/lib/images/smileys/cool.svg
/dokuwiki/lib/images/smileys/deleteme.svg
/dokuwiki/lib/images/smileys/doubt.svg
/dokuwiki/lib/images/smileys/doubt2.svg
/dokuwiki/lib/images/smileys/eek.svg
/dokuwiki/lib/images/smileys/exclaim.svg
/dokuwiki/lib/images/smileys/facepalm.svg
/dokuwiki/lib/images/smileys/fixme.svg
/dokuwiki/lib/images/smileys/fun.svg
/dokuwiki/lib/images/smileys/index.php
/dokuwiki/lib/images/smileys/lol.svg
/dokuwiki/lib/images/smileys/neutral.svg
/dokuwiki/lib/images/smileys/question.svg
/dokuwiki/lib/images/smileys/razz.svg
/dokuwiki/lib/images/smileys/sad.svg
/dokuwiki/lib/images/smileys/silenced.svg
/dokuwiki/lib/images/smileys/smile.svg
/dokuwiki/lib/images/smileys/smile2.svg
/dokuwiki/lib/images/smileys/surprised.svg
/dokuwiki/lib/images/smileys/wink.svg
/dokuwiki/lib/plugins/acl/lang/cs/help.txt
/dokuwiki/lib/plugins/authad/action.php
/dokuwiki/lib/plugins/authad/auth.php
/dokuwiki/lib/plugins/authad/lang/ckb/lang.php
/dokuwiki/lib/plugins/config/core/ConfigParser.php
/dokuwiki/lib/plugins/config/lang/ckb/lang.php
/dokuwiki/lib/plugins/config/lang/cs/lang.php
/dokuwiki/lib/plugins/config/lang/en/lang.php
/dokuwiki/lib/plugins/config/lang/pt-br/lang.php
/dokuwiki/lib/plugins/config/settings/config.metadata.php
/dokuwiki/lib/plugins/extension/helper/extension.php
/dokuwiki/lib/plugins/extension/lang/zh-tw/lang.php
/dokuwiki/lib/plugins/logviewer/admin.php
/dokuwiki/lib/plugins/logviewer/admin.svg
/dokuwiki/lib/plugins/logviewer/lang/en/intro.txt
/dokuwiki/lib/plugins/logviewer/lang/en/lang.php
/dokuwiki/lib/plugins/logviewer/lang/en/nolog.txt
/dokuwiki/lib/plugins/logviewer/plugin.info.txt
/dokuwiki/lib/plugins/logviewer/script.js
/dokuwiki/lib/plugins/logviewer/style.less
/dokuwiki/lib/plugins/revert/lang/ckb/lang.php
/dokuwiki/lib/plugins/revert/lang/cs/lang.php
/dokuwiki/lib/plugins/styling/admin.php
/dokuwiki/lib/plugins/usermanager/cli.php
/dokuwiki/lib/plugins/usermanager/lang/vi/lang.php
/dokuwiki/lib/scripts/behaviour.js
/dokuwiki/lib/scripts/edit.js
/dokuwiki/lib/styles/all.css
/dokuwiki/lib/tpl/dokuwiki/css/_diff.css
/dokuwiki/lib/tpl/dokuwiki/lang/zh-tw/style.txt
/dokuwiki/vendor/composer/ClassLoader.php
/dokuwiki/vendor/composer/autoload_psr4.php
/dokuwiki/vendor/composer/autoload_static.php
/dokuwiki/vendor/composer/installed.json
/dokuwiki/vendor/marcusschwarz/lesserphp/lessc.inc.php
/dokuwiki/vendor/splitbrain/php-archive/composer.json
/dokuwiki/vendor/splitbrain/php-archive/src/FileInfo.php
/dokuwiki/vendor/splitbrain/php-archive/src/Tar.php
/dokuwiki/vendor/splitbrain/php-archive/src/Zip.php
/dokuwiki/vendor/splitbrain/slika/.gitattributes
/dokuwiki/vendor/splitbrain/slika/.gitignore
/dokuwiki/vendor/splitbrain/slika/LICENSE
/dokuwiki/vendor/splitbrain/slika/README.md
/dokuwiki/vendor/splitbrain/slika/composer.json
/dokuwiki/vendor/splitbrain/slika/composer.lock
/dokuwiki/vendor/splitbrain/slika/src/Adapter.php
/dokuwiki/vendor/splitbrain/slika/src/Exception.php
/dokuwiki/vendor/splitbrain/slika/src/GdAdapter.php
/dokuwiki/vendor/splitbrain/slika/src/ImageMagickAdapter.php
/dokuwiki/vendor/splitbrain/slika/src/Slika.php
66b108d628-Oct-2020 Anna Dabrowska <dabrowska@cosmocode.de>

Fix groups match in auth_ismanager and auth_isadmin

Even if a user was passed to the check but no groups, current user's groups were used for the match


auth_admincheck.test.php
/dokuwiki/composer.lock
/dokuwiki/inc/Action/Backlink.php
/dokuwiki/inc/Action/Conflict.php
/dokuwiki/inc/Action/Denied.php
/dokuwiki/inc/Action/Diff.php
/dokuwiki/inc/Action/Draft.php
/dokuwiki/inc/Action/Edit.php
/dokuwiki/inc/Action/Index.php
/dokuwiki/inc/Action/Locked.php
/dokuwiki/inc/Action/Login.php
/dokuwiki/inc/Action/Preview.php
/dokuwiki/inc/Action/Profile.php
/dokuwiki/inc/Action/Recent.php
/dokuwiki/inc/Action/Register.php
/dokuwiki/inc/Action/Resendpwd.php
/dokuwiki/inc/Action/Revisions.php
/dokuwiki/inc/Action/Show.php
/dokuwiki/inc/Action/Source.php
/dokuwiki/inc/Action/Subscribe.php
/dokuwiki/inc/Ajax.php
/dokuwiki/inc/Form/ButtonElement.php
/dokuwiki/inc/Form/CheckableElement.php
/dokuwiki/inc/Form/DropdownElement.php
/dokuwiki/inc/Form/Element.php
/dokuwiki/inc/Form/FieldsetCloseElement.php
/dokuwiki/inc/Form/FieldsetOpenElement.php
/dokuwiki/inc/Form/Form.php
/dokuwiki/inc/Form/HTMLElement.php
/dokuwiki/inc/Form/InputElement.php
/dokuwiki/inc/Form/LabelElement.php
/dokuwiki/inc/Form/LegacyForm.php
/dokuwiki/inc/Form/OptGroup.php
/dokuwiki/inc/Form/TagCloseElement.php
/dokuwiki/inc/Form/TagElement.php
/dokuwiki/inc/Form/TagOpenElement.php
/dokuwiki/inc/Form/TextareaElement.php
/dokuwiki/inc/Form/ValueElement.php
/dokuwiki/inc/Ui/Backlinks.php
/dokuwiki/inc/Ui/Diff.php
/dokuwiki/inc/Ui/Editor.php
/dokuwiki/inc/Ui/Index.php
/dokuwiki/inc/Ui/Login.php
/dokuwiki/inc/Ui/PageConflict.php
/dokuwiki/inc/Ui/PageDraft.php
/dokuwiki/inc/Ui/PageView.php
/dokuwiki/inc/Ui/Recent.php
/dokuwiki/inc/Ui/Revisions.php
/dokuwiki/inc/Ui/Search.php
/dokuwiki/inc/Ui/Subscribe.php
/dokuwiki/inc/Ui/Ui.php
/dokuwiki/inc/Ui/UserProfile.php
/dokuwiki/inc/Ui/UserRegister.php
/dokuwiki/inc/Ui/UserResendPwd.php
/dokuwiki/inc/auth.php
/dokuwiki/inc/form.php
/dokuwiki/inc/html.php
/dokuwiki/inc/infoutils.php
/dokuwiki/inc/lang/ckb/lang.php
/dokuwiki/inc/lang/ckb/mailtext.txt
/dokuwiki/inc/lang/ckb/password.txt
/dokuwiki/inc/lang/ckb/registermail.txt
/dokuwiki/inc/lang/ckb/searchpage.txt
/dokuwiki/inc/lang/ckb/uploadmail.txt
/dokuwiki/inc/lang/nan/lang.php
/dokuwiki/inc/media.php
/dokuwiki/inc/template.php
/dokuwiki/lib/exe/ajax.php
/dokuwiki/lib/plugins/authad/action.php
/dokuwiki/lib/plugins/authad/lang/ckb/lang.php
/dokuwiki/lib/plugins/config/lang/ckb/lang.php
/dokuwiki/lib/plugins/extension/lang/zh-tw/lang.php
/dokuwiki/lib/plugins/revert/lang/ckb/lang.php
/dokuwiki/lib/plugins/styling/admin.php
/dokuwiki/lib/scripts/behaviour.js
/dokuwiki/vendor/composer/ClassLoader.php
/dokuwiki/vendor/composer/installed.json
/dokuwiki/vendor/splitbrain/php-archive/composer.json
/dokuwiki/vendor/splitbrain/php-archive/src/FileInfo.php
/dokuwiki/vendor/splitbrain/php-archive/src/Tar.php
/dokuwiki/vendor/splitbrain/php-archive/src/Zip.php
3ff73c3c27-Oct-2020 AdaKaleh <31895292+adakaleh@users.noreply.github.com>

Add IPv6 unit tests

bfcf800930-Sep-2020 Andreas Gohr <andi@splitbrain.org>

refactor page and media resolving, introduce ~ shortcut

This moves the resolve_id() type of functions into their own class
hierarchy.

A new shortcut to be used in links is introduced. The tilde ~ c

refactor page and media resolving, introduce ~ shortcut

This moves the resolve_id() type of functions into their own class
hierarchy.

A new shortcut to be used in links is introduced. The tilde ~ can be
used to reference the current page as a namespace. This is useful to
dynamically create a new namespace from an existing page, effectively
making that page the start page. It allows for a more dynamic growth of
the wiki and makes use of the rarer used "startpage named like the
namespace" method for start pages.

The existing code has not been modified, yet and continues to use the
old, now deprecated methods. Some tests are still failing - before they
are fixed, the expected behaviour needs to be discussed.

show more ...

a32da6dd25-Sep-2020 Satoshi Sahara <sahara.satoshi@gmail.com>

change Index objects to non-singleton

Indexer, FulltextIndex, MetadataIndex uses common directory to store *.idx files, but this does not mean they should be singleton objects to avoid lock confrict

change Index objects to non-singleton

Indexer, FulltextIndex, MetadataIndex uses common directory to store *.idx files, but this does not mean they should be singleton objects to avoid lock confrictions.

show more ...

242e693120-Aug-2020 Moisés Braga Ribeiro <moisesbr@gmail.com>

Thorough tests for EO, DE, PT and ES

Correction for German collation; examples for German and Spanish; much better comments

d0fecb1817-Aug-2020 Moisés Braga Ribeiro <moisesbr@gmail.com>

Tests for Portuguese and Spanish

Collations for Portuguese and Spanish; examples for Portuguese; better comments

0489c64b16-Aug-2020 Moisés Braga Ribeiro <moisesbr@gmail.com>

Changes according to revisions in https://github.com/moisesbr-dw/dokuwiki/pull/2

Many minor details and use of Sort::xyz() instead of intl_xyz() in files outside the "inc" folder.

24486f8c12-Aug-2020 Andreas Gohr <andi@splitbrain.org>

fixed tests for cleanID and romanization for Greeklish


pageutils_clean_id.test.php
utf8_romanize.test.php
/dokuwiki/composer.json
/dokuwiki/composer.lock
/dokuwiki/doku.php
/dokuwiki/inc/Parsing/ParserMode/Externallink.php
/dokuwiki/inc/Utf8/tables/loweraccents.php
/dokuwiki/inc/Utf8/tables/romanization.php
/dokuwiki/inc/lang/cs/admin.txt
/dokuwiki/inc/lang/cs/lang.php
/dokuwiki/inc/lang/de-informal/lang.php
/dokuwiki/inc/lang/de/lang.php
/dokuwiki/inc/lang/en/lang.php
/dokuwiki/inc/lang/pl/lang.php
/dokuwiki/inc/lang/pt/lang.php
/dokuwiki/inc/lang/ru/lang.php
/dokuwiki/inc/lang/sk/lang.php
/dokuwiki/inc/lang/zh-tw/lang.php
/dokuwiki/inc/lang/zh-tw/onceexisted.txt
/dokuwiki/inc/lang/zh/lang.php
/dokuwiki/inc/media.php
/dokuwiki/index.php
/dokuwiki/install.php
/dokuwiki/lib/plugins/acl/lang/zh-tw/lang.php
/dokuwiki/lib/plugins/authad/lang/zh-tw/lang.php
/dokuwiki/lib/plugins/authad/lang/zh-tw/settings.php
/dokuwiki/lib/plugins/authldap/lang/zh-tw/settings.php
/dokuwiki/lib/plugins/authplain/lang/zh-tw/lang.php
/dokuwiki/lib/plugins/config/lang/cs/lang.php
/dokuwiki/lib/plugins/config/lang/de/lang.php
/dokuwiki/lib/plugins/config/lang/pt/lang.php
/dokuwiki/lib/plugins/config/lang/sk/lang.php
/dokuwiki/lib/plugins/config/lang/zh-tw/lang.php
/dokuwiki/lib/plugins/config/lang/zh/lang.php
/dokuwiki/lib/plugins/extension/cli.php
/dokuwiki/lib/plugins/extension/lang/cs/lang.php
/dokuwiki/lib/plugins/extension/lang/de/lang.php
/dokuwiki/lib/plugins/extension/lang/pt/lang.php
/dokuwiki/lib/plugins/extension/lang/sk/lang.php
/dokuwiki/lib/plugins/extension/lang/zh-tw/lang.php
/dokuwiki/lib/plugins/popularity/lang/zh-tw/lang.php
/dokuwiki/lib/plugins/revert/lang/cs/lang.php
/dokuwiki/lib/plugins/revert/lang/zh-tw/lang.php
/dokuwiki/lib/plugins/styling/_test/colors.test.php
/dokuwiki/lib/plugins/styling/admin.php
/dokuwiki/lib/plugins/styling/lang/sk/intro.txt
/dokuwiki/lib/plugins/styling/lang/sk/lang.php
/dokuwiki/lib/plugins/styling/lang/zh-tw/lang.php
/dokuwiki/lib/plugins/styling/plugin.info.txt
/dokuwiki/lib/plugins/usermanager/lang/pt/lang.php
/dokuwiki/lib/plugins/usermanager/lang/sk/lang.php
/dokuwiki/lib/plugins/usermanager/lang/zh-tw/lang.php
/dokuwiki/lib/scripts/media.js
/dokuwiki/lib/tpl/dokuwiki/lang/sk/lang.php
/dokuwiki/lib/tpl/dokuwiki/lang/sk/style.txt
/dokuwiki/vendor/composer/installed.json
/dokuwiki/vendor/geshi/geshi/src/geshi.php
f9aa34a311-Aug-2020 Andreas Gohr <andi@splitbrain.org>

test the collator fallback always

Now the use of the intl extension can be turned off, allowing for easy
testing of the fallback. The test now inherits from the collator test so
we avoid too much du

test the collator fallback always

Now the use of the intl extension can be turned off, allowing for easy
testing of the fallback. The test now inherits from the collator test so
we avoid too much duplicate code

show more ...

5d9cb4e111-Aug-2020 Andreas Gohr <andi@splitbrain.org>

cleanup for collator tests

The proper use of data providers now make it much easier to add
addtional languages to the test

12345678910>>...23