Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
our_own_cloud_project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
die_coolen_jungs
our_own_cloud_project
Commits
01d203c7
Commit
01d203c7
authored
12 years ago
by
Björn Schießle
Browse files
Options
Downloads
Patches
Plain Diff
add explenation of the expire function to the apps description
parent
032c5427
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
apps/files_trashbin/appinfo/info.xml
+14
-1
14 additions, 1 deletion
apps/files_trashbin/appinfo/info.xml
apps/files_versions/appinfo/info.xml
+19
-1
19 additions, 1 deletion
apps/files_versions/appinfo/info.xml
with
33 additions
and
2 deletions
apps/files_trashbin/appinfo/info.xml
+
14
−
1
View file @
01d203c7
...
...
@@ -2,7 +2,20 @@
<info>
<id>
files_trashbin
</id>
<name>
Deleted files
</name>
<description>
Keep a copy of deleted files so that they can be restored if needed
</description>
<description>
ownCloud keeps a copy of your deleted files in case you need them again.
To make sure that the user doesn't run out of memory the deleted files app
manages the size of the deleted files for the user. By default deleted files
stay in the trash bin for 180 days. ownCloud checks the age of the files
every time a new files gets moved to the deleted files and remove all files
older than 180 days. The user can adjust this value in the config.php by
setting the "trashbin_retention_obligation" value.
Beside that the delted files app take care to never use more that 50% of
your currently available free space. If your deleted files exceed this limit
ownCloud deletes the oldest versions until it meets the memory usage limit
again.
</description>
<licence>
AGPL
</licence>
<author>
Bjoern Schiessle
</author>
<shipped>
true
</shipped>
...
...
This diff is collapsed.
Click to expand it.
apps/files_versions/appinfo/info.xml
+
19
−
1
View file @
01d203c7
...
...
@@ -6,7 +6,25 @@
<author>
Frank Karlitschek
</author>
<require>
4.93
</require>
<shipped>
true
</shipped>
<description>
Versioning of files
</description>
<description>
ownCloud supports simple version control for files. The versioning app
expires old versions automatically to make sure that
the user doesn't run out of space. Following pattern is used to delete
old versions:
For the first 10 seconds ownCloud keeps one version every 2 seconds;
For the first hour ownCloud keeps one version every minute;
For the first 24 hours ownCloud keeps one version every hour;
For the first 30 days ownCloud keeps one version every day;
After the first 30 days ownCloud keeps one version every week.
The versions are adjusted along this pattern every time a new version gets
created.
Beside that the version app takes care to never use more that 50% of the users
currently available free space. If the stored versions exceed this limit
ownCloud deletes the oldest versions until it meets the memory usage limit
again.
</description>
<types>
<filesystem/>
</types>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment