Daniel Siepmann

Results 78 comments of Daniel Siepmann

Have the same issue, anyway @Dinduks you can trim trailing whitespace via autocommand for the whole file if that's okay for you: ``` function! StripTrailingWhitespace() execute ':%s/\s\+$//e' endfunction ``` This...

This seems to be related to https://github.com/kimai/kimai/issues/4189, which also tried to improve the title for other valid reasons.

We also should cover the purpose and benefits of each tool. That allows new users to decide which tools they wanna use first.

Looks like falling back on `0` if not provided would solve the issue.

Looks like the middleware misses some more proper initializations, e.g. UserTSconfig seems to be missing as well. Looks like those two calls should be added as well: ```php $backendUser->initializeUserSessionManager(); $backendUser->fetchGroupData();...

Sure, but will take some time as I moved forward and work on other areas right now …

@sbuerk done: https://review.typo3.org/c/Packages/TYPO3.CMS/+/82715 You can debug within `typo3/sysext/adminpanel/Classes/Utility/StateUtility.php` to see that the TSconfig is not provided, due to missing intialization. This is called from e.g. `typo3/sysext/adminpanel/Classes/Middleware/AdminPanelInitiator.php`. The provided PR fixes...

Another proper solution might be to replace the provided middleware of testing framework with an authenticator which checks the provided request context and auths the user, allowing TYPO3 to work...

The given PR solves the issues and makes https://review.typo3.org/c/Packages/TYPO3.CMS/+/82715 pass.

Probably related to https://github.com/TYPO3/testing-framework/issues/511 and https://github.com/TYPO3/testing-framework/issues/510.