summaryrefslogtreecommitdiffstats
path: root/apps/files_trashbin
Commit message (Collapse)AuthorAgeFilesLines
* [tx-robot] updated from transifexNextcloud bot2018-12-072-0/+12
|
* [tx-robot] updated from transifexNextcloud bot2018-12-042-2/+0
|
* [tx-robot] updated from transifexNextcloud bot2018-11-292-18/+18
|
* [tx-robot] updated from transifexNextcloud bot2018-11-272-2/+2
|
* Rollback to default list viewJohn Molakvoæ (skjnldsv)2018-11-151-1/+1
| | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* Merge pull request #12447 from nextcloud/bugfix/12446/fix-oracle-install-againMorris Jobke2018-11-151-1/+1
|\ | | | | Shorten index name of calendar changes table
| * Shorten index name of calendar changes tableJoas Schilling2018-11-141-1/+1
| | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | [tx-robot] updated from transifexNextcloud bot2018-11-152-0/+14
|/
* Add grid toggle for every files viewJohn Molakvoæ (skjnldsv)2018-11-062-1/+9
| | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* [tx-robot] updated from transifexNextcloud bot2018-11-062-0/+2
|
* [tx-robot] updated from transifexNextcloud bot2018-11-052-0/+14
|
* [tx-robot] updated from transifexNextcloud bot2018-11-042-0/+14
|
* Add test OCA\Files_Trashbin\CapabilitiesUnknown2018-11-011-0/+44
|
* Add getExtension() to FileInfoRobin Appelman2018-10-291-0/+4
| | | | | | | this is a fairly common operation so it makes sense to prevent having to repeatedly implement it. Signed-off-by: Robin Appelman <robin@icewind.nl>
* [tx-robot] updated from transifexNextcloud bot2018-10-292-0/+10
|
* Merge pull request #11573 from nextcloud/gridview-tableMorris Jobke2018-10-242-2/+2
|\ | | | | Files grid view
| * Merge branch 'master' of https://github.com/nextcloud/server into gridview-tableJohn Molakvoæ (skjnldsv)2018-10-231-1/+5
| |\ | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
| * | Use grid view in other file views tooJan-Christoph Borchardt2018-10-182-2/+2
| | | | | | | | | | | | Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
* | | Merge pull request #11439 from nextcloud/trash-modular-apiMorris Jobke2018-10-2327-479/+1027
|\ \ \ | | | | | | | | Modular trashbin api
| * | | store user for trashitem in the trashitemRobin Appelman2018-10-1710-68/+50
| | | | | | | | | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
| * | | remove user parameter from `ITrashItem::getOriginalLocation`Robin Appelman2018-10-173-9/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | since the target user is known at the time of creating the trashitem the original location can already be adjusted on a per user level Signed-off-by: Robin Appelman <robin@icewind.nl>
| * | | fix trash storage wrapper testsRobin Appelman2018-10-171-0/+3
| | | | | | | | | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
| * | | fix preview controller testsRobin Appelman2018-10-171-4/+29
| | | | | | | | | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
| * | | fix error message for folder preview requestRobin Appelman2018-10-171-4/+4
| | | | | | | | | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
| * | | fix trashbin previews for modular apiRobin Appelman2018-10-174-40/+78
| | | | | | | | | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
| * | | fix select statementRobin Appelman2018-10-1723-434/+935
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fix select statement Make trashbin api modules Apps can register trashbin backends for specific storages, allowing them to modify trashbin behavior for storages The old trashbin implementation has been wrapped in a "legacy" backend, for future work this can be replaced with a new backend that better handles shares while still keeping the legacy backend around to keep existing trash from being accessible Signed-off-by: Robin Appelman <robin@icewind.nl>
* | / [tx-robot] updated from transifexNextcloud bot2018-10-232-2/+2
| |/ |/|
* | Fix opening a section again in the Files appDaniel Calviño Sánchez2018-10-211-1/+5
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | When a section is open in the Files app a "show" event is triggered. File list objects handle that event by reloading themselves, but only if the file list was shown at least once. However, the file list objects of plugins are created when the "show" event is triggered for the first time for their section; as the file list objects register their handler for the "show" event when they are created they never handle the first triggered "show" event, as the handler is set while that event is being already handled. Therefore, from the point of view of the handler, the second time that a "show" event was triggered it was seen as if the file list was shown for the first time, and thus it was not reloaded. Now the "shown" property is explicitly set for those file lists that are created while handling a "show" event, which causes them to be reloaded as expected when opening their section again. Note that it is not possible to just reload the file list whenever it is shown; the file list is reloaded also when the directory changes, and this can happen when the web page is initially loaded and the URL is parsed. In that case, if file lists were reloaded when shown for the first time then it could be reloaded twice, one with the default parameters due to the "show" event and another one with the proper parameters once the URL was parsed, and the files that appeard in the list would depend on which response from the server was received the last. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* Fix mock of ITimeFactoryJoas Schilling2018-10-101-42/+12
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Fix usage of deprecated OC.webrootChristoph Wurst2018-10-091-8/+8
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* [tx-robot] updated from transifexNextcloud bot2018-10-072-0/+10
|
* [tx-robot] updated from transifexNextcloud bot2018-10-052-0/+2
|
* [tx-robot] updated from transifexNextcloud bot2018-10-042-4/+4
|
* [tx-robot] updated from transifexNextcloud bot2018-10-034-0/+20
|
* [tx-robot] updated from transifexNextcloud bot2018-10-024-0/+20
|
* [tx-robot] updated from transifexNextcloud bot2018-10-018-4/+34
|
* [tx-robot] updated from transifexNextcloud bot2018-09-3010-0/+50
|
* [tx-robot] updated from transifexNextcloud bot2018-09-29138-552/+552
|
* Merge pull request #11037 from nextcloud/trash-webui-davMorris Jobke2018-09-2817-710/+387
|\ | | | | Use trashbin dav endpoint to list trash in webui
| * fix trashbin js testsRobin Appelman2018-09-261-143/+141
| | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
| * use dav trashbin api for restoreRobin Appelman2018-09-202-48/+33
| | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
| * use dav trash api for removing from trashbinRobin Appelman2018-09-202-73/+67
| | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
| * remove old trashbin apiRobin Appelman2018-09-204-232/+0
| | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
| * remove old trashbin endpointRobin Appelman2018-09-202-50/+0
| | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
| * Use trashbin dav endpoint to list trash in webuiRobin Appelman2018-09-201-43/+39
| | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
| * expose additional props from trashbin sabre endpointRobin Appelman2018-09-209-130/+116
| | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | [tx-robot] updated from transifexNextcloud bot2018-09-262-2/+2
| |
* | [tx-robot] updated from transifexNextcloud bot2018-09-254-8/+10
| |
* | [tx-robot] updated from transifexNextcloud bot2018-09-214-4/+8
|/
* [tx-robot] updated from transifexNextcloud bot2018-09-176-4/+8
|