Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Updating license headers | Jenkins for ownCloud | 2015-02-23 | 4 | -20/+74 |
| | |||||
* | adding getDirectDownload() to Wrapper | Thomas Müller | 2014-12-28 | 1 | -0/+12 |
| | |||||
* | Add storage and cache wrappers to apply a permissions mask to a storage | Robin Appelman | 2014-11-27 | 1 | -12/+21 |
| | |||||
* | Add storage and cache wrappers to jail a storage to a subfolder | Robin Appelman | 2014-11-27 | 2 | -0/+515 |
| | |||||
* | move to public namespace | Morris Jobke | 2014-08-19 | 1 | -2/+2 |
| | |||||
* | Fix STORAGE_* constants usage by moving those constants into ↵ | Stephan Peijnik | 2014-08-19 | 1 | -2/+2 |
| | | | | | | | | | | \OC\Files\Filesystem. As constants not defined within a class cannot be automatically found by the autoloader moving those constants into a class makes them accessible to code which uses them. Signed-off-by: Stephan Peijnik <speijnik@anexia-it.com> | ||||
* | Fix storage being passed to cache/watcher and scanner when using storage ↵ | Robin Appelman | 2014-06-14 | 1 | -6/+20 |
| | | | | wrappers | ||||
* | Merge pull request #8884 from owncloud/move-flock-to-app | Jörn Friedrich Dreyer | 2014-06-05 | 1 | -182/+0 |
|\ | | | | | remove file locking - code will continue to live in it's own app | ||||
| * | remove file locking - code will continue to live in it's own app | Thomas Müller | 2014-06-04 | 1 | -182/+0 |
| | | |||||
* | | - drop permissions table and related code | Thomas Müller | 2014-06-05 | 1 | -10/+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 | ||||
* | only lock if unlink is called for a file | Bjoern Schiessle | 2014-06-04 | 1 | -1/+3 |
| | |||||
* | Move Lock to private namespace, add interface. Update PHPDoc. | ringmaster | 2014-06-04 | 1 | -2/+2 |
| | |||||
* | Removed unused vars/declarations, update PHPDoc. | ringmaster | 2014-06-04 | 1 | -1/+2 |
| | |||||
* | Add actual locking and log changes necessary for debugging. | ringmaster | 2014-06-04 | 1 | -2/+48 |
| | |||||
* | Continued flock work. | ringmaster | 2014-06-04 | 1 | -20/+14 |
| | |||||
* | flock changes. Work in progress. | ringmaster | 2014-06-04 | 1 | -0/+139 |
| | |||||
* | Pass any methods custom to specific storage implementations to the wrapped ↵ | Robin Appelman | 2014-05-29 | 1 | -0/+11 |
| | | | | storage | ||||
* | Add $storage->instanceOfStorage to handle instanceof for storage wrappers | Robin Appelman | 2014-05-29 | 1 | -0/+10 |
| | |||||
* | Fix all PHPDoc types and variable names, in /lib | Robin McCorkell | 2014-05-13 | 1 | -1/+1 |
| | |||||
* | Still return quota value when free space is unknown | Vincent Petry | 2014-03-19 | 1 | -1/+8 |
| | | | | | | 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) | ||||
* | Merge pull request #7650 from owncloud/quota-totalspace | Vincent Petry | 2014-03-11 | 1 | -0/+7 |
|\ | | | | | Fixed total space display when data size exceeds quota | ||||
| * | Fixed total space display when data size exceeds quota | Vincent Petry | 2014-03-10 | 1 | -0/+7 |
| | | | | | | | | | | The total space display in the personal page now shows the quota value instead of used space when used space exceeds the quota (soft quota). | ||||
* | | Return unencrypted_size of folder when queried | Vincent Petry | 2014-03-07 | 1 | -0/+5 |
|/ | | | | | | 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 | ||||
* | Merge pull request #6962 from owncloud/quota-space-root | Thomas Müller | 2014-02-20 | 1 | -1/+7 |
|\ | | | | | Allow passing a root folder to get the used space from in the quota wrapper | ||||
| * | Actually rename the variable | Robin Appelman | 2014-01-27 | 1 | -2/+2 |
| | | |||||
| * | Fix phpdoc | Robin Appelman | 2014-01-27 | 1 | -1/+1 |
| | | |||||
| * | Allow passing a root folder to get the used space from in the quota wrapper | Robin Appelman | 2014-01-27 | 1 | -1/+7 |
| | | |||||
* | | Merge branch 'master' into scrutinizer_documentation_patches | Thomas Müller | 2014-02-14 | 1 | -0/+8 |
|\ \ | | | | | | | | | | | | | Conflicts: lib/private/appconfig.php | ||||
| * | | Added isLocal() method to storage, used for xsendfile | Vincent Petry | 2014-02-06 | 1 | -0/+8 |
| |/ | | | | | | | | | | | | | Added isLocal() method to Storage to find out whether the storage is local or not. This method is used for the x-sendfile logic to find out whether to add the headers. | ||||
* / | polish documentation based on scrutinizer patches | Jörn Friedrich Dreyer | 2014-02-06 | 1 | -0/+3 |
|/ | |||||
* | Fixed quota wrapper to not wrap failed fopen streams | Vincent Petry | 2014-01-19 | 1 | -1/+1 |
| | | | | | | | | | | | | When calling fopen() on some storage types, these return false instead of throwing an exception. This fix makes sure that in case the stream wasn't opened (for example when a file doesn't exist any more) the stream isn't wrapped. Also added 'rb' as another case that doesn't need to be wrapped. Fixes #6832 | ||||
* | Added unit test for the test() method | Vincent Petry | 2013-12-03 | 1 | -0/+8 |
| | | | | This is to make sure that method isn't broken | ||||
* | Fixed quota stream to not wrap read-only fopen calls | Vincent Petry | 2013-10-25 | 1 | -1/+1 |
| | |||||
* | move the private namespace OC into lib/private - OCP will stay in lib/public | Thomas Müller | 2013-09-30 | 2 | -0/+531 |
Conflicts: lib/private/vcategories.php |