aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/sharedstorage.php
Commit message (Collapse)AuthorAgeFilesLines
* add touch() to all storage backands, and make parameter optionalRobin Appelman2012-02-291-1/+7
|
* merge master into encryptionRobin Appelman2012-02-261-9/+1
|\
| * missed one is_writeableRobin Appelman2012-02-261-1/+1
| |
| * chunked implementation for readfileRobin Appelman2012-02-261-8/+0
| | | | | | | | prevents memory issues when downloading large files
* | add stream wrapper for in-memory files and dont use global variables for the ↵Robin Appelman2012-02-211-2/+1
|/ | | | fakedir stream wrapper
* Fix wrong var name in sharedstorage.phpBart Visscher2012-02-081-2/+2
|
* writable not writeableRobin Appelman2012-02-051-5/+5
|
* dont try to use the filesystem when it isnt setup yetRobin Appelman2012-01-311-1/+1
|
* merge master into filesystemRobin Appelman2012-01-081-13/+11
|\
| * Fix return for empty Shared folder in opendir()Michael Gapczynski2012-01-011-12/+8
| |
| * make the sharing app return the corrrect result for is_writable on the ↵Robin Appelman2011-12-161-1/+3
| | | | | | | | shared folder
* | tell the user when the files are being scannedRobin Appelman2011-11-101-23/+6
| |
* | provide caching for file metadataRobin Appelman2011-11-091-6/+6
| |
* | remove OC_Filesystem::fromUploadedFileRobin Appelman2011-11-081-16/+0
| |
* | remove OC_Filesystem::fileatimeRobin Appelman2011-11-081-22/+0
| |
* | remove the need to register storage providers, pass the classname during ↵Robin Appelman2011-11-081-1/+1
|/ | | | mounting instead
* make sharing work with the new mouting mechanismRobin Appelman2011-10-181-7/+5
|
* Check that the files exist before adding them to the fakedirsMichael Gapczynski2011-08-221-15/+16
|
* One more bug fix in clearFolderSizeCache()Michael Gapczynski2011-08-201-1/+2
|
* Clean-up in OC_Filestorage_Shared and bug fixes for calculating folder sizesMichael Gapczynski2011-08-201-22/+35
|
* Fix bugs preventing file upload in shared folders with write permissionMichael Gapczynski2011-08-201-5/+9
|
* Implement searching of files shared with youMichael Gapczynski2011-08-201-3/+19
|
* Add getLocalFile() to OC_Filestorage_SharedMichael Gapczynski2011-08-191-0/+8
|
* Remove no longer needed functions in OC_Filestorage_SharedMichael Gapczynski2011-08-191-44/+0
|
* Comment rename() and prevent trying to move items if the user doesn't have ↵Michael Gapczynski2011-08-171-0/+6
| | | | write permission
* Bug fixes for mkdir(), renaming/moving support for files inside a shared ↵Michael Gapczynski2011-08-171-8/+10
| | | | folder with write permission
* -1 is now a class constant (UNSHARED), for unsharing files from selfMichael Gapczynski2011-08-171-1/+1
|
* New system of unsharing files from self, and a small bug fix when all files ↵Michael Gapczynski2011-08-171-9/+13
| | | | inside a shared folder are unshared from self
* Fix my last commit 9ee4fcMichael Gapczynski2011-08-171-2/+4
|
* Only show 'Shared' directory if files are shared with youMichael Gapczynski2011-08-171-1/+3
|
* Fix bug in getPermissions() and clean-up unlink() and rename()Michael Gapczynski2011-08-171-37/+27
|
* This should actually make the 'Shared' directory automatically everytimeMichael Gapczynski2011-08-151-0/+1
|
* Automatic creation of 'Shared' directory, bug fixes for an empty 'Shared' ↵Michael Gapczynski2011-08-151-18/+24
| | | | directory
* Fix delTree(), it shouldn't be passed to the local storage provider unless ↵Michael Gapczynski2011-07-311-9/+25
| | | | the user has delete permission
* Update the folder sizes for shared foldersMichael Gapczynski2011-07-311-12/+29
|
* Merge branch 'master' into sharing. Integrate with changes in master, rename ↵Michael Gapczynski2011-07-301-48/+46
| | | | | | | classes Conflicts: lib/base.php
* Revise permissions system to support read, write, and deleteMichael Gapczynski2011-07-301-26/+52
|
* Bug fixes for unshare() and opendir(), thanks darkhMichael Gapczynski2011-07-241-0/+3
|
* Filter out files you unshare from yourself in opendir()Michael Gapczynski2011-07-231-2/+10
|
* Change all occurences of ['user_id'] to OC_USER::getUser()Michael Gapczynski2011-07-201-2/+2
|
* Add extra check for opendir() so it only adds the file to fakedirs if it has ↵Michael Gapczynski2011-07-161-2/+2
| | | | a different name than the source
* Add return true to unlink() and rename(), a return is expected by OC_FILESYSTEMMichael Gapczynski2011-07-161-0/+2
|
* Fix bug in rename() so files in a folder that is in a shared folder also get ↵Michael Gapczynski2011-07-161-0/+3
| | | | their targets updated
* Fix bugs in opendir() and add extra checks to ensure functionality in all casesMichael Gapczynski2011-07-161-15/+30
|
* Fix bugs in unlink(), rename(), pullOutOfFolders(), and getItemsInFolder()Michael Gapczynski2011-07-161-4/+10
|
* Add pullOutOfFolder() function for use by unlink() and rename()Michael Gapczynski2011-07-141-4/+12
|
* Refactoring of OC_SHARE, added more documentation for functionsMichael Gapczynski2011-07-141-5/+9
|
* Add support for copying files between shared folders, add check to ↵Michael Gapczynski2011-07-131-9/+18
| | | | fromTmpFile() to confirm path is writeable
* Add checks in opendir() to prevent including the current directory or parentMichael Gapczynski2011-07-121-4/+6
|
* Fix bug in opendir() and remove getStorageMountPoint(), now using datadir ↵Michael Gapczynski2011-07-121-16/+12
| | | | argument instead