Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [tx-robot] updated from transifex | Nextcloud bot | 2020-11-23 | 2 | -0/+10 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2020-11-09 | 4 | -4/+16 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2020-10-31 | 2 | -0/+12 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2020-10-30 | 2 | -0/+12 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2020-10-29 | 2 | -0/+12 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2020-10-24 | 2 | -2/+4 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2020-10-22 | 2 | -0/+10 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2020-10-12 | 2 | -0/+12 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2020-10-08 | 2 | -0/+12 |
| | |||||
* | Format code to a single space around binary operators | Christoph Wurst | 2020-10-05 | 1 | -1/+1 |
| | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at> | ||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2020-10-05 | 2 | -0/+12 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2020-10-04 | 2 | -2/+4 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2020-10-02 | 4 | -0/+24 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2020-09-28 | 4 | -0/+22 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2020-09-26 | 4 | -2/+16 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2020-09-25 | 6 | -0/+34 |
| | |||||
* | Update autloader | Roeland Jago Douma | 2020-09-24 | 1 | -1/+1 |
| | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl> | ||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2020-09-23 | 2 | -2/+4 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2020-09-20 | 18 | -0/+106 |
| | |||||
* | Add transifex config for all new apps | Morris Jobke | 2020-09-18 | 1 | -0/+0 |
| | | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de> | ||||
* | Bump versions | Joas Schilling | 2020-09-18 | 1 | -2/+2 |
| | | | | Signed-off-by: Joas Schilling <coding@schilljs.com> | ||||
* | Help static code analysis to understand code. | Daniel Kesselberg | 2020-09-16 | 1 | -2/+4 |
| | | | | | | It adds proper type hints to private namespace to allow private namespace methods. Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de> | ||||
* | Update the license headers for Nextcloud 20 | Christoph Wurst | 2020-08-24 | 2 | -1/+1 |
| | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at> | ||||
* | Change PHPDoc type hint from PHPUnit_Framework_MockObject_MockObject to ↵ | Morris Jobke | 2020-08-12 | 1 | -2/+2 |
| | | | | | | \PHPUnit\Framework\MockObject\MockObject Signed-off-by: Morris Jobke <hey@morrisjobke.de> | ||||
* | Use the proper IAppContainer and IServerContainer type hints to know which ↵ | Morris Jobke | 2020-07-21 | 1 | -22/+16 |
| | | | | | | code runs with which container Signed-off-by: Morris Jobke <hey@morrisjobke.de> | ||||
* | Adjust apps' code to use the ContainerInterface | Christoph Wurst | 2020-07-21 | 1 | -20/+21 |
| | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at> | ||||
* | Use \OCP\IContainer::injectFn to boot the admin_audit app | Christoph Wurst | 2020-07-03 | 1 | -4/+4 |
| | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at> | ||||
* | Update share type constant usage | Joas Schilling | 2020-06-24 | 1 | -17/+17 |
| | | | | Signed-off-by: Joas Schilling <coding@schilljs.com> | ||||
* | Migrate Admin Audit app to new bootstrap mechanism | Christoph Wurst | 2020-06-17 | 2 | -98/+91 |
| | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at> | ||||
* | Bump app versions and requirements | Joas Schilling | 2020-05-07 | 1 | -2/+2 |
| | | | | Signed-off-by: Joas Schilling <coding@schilljs.com> | ||||
* | Update license headers for 19 | Christoph Wurst | 2020-04-29 | 6 | -0/+6 |
| | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at> | ||||
* | Format control structures, classes, methods and function | Christoph Wurst | 2020-04-10 | 8 | -33/+25 |
| | | | | | | | | | | | | | | | To continue this formatting madness, here's a tiny patch that adds unified formatting for control structures like if and loops as well as classes, their methods and anonymous functions. This basically forces the constructs to start on the same line. This is not exactly what PSR2 wants, but I think we can have a few exceptions with "our" style. The starting of braces on the same line is pracrically standard for our code. This also removes and empty lines from method/function bodies at the beginning and end. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at> | ||||
* | Unify function spacing to PSR2 recommendation | Christoph Wurst | 2020-04-09 | 1 | -8/+8 |
| | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at> | ||||
* | Use exactly one empty line after the namespace declaration | Christoph Wurst | 2020-04-09 | 7 | -6/+1 |
| | | | | | | For PSR2 Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at> | ||||
* | Update the license headers for Nextcloud 19 | Christoph Wurst | 2020-03-31 | 1 | -0/+2 |
| | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at> | ||||
* | Update autoloaders for composer v1.10.1 | Christoph Wurst | 2020-03-19 | 1 | -0/+3 |
| | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at> | ||||
* | Audit log unsharing from self | Tiago Flores | 2020-02-03 | 1 | -0/+1 |
| | | | | Signed-off-by: Tiago Flores <tiago.flores@yahoo.com.br> | ||||
* | Merge pull request #19041 from GrayFix/fix-admin_audit-preview | Roeland Jago Douma | 2020-01-22 | 1 | -1/+1 |
|\ | | | | | mb substring in audit_log | ||||
| * | Update Application.php | GrayFix | 2020-01-22 | 1 | -1/+1 |
| | | | | | | | | | | | | Fix corruption for logging internal path with multibyte characters in file preview event Signed-off-by: GrayFix <grayfix@gmail.com> | ||||
* | | Fix app updates | Roeland Jago Douma | 2020-01-21 | 1 | -2/+2 |
|/ | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl> | ||||
* | Update license headers for 18 | Christoph Wurst | 2019-12-20 | 1 | -1/+0 |
| | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at> | ||||
* | Update license headers | Christoph Wurst | 2019-12-05 | 15 | -15/+58 |
| | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at> | ||||
* | Mode to modern phpunit | Roeland Jago Douma | 2019-11-27 | 1 | -1/+1 |
| | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl> | ||||
* | Make phpunit8 compatible | Roeland Jago Douma | 2019-11-27 | 1 | -1/+1 |
| | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl> | ||||
* | Merge pull request #18005 from nextcloud/fix/manual-app-instances | Roeland Jago Douma | 2019-11-26 | 1 | -1/+1 |
|\ | | | | | Remove some more direct app instance creations | ||||
| * | Remove some more direct app instance creations | Christoph Wurst | 2019-11-25 | 1 | -1/+1 |
| | | | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at> | ||||
* | | Some php-cs fixes | Roeland Jago Douma | 2019-11-22 | 1 | -1/+1 |
|/ | | | | | | | | | | | * Order the imports * No leading slash on imports * Empty line before namespace * One line per import * Empty after imports * Emmpty line at bottom of file Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl> | ||||
* | Development is 18 now! | Roeland Jago Douma | 2019-09-05 | 1 | -2/+2 |
| | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl> | ||||
* | Fix enable/disable user audit message | John Molakvoæ (skjnldsv) | 2019-08-07 | 1 | -1/+3 |
| | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | ||||
* | log circles and remote shares in admin_audit | Sascha Wiswedel | 2019-08-01 | 1 | -2/+77 |
| | | | | Signed-off-by: Sascha Wiswedel <sascha.wiswedel@nextcloud.com> |