Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
* | Extension Manager: Template GUI | Andreas Gohr | 2024-12-04 | |
| | | | | template tab works now, fixed installed status | |||
* | Extension Manager: add installer to GUI | Andreas Gohr | 2024-12-04 | |
| | | | | | Now the GUI uses the new Installer class. More work has been done on the GUI itself | |||
* | Extension Manager: some more work on styling | Andreas Gohr | 2024-12-04 | |
| | ||||
* | Extension Manager: by default skip all git controlled extensions | Andreas Gohr | 2024-12-04 | |
| | ||||
* | Extension Manager: overhauled list display style | Andreas Gohr | 2024-12-04 | |
| | | | | The GUI is still not fully functional again. | |||
* | Extension Manager: some first attempts at styling | Andreas Gohr | 2024-12-04 | |
| | | | | I'm not really happy yet, but it will be improved in coming commits | |||
* | Extension Manager: First go at reimplementing the GUI | Andreas Gohr | 2024-12-04 | |
| | | | | still a long road ahead | |||
* | Extension Manager: ensure php requirements before installing | Andreas Gohr | 2024-12-04 | |
| | | | | This makes use of the new minphp and maxphp fields in the info.txt | |||
* | Extension Manager: CLI now should completely use new classes | Andreas Gohr | 2024-12-04 | |
| | ||||
* | Extension Manager: make installation work again | Andreas Gohr | 2024-12-04 | |
| | | | | The Installer class now also handles dependencies | |||
* | Extension Manager: list warnings on CLI | Andreas Gohr | 2024-12-04 | |
| | ||||
* | Extension Manager: more refactoring | Andreas Gohr | 2024-12-04 | |
| | | | | started to migrate the CLI over to the new classes | |||
* | ExtensionManager: allow initialization using an ID only | Andreas Gohr | 2024-12-04 | |
| | | | | This is a more convenient method | |||
* | First start at refactoring the extension manager | Andreas Gohr | 2024-12-04 | |
| | | | | | The aim is to readd the existing functionality into proper classes, then extend from there. | |||
* | Merge pull request #4364 from dokuwiki/nopassfill | Andreas Gohr | 2024-12-02 | |
|\ | | | | | Preventing auto-filling of passwords in config #4362 | |||
| * | Preventing auto-filling of passwords in config #4362 | Andreas Gohr | 2024-11-27 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | We previously had set autocomplete="off" on password fields, but browsers seem to ignore that now. MDN suggests [1] to use autocomplete="new-password", so that's what's used now. In addition autocomplete="off" is set on the form as a whole. Will that fix the issue once and for all? Doubtful: > This attribute is a hint to browsers; some may not comply with it. [1] https://developer.mozilla.org/en-US/docs/Web/Security/Practical_implementation_guides/Turning_off_form_autocompletion | |||
* | | Merge pull request #4360 from dokuwiki/php84 | Andreas Gohr | 2024-12-02 | |
|\ \ | |/ |/| | PHP 8.4 fixes | |||
| * | fix deprecated phpunit call in styling plugin | Andreas Gohr | 2024-11-25 | |
| | | ||||
| * | fix expected exception message in config plugin test | Andreas Gohr | 2024-11-25 | |
| | | ||||
| * | user manager: explicitly set CSV parameters | Andreas Gohr | 2024-11-25 | |
| | | | | | | | | This is needed since PHP 8.4 | |||
| * | replace deprecated phpunit assertions | Andreas Gohr | 2024-11-25 | |
| | | ||||
| * | replace deprecated utf8_encode #4354 | Andreas Gohr | 2024-11-22 | |
| | | ||||
* | | register linkwizard in window | Andreas Gohr | 2024-11-25 | |
|/ | | | | | This fixes a backwards compatibility issue with the changes made in PR #4329. Plugins rely on the wizard being a globally registered object. | |||
* | Fix PHP error while saving Aichat settings | Eduardo Mozart de Oliveira | 2024-11-13 | |
| | ||||
* | translation update | Eduardo Mozart de Oliveira | 2024-11-06 | |
| | ||||
* | Merge pull request #4309 from nneul/feature-ldap-uri | Andreas Gohr | 2024-10-30 | |
|\ | | | | | Support a URI parameter for ldap since current code doesn't actually work | |||
| * | Support a URI parameter for ldap since current code doesn't actually work | Nathan Neulinger | 2024-08-07 | |
| | | ||||
* | | Merge pull request #4324 from dokuwiki/issue4323 | Andreas Gohr | 2024-10-30 | |
|\ \ | | | | | | | Check security token for media restore. fix #4323 | |||
| * | | Check security token for media restore. fix #4323 | Andreas Gohr | 2024-09-15 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The whole media management is a mess, but this should fix the issue for now. I think the severity is low since, this will only restore previously uploaded media files, so permissions need to be high enogh for upload anyway. | |||
* | | | Merge pull request #4326 from dokuwiki-translate/lang_update_958_1727982875 | Andreas Gohr | 2024-10-30 | |
|\ \ \ | | | | | | | | | Translation update (de) | |||
| * | | | translation update | Jürgen Mayer | 2024-10-03 | |
| |/ / | ||||
* | | | LinkWizard: fix multilevel parents in references | Anna Dabrowska | 2024-10-21 | |
| | | | ||||
* | | | use relative links in LinkWizard | Andreas Gohr | 2024-10-15 | |
| | | | | | | | | | | | | | | | When the linked page has a common prefix with the current page, construct a relative link instead of always inserting absolute links. | |||
* | | | LinkWizard: add method to create a relative link | Andreas Gohr | 2024-10-15 | |
| | | | | | | | | | | | | | | | | | | | | | This is not used, yet. Usage will be added in a future commit. Since we don't have a proper testing framework in place, yet. Tests have been added as a standalone script that can be run manually. | |||
* | | | doc blocks in link wizard | Andreas Gohr | 2024-10-14 | |
| | | | ||||
* | | | Linkwizard: use strict comparisons | Andreas Gohr | 2024-10-14 | |
| | | | ||||
* | | | LinkWizard: don't use the deprecated keycode property anymore | Andreas Gohr | 2024-10-14 | |
| | | | ||||
* | | | turn link wizard into a class | Andreas Gohr | 2024-10-14 | |
| | | | | | | | | | | | | Basic modernisation of the link wizard to more modern JavaScript. | |||
* | | | translation update | Tomáš Heger | 2024-10-04 | |
|/ / | ||||
* | | Revert "use a dispatcher to access static image files" | Andreas Gohr | 2024-09-08 | |
| | | | | | | | | | | | | | | This reverts commit 944e9ba7254387adb60f253b0d8796f2276096b1. It was accidentally pused to master before review. A PR with a revert for the revert will be pushed shortly. | |||
* | | use a dispatcher to access static image files | Andreas Gohr | 2024-09-08 | |
|/ | | | | | | | | This makes it possible to replace default images in an update safe way. It also addresses the issue raised in dokuwiki/docker#16 A .htaccess rewrite catches any direct accesses that might come in from plugins. | |||
* | translation update | Ekin | 2024-07-17 | |
| | ||||
* | Remove obsolete translation | hauk92 | 2024-06-24 | |
| | ||||
* | Merge pull request #4290 from dokuwiki-translate/lang_update_884_1718770377 | Andreas Gohr | 2024-06-24 | |
|\ | | | | | Translation update (ko) | |||
| * | translation update | merefox retronica | 2024-06-19 | |
| | | ||||
* | | Merge pull request #4284 from dokuwiki-translate/lang_update_852_1715776471 | Andreas Gohr | 2024-06-24 | |
|\ \ | | | | | | | Translation update (pt) | |||
| * | | translation update | Eduardo Mozart de Oliveira | 2024-05-15 | |
| |/ | ||||
* / | Log in local time instead of utc | hauk92 | 2024-06-22 | |
|/ | ||||
* | translation update | uaKalwin | 2024-05-11 | |
| | ||||
* | Merge pull request #4274 from Zweihorn/align-url-001 | Andreas Gohr | 2024-05-01 | |
|\ | | | | | align url for several lib/plugin members |