aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_trashbin
Commit message (Collapse)AuthorAgeFilesLines
* Add proper default value for datadirMorris Jobke2017-01-191-1/+1
| | | | | | | * better safe than sorry * fixes #3091 Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* [tx-robot] updated from transifexNextcloud bot2017-01-172-6/+6
|
* [tx-robot] updated from transifexNextcloud bot2017-01-092-4/+8
|
* [tx-robot] updated from transifexNextcloud bot2017-01-054-2/+4
|
* Merge pull request #2819 from nextcloud/trash-ext-link-uselinkownerRoeland Jago Douma2016-12-231-0/+10
|\ | | | | Fallback to share link owner when no owner found
| * Fallback to share link owner when no owner foundVincent Petry2016-12-221-0/+10
| | | | | | | | | | | | | | | | | | | | | | | | When creating link shares from external storage, the filesystem cannot find an owner in some scenarios (ex: system-wide mounts). In such cases, fall back to using the current user's trashbin which happens to also be the user who created the link share. Fixes an issue where this scenario made deletion impossible due to missing user information. Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
* | make code more robustBjoern Schiessle2016-12-211-10/+25
| | | | | | | | Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
* | check for class name in case class is not loadedBjoern Schiessle2016-12-211-2/+1
| | | | | | | | Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
* | add a copy to the owners trash bin if another user moves a file out of a ↵Bjoern Schiessle2016-12-212-10/+67
|/ | | | | | shared folder Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
* Update app versions and requirementsJoas Schilling2016-12-131-2/+2
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* [tx-robot] updated from transifexNextcloud bot2016-12-032-6/+6
|
* fix mouse pointerBjoern Schiessle2016-12-011-1/+5
| | | | Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
* [tx-robot] updated from transifexNextcloud bot2016-11-272-8/+6
|
* Use 11.0 instead 9.2Lukas Reschke2016-11-151-1/+1
| | | | | | As discussed we're changing the version from 9.2 to 11.0 to make some more sense. Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
* [tx-robot] updated from transifexNextcloud bot2016-11-122-2/+2
|
* More testsRoeland Jago Douma2016-11-032-5/+181
| | | | | | | | | * PreviewController test * PublicPreview test * Versions Preview test * Trash Preview test Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Move over files_trashbinRoeland Jago Douma2016-11-033-82/+134
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Move away from OC_L10NRoeland Jago Douma2016-10-281-1/+1
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* introduce callForSeenUsers and countSeenUsers (#26361)Jörn Friedrich Dreyer2016-10-282-4/+4
| | | | | | | | | | * introduce callForSeenUsers and countSeenUsers * add tests * oracle should support not null on clob * since 9.2.0
* [tx-robot] updated from transifexNextcloud bot2016-10-252-12/+12
|
* [tx-robot] updated from transifexNextcloud bot2016-10-182-0/+4
|
* [9.2] Register commands in info.xml (#26248)Thomas Müller2016-10-112-36/+5
| | | | | | | | | | | | * Use DI to load console commands from the apps - class name to be defined in the info.xml * Load commands from info.xml * Fix unit test * Allow Di magic for IMountManager Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Merge pull request #1534 from nextcloud/svg-optimizationLukas Reschke2016-09-281-55/+1
|\ | | | | Svgo optimization
| * Svgo optimizationskjnldsv2016-09-271-55/+1
| | | | | | | | Signed-off-by: John Molakvoæ <fremulon@protonmail.com>
* | Also fire a bulk pre- and post-delete hookSteven Bühner2016-09-201-3/+14
| |
* | Always use the same relative Path (Starting from users home dir. i.e.: ↵Steven Bühner2016-09-201-4/+7
| | | | | | | | "/files_trashbin/...")
* | Take the same path (with /USERNAME/ as base) for every emmited hooksSteven Bühner2016-09-201-2/+2
| |
* | Emit hooks for each file before and after all files in trashbin have been ↵Steven Bühner2016-09-201-23/+23
| | | | | | | | deleted.
* | Fiy typoSteven Bühner2016-09-201-1/+1
| |
* | Emit Hooks for each file bevore and after all files in trashbin have been ↵Steven Bühner2016-09-201-3/+32
|/ | | | deleted.
* [tx-robot] updated from transifexNextcloud bot2016-09-152-0/+6
|
* Merge pull request #1338 from nextcloud/fix-trashbin-errorsRoeland Jago Douma2016-09-131-0/+2
|\ | | | | Opening the trashbin causes errors in log for files without preview
| * Opening the trashbin causes errors in log for files without previewMorris Jobke2016-09-091-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * put a file without a generated preview in the trashbin (e.g. a *.docx file) * open the trashbin * following errors will show up in the nextcloud.log: - filesize(): stat failed for ... - fopen(...): failed to open stream: No such file or directory at ... - fread() expects parameter 1 to be resource, boolean given at ... - fclose() expects parameter 1 to be resource, boolean given at ... - imagecreatefromstring(): Empty string or invalid image at ... This is because the preview code tries to load an SVG image, which is obviously only text. The fix simply handles this before the loading happens and the web UI keeps showing the default mimetype icon.
* | detect the correct mimetype of the files in the trashbin, therefore we have ↵Bjoern Schiessle2016-09-091-2/+3
|/ | | | to check the filename without the appended timestamp
* [tx-robot] updated from transifexNextcloud bot2016-09-072-2/+2
|
* Fix getMock files_trashbinRoeland Jago Douma2016-09-062-3/+5
|
* [tx-robot] updated from transifexNextcloud bot2016-09-014-12/+12
|
* Add occ command to expire the trashbin (#25878)Thomas Müller2016-08-292-0/+133
| | | | | | * Add occ command to expire the trashbin * Fix versions folder in setup check
* Add viewBox to app iconsRoeland Jago Douma2016-08-171-0/+1
| | | | | If we don't add a viewbox a lot of browsers will just say NOPE!!! when we ask them to scale.
* Skip version and trash expiry for users that never logged inJörn Friedrich Dreyer2016-08-101-1/+1
|
* Increment the versions and adjust the capitilizationJoas Schilling2016-08-081-1/+1
|
* [tx-robot] updated from transifexNextcloud bot2016-08-072-2/+2
|
* Fix error message while restoring all filesMorris Jobke2016-07-251-2/+1
| | | | | * use $_POST['files'] only of ssinlge files are restored * fixes #528
* Also increase the min versionJoas Schilling2016-07-221-1/+1
|
* bumb compatible app versions for core appsRobin Appelman2016-07-221-1/+1
|
* Merge pull request #500 from nextcloud/bump_versionJoas Schilling2016-07-221-1/+1
|\ | | | | Bump version
| * Increase app versionsJoas Schilling2016-07-211-1/+1
| |
* | Update with robinJoas Schilling2016-07-219-9/+9
| |
* | Fix apps/Joas Schilling2016-07-2127-46/+73
|/
* [tx-robot] updated from transifexNextcloud bot2016-07-072-2/+2
|