Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge pull request #8968 from owncloud/scanner-parent-repair | Vincent Petry | 2014-06-12 | 1 | -2/+49 |
|\ | | | | | Repair broken parent link in the scanner | ||||
| * | Repair broken parent link in the scanner | Robin Appelman | 2014-06-10 | 1 | -2/+49 |
| | | |||||
* | | Use assertNotSame when checking etags | Vincent Petry | 2014-06-11 | 1 | -3/+3 |
|/ | | | | | Sometimes etags contain a "e" character which makes PHP believe it's a number and make the tests fail | ||||
* | Added hacky fix for long path cleanup routine | Vincent Petry | 2014-06-06 | 1 | -4/+9 |
| | |||||
* | use system function to recursive remove the directory used by temporary storage | Thomas Müller | 2014-06-06 | 1 | -1/+3 |
| | |||||
* | Merge pull request #8889 from owncloud/mtime-reuse | Thomas Müller | 2014-06-05 | 1 | -2/+2 |
|\ | | | | | Don't update the mtime if the storage mtime hasn't changed | ||||
| * | Fix uit tests | Robin Appelman | 2014-06-05 | 1 | -2/+2 |
| | | |||||
* | | Merge pull request #8852 from owncloud/kill-permissions-master | Thomas Müller | 2014-06-05 | 6 | -120/+0 |
|\ \ | |/ |/| | Kill permissions table | ||||
| * | - drop permissions table and related code | Thomas Müller | 2014-06-05 | 6 | -120/+0 |
| | | | | | | | | | | | | - the file/folder's permission is now stored in the file cache - BackGroundWatcher has been removed - this has meanwhile be replaced by occ files:scan which can be executed in a cron jobs - increase version to trigger database migration | ||||
* | | Merge pull request #8822 from owncloud/cache-change-propagator | Vincent Petry | 2014-06-04 | 4 | -21/+153 |
|\ \ | |/ |/| | [WIP] Improved propagation of cache changes | ||||
| * | Fix unit tests | Robin Appelman | 2014-06-04 | 2 | -12/+10 |
| | | |||||
| * | Fix unit tests | Robin Appelman | 2014-06-03 | 2 | -13/+19 |
| | | |||||
| * | propagate changes in the scanner | Robin Appelman | 2014-06-02 | 1 | -0/+56 |
| | | |||||
| * | Add a change propagator class to handle propagating etag and mtime changes | Robin Appelman | 2014-06-02 | 1 | -0/+72 |
| | | |||||
* | | Can't use assertInstanceOf on wrapped storage; use ↵ | ringmaster | 2014-06-04 | 1 | -5/+5 |
| | | | | | | | | assertTrue(instanceOfStorage() instead. | ||||
* | | fix unit test after adding the additional parameter to addStorageWrapper() | Bjoern Schiessle | 2014-06-04 | 1 | -1/+1 |
|/ | |||||
* | Add $storage->instanceOfStorage to handle instanceof for storage wrappers | Robin Appelman | 2014-05-29 | 3 | -0/+17 |
| | |||||
* | Merge pull request #3908 from owncloud/storage-folder-copy-rename | icewind1991 | 2014-05-29 | 2 | -1/+120 |
|\ | | | | | Recursive copy and remove for local storage backends | ||||
| * | fix illegal usage of unlink in test case | Robin Appelman | 2014-05-28 | 1 | -1/+1 |
| | | |||||
| * | add recursive copy to local storage backend | Robin Appelman | 2014-05-28 | 1 | -1/+64 |
| | | |||||
| * | fix recursive rename for local storage backend | Robin Appelman | 2014-05-28 | 1 | -0/+16 |
| | | |||||
| * | aditional test cases for copy and rename | Robin Appelman | 2014-05-28 | 1 | -0/+40 |
| | | |||||
* | | # This is a combination of 2 commits. | Thomas Müller | 2014-05-28 | 1 | -0/+121 |
|/ | | | | | | | | | | | | | # The first commit's message is: adding tests for long paths increment path field in database up to 4000 (maximum for Oracle - otherwise we could use php's 4096) increment version to trigger database migration adding unit test for too long path # This is the 2nd commit message: fix too long path | ||||
* | Remove all occurences of @brief and @returns from PHPDoc | Morris Jobke | 2014-05-19 | 1 | -2/+2 |
| | | | | * test case added to avoid adding them later | ||||
* | Add tests for other types that PHP might cast | Lukas Reschke | 2014-05-13 | 1 | -0/+2 |
| | | | Addition to https://github.com/owncloud/core/pull/8572 | ||||
* | Fixed getAbsolutePath case when path is "0" | Vincent Petry | 2014-05-13 | 1 | -0/+18 |
| | | | | | Make sure to correctly check for string emptiness when the passed path is "0". | ||||
* | Remove unneccessary statement from test | Joas Schilling | 2014-04-29 | 1 | -2/+0 |
| | |||||
* | Update tests to test for create and update aswell | Joas Schilling | 2014-04-29 | 1 | -13/+35 |
| | |||||
* | Merge pull request #7970 from owncloud/webdav-upload-hash | Thomas Müller | 2014-04-03 | 1 | -1/+20 |
|\ | | | | | Fix uploading files containing a # in the path for webdav | ||||
| * | Fix uploading files containing a # in the path for webdav | Robin Appelman | 2014-03-31 | 1 | -1/+20 |
| | | |||||
* | | Correctly read the full stream in file_get_contents | Vincent Petry | 2014-04-01 | 1 | -2/+13 |
|/ | | | | | | | | | | | When using user-defined stream wrappers, PHP will return a maximum of 8192 bytes even if more was requested. This fix uses stream_get_contents to make sure the full stream is read and not only the first 8 KB. Added unit test with a bigger test file to cover this case. | ||||
* | Merge pull request #7824 from owncloud/hash-parameter-order | Thomas Müller | 2014-03-28 | 1 | -15/+32 |
|\ | | | | | Fix parameter order for Storage\Local::hash | ||||
| * | Fix parameter order for Storage\Local::hash | Robin Appelman | 2014-03-20 | 1 | -15/+32 |
| | | |||||
* | | Merge pull request #7829 from owncloud/cachefolderlocation | Vincent Petry | 2014-03-28 | 1 | -0/+51 |
|\ \ | | | | | | | Cache folder is now configurable | ||||
| * | | Added unit tests for external cache folder | Vincent Petry | 2014-03-24 | 1 | -0/+51 |
| | | | |||||
* | | | Merge pull request #7420 from owncloud/cachehooks-first | Thomas Müller | 2014-03-25 | 1 | -5/+0 |
|\ \ \ | | | | | | | | | Manually triger the filecache update hooks before any other hook | ||||
| * \ \ | Merge branch 'master' into cachehooks-first | Robin Appelman | 2014-03-13 | 5 | -31/+104 |
| |\ \ \ | | | |/ | | |/| | |||||
| * | | | Manually triger the filecache update hooks before any other hook | Robin Appelman | 2014-02-26 | 1 | -5/+0 |
| | | | | |||||
* | | | | Merge pull request #7477 from owncloud/foldersize-reuse | Thomas Müller | 2014-03-25 | 1 | -1/+0 |
|\ \ \ \ | |_|_|/ |/| | | | Allow re-using already known fileinfo when calculating folder sizes | ||||
| * | | | Merge branch 'master' into foldersize-reuse | Robin Appelman | 2014-03-11 | 1 | -0/+16 |
| |\ \ \ | | | |/ | | |/| | | | | | | | | | Conflicts: lib/private/files/cache/homecache.php | ||||
| * | | | Remove assert since the root size of the home storage is no longer calculated | Robin Appelman | 2014-03-03 | 1 | -1/+0 |
| | | | | |||||
* | | | | Still return quota value when free space is unknown | Vincent Petry | 2014-03-19 | 1 | -0/+18 |
| |/ / |/| | | | | | | | | | | | | | | Fixed the quota storage wrapper to correctly return the quota value when the free space is not known (which usually happens when the disk_free_space function is disabled) | ||||
* | | | Return unencrypted_size of folder when queried | Vincent Petry | 2014-03-07 | 1 | -0/+16 |
|/ / | | | | | | | | | | | This fixes the "used space" to be based on the unencrypted size, not encrypted size, to be consistent with how quota/space is handled when encryption is enabled | ||||
* | | initialize etags of temporary storage | Jörn Friedrich Dreyer | 2014-02-27 | 1 | -0/+1 |
| | | |||||
* | | use assertInternalType for typechecking | Jörn Friedrich Dreyer | 2014-02-27 | 2 | -29/+71 |
| | | |||||
* | | use assertSame and assertNotSame for etag checks | Jörn Friedrich Dreyer | 2014-02-27 | 3 | -10/+24 |
|/ | |||||
* | Merge pull request #6962 from owncloud/quota-space-root | Thomas Müller | 2014-02-20 | 1 | -3/+22 |
|\ | | | | | Allow passing a root folder to get the used space from in the quota wrapper | ||||
| * | Add unit test for quote wrapper size root | Robin Appelman | 2014-02-04 | 1 | -3/+22 |
| | | |||||
* | | Fixed ext storage webdav path encoding | Vincent Petry | 2014-02-19 | 1 | -0/+19 |
| | | | | | | | | | | | | | | | | | | | | | | | | - Some WebDAV servers like lighttpd need paths in URLs to be properly encoded - Added error log output when curl connection failed - Added check for 'resourcetype' in case the WebDAV server doesn't support/return it - Fixed touch() to return false if the server doesn't implement PROPPATCH - Added optional delay in WebDAV unit tests to use when testing against lighttpd's WebDAV | ||||
* | | Merge pull request #7274 from owncloud/scrutinizer-patch-1 | Morris Jobke | 2014-02-19 | 7 | -4/+18 |
|\ \ | | | | | | | Scrutinizer Auto-Fixes |