Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [tx-robot] updated from transifex | Nextcloud bot | 2017-08-24 | 2 | -12/+12 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2017-08-22 | 64 | -316/+320 |
| | |||||
* | Move GDrive external storage to a separate repo | Vincent Petry | 2017-08-21 | 147 | -244502/+2 |
| | | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de> | ||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2017-08-21 | 2 | -2/+2 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2017-08-20 | 2 | -2/+2 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2017-08-17 | 64 | -380/+384 |
| | |||||
* | Bye bye Dropbox v1 | Vincent Petry | 2017-08-16 | 23 | -6155/+1 |
| | | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de> | ||||
* | Merge pull request #6101 from cbartz/patch-1 | Lukas Reschke | 2017-08-15 | 1 | -6/+1 |
|\ | | | | | Missing array assignment in Swift.php | ||||
| * | Remove tmpFiles Array in Swift.php | Christopher Bartz | 2017-08-14 | 1 | -6/+1 |
| | | | | | | | | | | | | tmpFiles Array is unnecessary and there has been a reference without an assignment which lead to a bug making swift external storage unuseable. | ||||
* | | Merge pull request #5872 from nextcloud/swift-filter-dot | Robin Appelman | 2017-08-14 | 1 | -1/+1 |
|\ \ | |/ |/| | Filter magic dot object when swift directory | ||||
| * | Filter magic dot object when swift directory | Robin Appelman | 2017-08-01 | 1 | -1/+1 |
| | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl> | ||||
* | | [tx-robot] updated from transifex | Nextcloud bot | 2017-08-13 | 2 | -2/+2 |
| | | |||||
* | | [tx-robot] updated from transifex | Nextcloud bot | 2017-08-12 | 2 | -0/+4 |
| | | |||||
* | | [tx-robot] updated from transifex | Nextcloud bot | 2017-08-09 | 46 | -46/+0 |
| | | |||||
* | | [tx-robot] updated from transifex | Nextcloud bot | 2017-08-08 | 2 | -0/+6 |
| | | |||||
* | | Merge pull request #4790 from nextcloud/fix-comparisons-in-apps | Morris Jobke | 2017-08-02 | 9 | -26/+26 |
|\ \ | | | | | | | Fix comparisons in apps | ||||
| * | | Fix comparisons in the files external app | Joas Schilling | 2017-08-01 | 9 | -26/+26 |
| |/ | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com> | ||||
* / | [tx-robot] updated from transifex | Nextcloud bot | 2017-08-02 | 2 | -0/+4 |
|/ | |||||
* | Fix L10N::t | Roeland Jago Douma | 2017-08-01 | 1 | -3/+3 |
| | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl> | ||||
* | [files_external] Fix phpdoc | Roeland Jago Douma | 2017-08-01 | 3 | -3/+3 |
| | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl> | ||||
* | [files_external] fix commands | Roeland Jago Douma | 2017-08-01 | 6 | -13/+13 |
| | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl> | ||||
* | [files_external] Fix phpdoc | Roeland Jago Douma | 2017-08-01 | 2 | -2/+2 |
| | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl> | ||||
* | Replace wrong PHPDocs | Lukas Reschke | 2017-08-01 | 1 | -1/+1 |
| | | | | Signed-off-by: Lukas Reschke <lukas@statuscode.ch> | ||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2017-07-30 | 2 | -0/+10 |
| | |||||
* | Allow to enable the external storage app via the web ui | Joas Schilling | 2017-07-26 | 1 | -15/+1 |
| | | | | Signed-off-by: Joas Schilling <coding@schilljs.com> | ||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2017-07-26 | 2 | -2/+2 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2017-07-25 | 4 | -0/+8 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2017-07-24 | 4 | -0/+12 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2017-07-23 | 6 | -2/+8 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2017-07-22 | 6 | -0/+10 |
| | |||||
* | Merge pull request #5817 from nextcloud/add-basic-sql-injection-checker | Morris Jobke | 2017-07-21 | 1 | -0/+4 |
|\ | | | | | Add Phan plugin to check for SQL injections | ||||
| * | Add Phan plugin to check for SQL injections | Lukas Reschke | 2017-07-20 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | | | | | | This adds a phan plugin which checks for SQL injections on code using our QueryBuilder, while it isn't perfect it should already catch most potential issues. As always, static analysis will sometimes have false positives and this is also here the case. So in some cases the analyzer just doesn't know if something is potential user input or not, thus I had to add some `@suppress SqlInjectionChecker` in front of those potential injections. The Phan plugin hasn't the most awesome code but it works and I also added a file with test cases. Signed-off-by: Lukas Reschke <lukas@statuscode.ch> | ||||
* | | [tx-robot] updated from transifex | Nextcloud bot | 2017-07-21 | 62 | -122/+12 |
|/ | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2017-07-20 | 10 | -0/+20 |
| | |||||
* | Run phan over code base | Lukas Reschke | 2017-07-19 | 1 | -4/+4 |
| | | | | Signed-off-by: Lukas Reschke <lukas@statuscode.ch> | ||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2017-07-19 | 62 | -122/+122 |
| | |||||
* | Merge pull request #5740 from nextcloud/comradekingu-patch-5 | Morris Jobke | 2017-07-18 | 1 | -2/+2 |
|\ | | | | | Spelling: log out, : Bigversal | ||||
| * | log out, : Bigversal | Allan Nordhøy | 2017-07-14 | 1 | -2/+2 |
| | | |||||
* | | [tx-robot] updated from transifex | Nextcloud bot | 2017-07-17 | 2 | -28/+232 |
| | | |||||
* | | [tx-robot] updated from transifex | Nextcloud bot | 2017-07-15 | 2 | -6/+6 |
|/ | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2017-07-14 | 2 | -6/+6 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2017-07-13 | 2 | -10/+10 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2017-07-12 | 2 | -18/+18 |
| | |||||
* | Merge pull request #5656 from ↵ | Morris Jobke | 2017-07-10 | 1 | -0/+1 |
|\ | | | | | | | | | nextcloud/fix-unselecting-items-on-multi-select-dropdowns Fix unselecting items on multi select dropdowns | ||||
| * | Enable the toggleSelect extension in multi-select dropdowns | Daniel Calviño Sánchez | 2017-07-10 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | The toggleSelect extension for Select2 makes possible to unselect items in a multi-select dropdown by clicking on them; this behaviour should be enabled in all the multi-select dropdowns used in the server. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com> | ||||
* | | [tx-robot] updated from transifex | Nextcloud bot | 2017-07-10 | 2 | -6/+6 |
|/ | |||||
* | Merge pull request #5556 from nextcloud/files_external_sftp_2048_4096 | Morris Jobke | 2017-07-04 | 3 | -9/+30 |
|\ | | | | | [Files external] Add support for 2048 and 4096 bit RSA key generation | ||||
| * | Remove unused member | Roeland Jago Douma | 2017-06-30 | 1 | -2/+0 |
| | | | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl> | ||||
| * | Allow 2048 and 4096 bit SFTP keys | Roeland Jago Douma | 2017-06-29 | 3 | -7/+30 |
| | | | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl> | ||||
* | | [tx-robot] updated from transifex | Nextcloud bot | 2017-07-03 | 2 | -4/+4 |
| | |