aboutsummaryrefslogtreecommitdiffstatshomepage
Commit message (Collapse)AuthorAge
* refactor editor.js completelyeditorjs-cleanupAndreas Gohr2022-07-14
| | | | | | | This makes it simpler, cleaner and uses more modern JS APIs. jQuery dependencies have been mostly (but not completely) removed. This also fixes #3711
* cleanup of editor.jsAndreas Gohr2022-07-14
| | | | removed obsolete calls, fixed type safety and doc blocks, reformatted
* fix image resizing with width only. fixes #3707Andreas Gohr2022-07-06
| | | | | | When only a width is given, the image should be resized to this width always. The code wrongly used the width to create a bounding box instead.
* Merge pull request #3704 from splitbrain/IXRdeprecatedAndreas Gohr2022-07-04
|\ | | | | add deprecated IXR classes
| * add deprecated IXR classesGerrit Uitslag2022-07-02
| |
* | Merge pull request #3703 from splitbrain/functionexistsAndreas Gohr2022-07-02
|\ \ | |/ |/| use function_exists and a string in check if zlib_decode exists
| * use function_exists and use a stringGerrit Uitslag2022-07-02
|/ | | | | | | | ?do=check in php8.1 Fixes: inc/infoutils.php(92) Error: Undefined constant "zlib_decode" inc/infoutils.php(92) ArgumentCountError: method_exists() expects exactly 2 arguments, 1 given
* correctly create log file name. fixes #3699Andreas Gohr2022-06-29
| | | | strtoftime does not always recognize Unix Timestamps
* Release preparationGuy Brand2022-06-26
|
* optimized dokuwiki logo svgAndreas Gohr2022-06-24
| | | | Half the size.
* minor SVG improvementsAndreas Gohr2022-06-24
| | | | | | | | * never try to use slika to resize SVGs - let the browser do it * use object-fit:cover for all images - this properly crops inside the browser if the backend didn't (like for SVGs). currently dokuwiki template only - might be worth moving to default styles * show previews for SVGs in media manager
* Merge pull request #3607 from ssahara/revdiff2Andreas Gohr2022-06-24
|\ | | | | add mechanism to track current revision, and other code improvements
| * add fallback when url parameter rev is currentSatoshi Sahara2022-02-06
| | | | | | | | feed.php request to show page or media diff previous with current by url parameter rev that is current revision number.
| * change var name $Rev to $RevInfoSatoshi Sahara2022-01-28
| |
| * change var name $rev1Supple to $rev1SummarySatoshi Sahara2022-01-28
| |
| * no link to attic if no version in atticGerrit Uitslag2022-01-23
| |
| * moved globalGerrit Uitslag2022-01-23
| |
| * some spellingGerrit Uitslag2022-01-23
| |
| * use RevisionInfo class more in DiffSatoshi Sahara2022-01-23
| | | | | | | | | | | | use RevisionInfo Rev1, Rev2 instead of array oldRevInfo, newRevInfo obsolete revisionTitle(), use RevisionInfo::showRevisionTitle() change variable names
| * use OOP like method name in RevisionInfo classSatoshi Sahara2022-01-23
| |
| * fix typoSatoshi Sahara2022-01-23
| |
| * track current revision in Diff::compare()Satoshi Sahara2022-01-23
| |
| * prevent warning undefined array key "highlighted"Satoshi Sahara2022-01-23
| |
| * strict check to find prev and next revisionSatoshi Sahara2022-01-23
| | | | | | | | array_search may return false and treated as 0 when a rev not found revs.
| * add mechanism to track external current revisionSatoshi Sahara2022-01-23
| |
* | Merge pull request #3349 from cziehr/masterAndreas Gohr2022-06-24
|\ \ | | | | | | Fix loading order of extra defaults settings in the Configuration Manager
| * | reformat codeGerrit Uitslag2022-01-05
| | |
| * | unittest for loading default and extra default settings in Config managerGerrit Uitslag2022-01-05
| | |
| * | add unittests for loading of defaults, extra defaults, local and protected ↵Gerrit Uitslag2022-01-05
| | | | | | | | | | | | settings
| * | Update Loader.phpChristoph Ziehr2022-01-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The config options are read in the order plugin-standard-values -> template-standard-values -> dokuwiki.php -> local.php -> local.protected.php into DokuWiki. But when entering the configuration manger, they options are displayed in the order dokuwiki.php -> plugin-standard-values -> template-standard-values -> local.php -> local.protected.php This patch fixes the issue, so that the right values are displayed if there are no configs set in local.php or local.protected.php See also https://forum.dokuwiki.org/d/18489-issues-with-modifying-confdokuwikiphp for further information. This is a second version of this change, because on the first try, there was unnoticed php-error.
| * | Update Loader.phpChristoph Ziehr2022-01-05
| | | | | | | | | | | | | | | | | | | | | | | | The config options are read in the order plugin-standard-values -> template-standard-values -> dokuwiki.php -> local.php -> local.protected.php into DokuWiki. But when entering the configuration manger, they options are displayed in the order dokuwiki.php -> plugin-standard-values -> template-standard-values -> local.php -> local.protected.php This patch fixes the issue, so that the right values are displayed if there are no configs set in local.php or local.protected.php See also https://forum.dokuwiki.org/d/18489-issues-with-modifying-confdokuwikiphp for further information.
* | | Merge pull request #3595 from pluto00987/masterAndreas Gohr2022-06-24
|\ \ \ | | | | | | | | Add an option to prevent password changes in authad plugin
| * | | Add ssl/tls req to settingspluto009872022-01-19
| | | |
| * | | Add update_pass optionpluto009872022-01-14
| | | |
* | | | Merge branch 'pr/3609'Andreas Gohr2022-06-24
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * pr/3609: increased API version throw exceptions in API on user creation errors revert to simple boolean result when user creation fails, remove unused function revert to simple boolean result when creating user, phpcs fix Reverted change fix annotation Create one user per request Implements #3606: add xmlrpc createUsers function
| * | | | increased API versionAndreas Gohr2022-06-24
| | | | |
| * | | | throw exceptions in API on user creation errorsAndreas Gohr2022-06-24
| | | | | | | | | | | | | | | | | | | | As discussed in #3609
| * | | | revert to simple boolean result when user creation fails, remove unused functionMichael Wegener2022-01-25
| | | | |
| * | | | revert to simple boolean result when creating user, phpcs fixMichael Wegener2022-01-25
| | | | |
| * | | | Reverted changeMichael Wegener2022-01-25
| | | | |
| * | | | fix annotationMichael Wegener2022-01-24
| | | | |
| * | | | Create one user per requestMichael Wegener2022-01-24
| | | | |
| * | | | Merge branch 'splitbrain:master' into ↵Michael Wegener2022-01-24
| |\ \ \ \ | | | | | | | | | | | | | | | | | | Feature_add_xmlrpc_function_to_create_new_users
| * | | | | Implements #3606: add xmlrpc createUsers functionMichael Wegener2022-01-24
| | |_|_|/ | |/| | |
* | | | | Merge pull request #3686 from schplurtz/remove.animalAndreas Gohr2022-06-24
|\ \ \ \ \ | | | | | | | | | | | | remove animal from query string
| * | | | | remove animal from query stringSchplurtz le Déboulonné2022-06-02
| | | | | |
* | | | | | avoid timeouts in testsAndreas Gohr2022-06-22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | For some reason it seems that CLI tests on github run with a execution time limit that can't be disabled by setting the appropriate ini value. Even more odd, the problem seems to exist on windows only (even though the same limit is set on both OSes). In any case, this simply resets the time limit for each test run and that seems to fix the timeout issue.
* | | | | | Merge pull request #3692 from dokuwiki-translate/lang_update_457_1655417429Phy2022-06-16
|\ \ \ \ \ \ | | | | | | | | | | | | | | Translation update (pl)
| * | | | | | translation updateMarek Adamski2022-06-17
| | | | | | |
* | | | | | | Merge pull request #3691 from dokuwiki-translate/lang_update_456_1655386087Phy2022-06-16
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Translation update (ca)