Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?xml version="1.0"?>
  2. <!--
  3. - SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
  4. - SPDX-FileCopyrightText: 2013-2016 owncloud, Inc.
  5. - SPDX-License-Identifier: AGPL-3.0-only
  6. -->
  7. <info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
  8. xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
  9. <id>files_trashbin</id>
  10. <name>Deleted files</name>
  11. <summary>This application enables people to restore files that were deleted from the system.</summary>
  12. <description>
  13. This application enables people to restore files that were deleted from the system. It displays a list of deleted files in the web interface, and has options to restore those deleted files back to the people file directories or remove them permanently from the system. Restoring a file also restores related file versions, if the versions application is enabled. When a file is deleted from a share, it can be restored in the same manner, though it is no longer shared. By default, these files remain in the trash bin for 30 days.
  14. To prevent an account from running out of disk space, the Deleted files app will not utilize more than 50% of the currently available free quota for deleted files. If the deleted files exceed this limit, the app deletes the oldest files until it gets below this limit. More information is available in the Deleted Files documentation.
  15. </description>
  16. <version>1.20.1</version>
  17. <licence>agpl</licence>
  18. <author>Bjoern Schiessle</author>
  19. <namespace>Files_Trashbin</namespace>
  20. <types>
  21. <filesystem/>
  22. <dav/>
  23. </types>
  24. <documentation>
  25. <user>user-trashbin</user>
  26. </documentation>
  27. <category>files</category>
  28. <bugs>https://github.com/nextcloud/server/issues</bugs>
  29. <dependencies>
  30. <nextcloud min-version="30" max-version="30"/>
  31. </dependencies>
  32. <background-jobs>
  33. <job>OCA\Files_Trashbin\BackgroundJob\ExpireTrash</job>
  34. </background-jobs>
  35. <commands>
  36. <command>OCA\Files_Trashbin\Command\CleanUp</command>
  37. <command>OCA\Files_Trashbin\Command\ExpireTrash</command>
  38. <command>OCA\Files_Trashbin\Command\Size</command>
  39. <command>OCA\Files_Trashbin\Command\RestoreAllFiles</command>
  40. </commands>
  41. <sabre>
  42. <collections>
  43. <collection>OCA\Files_Trashbin\Sabre\RootCollection</collection>
  44. </collections>
  45. <plugins>
  46. <plugin>OCA\Files_Trashbin\Sabre\TrashbinPlugin</plugin>
  47. </plugins>
  48. </sabre>
  49. <trash>
  50. <backend for="OCP\Files\Storage\IStorage">OCA\Files_Trashbin\Trash\LegacyTrashBackend</backend>
  51. </trash>
  52. </info>