| 176901c2 | 20-Nov-2024 |
Andreas Gohr <andi@splitbrain.org> |
Extension Manager: Template GUI
template tab works now, fixed installed status |
| 80bc92fb | 20-Nov-2024 |
Andreas Gohr <andi@splitbrain.org> |
Extension Manager: add installer to GUI
Now the GUI uses the new Installer class. More work has been done on the GUI itself |
| 00929f2e | 20-Nov-2024 |
Andreas Gohr <andi@splitbrain.org> |
Extension Manager: some more work on styling |
| 71eea990 | 14-Aug-2024 |
Andreas Gohr <andi@splitbrain.org> |
Extension Manager: by default skip all git controlled extensions |
| 981e70ca | 08-Aug-2024 |
Andreas Gohr <andi@splitbrain.org> |
Extension Manager: overhauled list display style
The GUI is still not fully functional again. |
| 20db0ca9 | 08-Aug-2024 |
Andreas Gohr <andi@splitbrain.org> |
Extension Manager: some first attempts at styling
I'm not really happy yet, but it will be improved in coming commits |
| 4fd6a1d7 | 25-Apr-2024 |
Andreas Gohr <andi@splitbrain.org> |
Extension Manager: First go at reimplementing the GUI
still a long road ahead |
| b2a05b76 | 17-Apr-2024 |
Andreas Gohr <andi@splitbrain.org> |
Extension Manager: ensure php requirements before installing
This makes use of the new minphp and maxphp fields in the info.txt |
| 160d3688 | 17-Apr-2024 |
Andreas Gohr <andi@splitbrain.org> |
Extension Manager: CLI now should completely use new classes |
| 25d28a01 | 17-Apr-2024 |
Andreas Gohr <andi@splitbrain.org> |
Extension Manager: make installation work again
The Installer class now also handles dependencies |
| 99fd248d | 17-Apr-2024 |
Andreas Gohr <andi@splitbrain.org> |
Extension Manager: list warnings on CLI |
| 7c9966a5 | 05-Mar-2024 |
Andreas Gohr <andi@splitbrain.org> |
Extension Manager: more refactoring
started to migrate the CLI over to the new classes |
| a1e045f7 | 20-Feb-2024 |
Andreas Gohr <andi@splitbrain.org> |
ExtensionManager: allow initialization using an ID only
This is a more convenient method |
| cf2dcf1b | 20-Feb-2024 |
Andreas Gohr <andi@splitbrain.org> |
First start at refactoring the extension manager
The aim is to readd the existing functionality into proper classes, then extend from there. |
| c156c07d | 04-Dec-2024 |
Andreas Gohr <andi@splitbrain.org> |
add todo checker action
I sometimes forget to resolve todo comments in my PRs, this might help. |
| 8407f251 | 02-Dec-2024 |
splitbrain <86426+splitbrain@users.noreply.github.com> |
Rector and PHPCS fixes |
| 8b9fc108 | 02-Dec-2024 |
Andreas Gohr <andi@splitbrain.org> |
skip buggy rector rule
see rectorphp/rector#8916 |
| 1e467458 | 02-Dec-2024 |
Andreas Gohr <andi@splitbrain.org> |
skip two more rules from rector |
| 958c4f80 | 02-Dec-2024 |
Andreas Gohr <andi@splitbrain.org> |
removed obsolete files from static autoloader |
| 93aadb6c | 02-Dec-2024 |
Andreas Gohr <andi@splitbrain.org> |
update rector to 1.2
Some of our skipped rules no longer exist or apply. Next auto-cleanup should be checked extra careful |
| fb021356 | 27-Nov-2024 |
Andreas Gohr <andi@splitbrain.org> |
drop tilde from title. fixes #4347
When a link with the page relative shortcut is used and no title is given, the given ID is used to create a title. In this case, the tilde should be removed from t
drop tilde from title. fixes #4347
When a link with the page relative shortcut is used and no title is given, the given ID is used to create a title. In this case, the tilde should be removed from the title.
[[~SomeThing]] -> SomeThing
show more ...
|
| b9cda918 | 27-Nov-2024 |
Andreas Gohr <andi@splitbrain.org> |
unset empty REMOTE_USER. fixes #4348
An empty remote user should not be set at all. Seems like some webservers always set the environment var, even if no authentication happened. I'd argue that this
unset empty REMOTE_USER. fixes #4348
An empty remote user should not be set at all. Seems like some webservers always set the environment var, even if no authentication happened. I'd argue that this is wrong, but this should fix the behaviour.
show more ...
|
| 389c05a6 | 27-Nov-2024 |
Andreas Gohr <andi@splitbrain.org> |
fix revisions used in RSS feeds. fixes #4357
A negative value needs to be passed to retrieve the current revision. |
| 75578ae6 | 27-Nov-2024 |
Andreas Gohr <andi@splitbrain.org> |
Preventing auto-filling of passwords in config #4362
We previously had set autocomplete="off" on password fields, but browsers seem to ignore that now.
MDN suggests [1] to use autocomplete="new-pas
Preventing auto-filling of passwords in config #4362
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
show more ...
|
| 36784b8f | 27-Nov-2024 |
Andreas Gohr <andi@splitbrain.org> |
use new expectLogMessage to check condition tested in test_savesequence4() |