summaryrefslogtreecommitdiffstats
path: root/apps/files_versions
Commit message (Collapse)AuthorAgeFilesLines
* Happy new year!Thomas Müller2016-01-1221-25/+29
|
* [tx-robot] updated from transifexJenkins for ownCloud2016-01-092-2/+8
|
* Merge pull request #21498 from owncloud/cleanup-OC_DBThomas Müller2016-01-071-5/+0
|\ | | | | Cleanup OC_DB methods
| * Remove OC_DB::dropTableMorris Jobke2016-01-071-5/+0
| |
* | Remove deprecated shipped flag from info.xml which has no use anymoreJoas Schilling2016-01-071-1/+0
| |
* | Add ownCloud min and max version for shipped appsJoas Schilling2016-01-071-1/+1
|/
* Removed deprecated OC_Helper::getSecureMimeTypeRoeland Jago Douma2015-12-181-1/+1
|
* Merge pull request #21268 from owncloud/cleanup-OC_Helper-getFileNameMimeTypeThomas Müller2015-12-181-1/+1
|\ | | | | Use proper public API for OC_Helper::getFileNameMimeType
| * Use proper public API for OC_Helper::getFileNameMimeTypeMorris Jobke2015-12-171-1/+1
| |
* | Removed deprecated function OC_User::deleteUserRoeland Jago Douma2015-12-171-2/+4
|/ | | | Replaced with proper OCP calls
* Deduplicate version expire jobsMorris Jobke2015-12-102-37/+10
| | | | | | * versionSize is calculated anyway in the expire job - > dropped * offset/neededSpace was needed for expiry before the file is moved to the versions -> now this is included already in the currently used space because the expiry job is defered to a point in time after the version creation * fixes #21108
* Scrutinizer Auto-FixesScrutinizer Auto-Fixer2015-12-071-1/+1
| | | | This commit consists of patches automatically generated for this project on https://scrutinizer-ci.com
* Add DB group to some files_external testsThomas Müller2015-11-302-0/+14
| | | | | | | | | | Adding group Db to federation tests and ldap tests Add group DB to Test_UrlGenerator Adding group DB to trashbin and versions tests Adding group DB to Test_Util_CheckServer for pg
* Adding more DB groups to test suitsThomas Müller2015-11-301-0/+2
| | | | Adding more DB groups to test suits
* Merge pull request #20439 from owncloud/etag-propagate-in-storageThomas Müller2015-11-251-1/+0
|\ | | | | Take submount etag into account for folder etags
| * update testsRobin Appelman2015-11-191-1/+0
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2015-11-212-2/+4
|/
* Update license headersLukas Reschke2015-10-265-4/+5
|
* Throw exception on `getPath` if file does not existLukas Reschke2015-10-252-4/+17
| | | | | | | | | | Currently the `getPath` methods returned `NULL` in case when a file with the specified ID does not exist. This however mandates that developers are checking for the `NULL` case and if they do not the door for bugs with all kind of impact is widely opened. This is especially harmful if used in context with Views where the final result is limited based on the result of `getPath`, if `getPath` returns `NULL` PHP type juggles this to an empty string resulting in all possible kind of bugs. While one could argue that this is a misusage of the API the fact is that it is very often misused and an exception will trigger an immediate stop of execution as well as log this behaviour and show a pretty error page. I also adjusted some usages where I believe that we need to catch these errors, in most cases this is though simply an error that should hard-fail.
* Merge pull request #17641 from owncloud/fix_objectstore_renameJörn Friedrich Dreyer2015-10-192-12/+28
|\ | | | | don't move files in cache twice, fixes renaming for objectstores
| * Fix rename shared versions testRobin Appelman2015-10-161-3/+2
| |
| * handle versions expire for home storages with unlimited quotaRobin Appelman2015-10-161-8/+12
| |
| * Fix preserving file ids when restoring a file with object storageRobin Appelman2015-10-161-1/+14
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2015-10-182-2/+2
| |
* | Increase the 2nd digit of shipped appsJoas Schilling2015-10-172-2/+4
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2015-10-172-12/+12
|/
* test objectstore with ceph dockerJörn Friedrich Dreyer2015-10-061-1/+1
| | | | | | | | | | | | | | | | use default config for swift primary storage test config allow testsuite to complete fix timeout, script cleanup, enable debug for now use btrfs loopback device, requires privileged container and absolute path throw exception when storage has problems debug by echo ... sleep more, more debug
* Merge pull request #19595 from owncloud/fix-versions-log-entryThomas Müller2015-10-061-1/+1
|\ | | | | Reset to auto if not set
| * Reset to auto if not setVictor Dubiniuk2015-10-051-1/+1
| |
* | update licence headers via scriptMorris Jobke2015-10-0510-1/+11
|/
* [tx-robot] updated from transifexJenkins for ownCloud2015-10-032-0/+12
|
* Lock files when rolling back versionRobin Appelman2015-10-021-0/+9
|
* Merge pull request #19523 from owncloud/fix-seconds-agoThomas Müller2015-10-021-1/+1
|\ | | | | Fix moment.js "a few seconds ago" with "seconds ago"
| * Fix moment.js "a few seconds ago" with "seconds ago"Morris Jobke2015-10-021-1/+1
| | | | | | | | * fixes #18627
* | Reload versions list after revertVincent Petry2015-10-012-2/+13
|/
* Hide sidebar tab headers conditionallyVincent Petry2015-09-281-0/+12
| | | | | Added canDisplay() in DetailsTabView that should return false if the tab header of this tab must be hidden
* Fix tabs order in files sidebarVincent Petry2015-09-282-1/+2
|
* Add the method to the mockJoas Schilling2015-09-251-0/+1
|
* Merge pull request #15098 from owncloud/fix_preview_versions_revert_issueThomas Müller2015-09-242-0/+40
|\ | | | | fix issue with version rollback and thumbnails
| * delete cached preview when rolling back file's versionGeorg Ehrke2015-09-202-0/+40
| | | | | | | | | | | | | | | | add random number using OC.parseQueryString and _.extend() version rollback: add missing prefix to OC\Preview::post_delete add test to assure that the rollback hook is called
* | Move dummy backend to Tests namespaceLukas Reschke2015-09-221-1/+1
|/
* Merge pull request #18724 from owncloud/expiration-cronjobThomas Müller2015-09-186-1/+171
|\ | | | | Versions expiration cronjob
| * Correct method title. Add docblockVictor Dubiniuk2015-09-162-2/+6
| |
| * Postrebase cleanupVictor Dubiniuk2015-09-152-16/+3
| |
| * Add expiration for versions older than maxVictor Dubiniuk2015-09-156-1/+180
| |
* | Merge pull request #19121 from owncloud/sidebar-design-detailsThomas Müller2015-09-172-12/+6
|\ \ | | | | | | fix Files sidebar layout of Versions and Sharing
| * | fix sidebar Versions layoutJan-Christoph Borchardt2015-09-172-12/+6
| |/
* / [tx-robot] updated from transifexJenkins for ownCloud2015-09-17118-236/+236
|/
* Follow PSRVictor Dubiniuk2015-09-151-0/+0
|
* Add method docblockVictor Dubiniuk2015-09-151-0/+4
|