summaryrefslogtreecommitdiffstats
path: root/apps
Commit message (Collapse)AuthorAgeFilesLines
* Fixed SFTP storage to overwrite on renameVincent Petry2013-11-261-0/+3
|
* Merge pull request #6008 from owncloud/extstorage-smb-webdav-renamefixVincent Petry2013-11-262-2/+16
|\ | | | | Fixed SMB rename function to overwrite target file
| * Fixed SMB rename function to overwrite target fileVincent Petry2013-11-252-2/+16
| | | | | | | | | | | | | | | | | | | | | | When uploading files through WebDAV, a part file is created and a rename operation is performed with the expectation that the part file overwrites an existing file, if any. This fix makes the SMB external storage delete the target file before renaming, as smbclient doesn't support overwrite on move/rename. Fixes #5348
* | Merge pull request #6054 from owncloud/extstorage-dropboxfixesMorris Jobke2013-11-262-12/+60
|\ \ | | | | | | Fixed various Dropbox issues + unit tests
| * | Fixed various Dropbox issues + unit testsVincent Petry2013-11-262-12/+60
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - fixed touch function to return true on success - fixed local metadata cache to remove deleted files/directories - fixed getMetaData() to ignore files reported as deleted by Dropbox - fixed "file not found" case to not log as exception - fixed "overwrite on rename" case - fixed unit tests to exclude unsupported cases - added unit test for touch return value - unit tests for Dropbox should all run correctly now
* | | Updated unit tests for SMBVincent Petry2013-11-261-0/+5
| | | | | | | | | | | | | | | - coverage for touch return value - fixed directory provider to exclude unsupported cases
* | | Return true when touch succeedsVincent Petry2013-11-261-0/+1
|/ /
* | [tx-robot] updated from transifexJenkins for ownCloud2013-11-264-0/+8
| |
* | Merge branch 'master' into calc_version_sizeBjoern Schiessle2013-11-2662-187/+489
|\ \
| * | Fixed FTP storage unit tests to use the correct classVincent Petry2013-11-251-4/+4
| | |
| * | Merge pull request #5641 from owncloud/filestrash-emptytrashBjörn Schießle2013-11-255-26/+77
| |\ \ | | | | | | | | Deleting all files in trash now only sends a single flag
| | * | Deleting all files in trash now only sends a single flagVincent Petry2013-11-115-26/+77
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | To prevent having to send the list of all files for deletion, only set a flag "allfiles". This should make it a bit smoother when deleting 5000+ files. Also fixes some "empty trash" message issues.
| * | | Fixed ext storage touch function to return true on successVincent Petry2013-11-253-3/+8
| | |/ | |/| | | | | | | | | | | | | | | | Some ext storage impl didn't return true on success. Fixes #5943 (Dropbox) Fixes #6010 (WebDAV)
| * | Merge pull request #5991 from owncloud/extstorage-mountpointvalidationMorris Jobke2013-11-252-0/+56
| |\ \ | | | | | | | | Prevent using root as mount point for external storage
| | * | Now also preventing the user of "Shared" as mountpointVincent Petry2013-11-222-2/+4
| | | |
| | * | Added unit test for root mount point validationVincent Petry2013-11-211-0/+49
| | | |
| | * | Prevent using root as mount point for external storageVincent Petry2013-11-211-0/+5
| | | | | | | | | | | | | | | | Fixes #5981
| * | | Merge pull request #5995 from owncloud/extstorage-isreadablefixVincent Petry2013-11-247-52/+0
| |\ \ \ | | | | | | | | | | Return plausible isReadable() default impl for ext storage
| | * | | Moved default isReadable/isUpdatable impl into Common classVincent Petry2013-11-227-57/+0
| | | | | | | | | | | | | | | | | | | | | | | | | Also adjusted all ext storage backends to not override these when the default behavior is expected.
| | * | | Return plausible isReadable() default impl for ext storageVincent Petry2013-11-221-2/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When an ext storage doesn't implement isReadable(), always returning true made the file scanner believe that the file exists and creates a cache entry with the size zero. This fix makes the default impl of isReadable() use file_exists(). Fixes #5940
| * | | | [tx-robot] updated from transifexJenkins for ownCloud2013-11-248-4/+25
| |/ / /
| * | | fixed documentationThomas Müller2013-11-221-1/+1
| | | |
| * | | [tx-robot] updated from transifexJenkins for ownCloud2013-11-215-1/+7
| | | |
| * | | Merge pull request #5970 from owncloud/extstorage-webdavdotdirfixVincent Petry2013-11-211-5/+3
| |\ \ \ | | | | | | | | | | Fixed path normalization to prevent dot dirs
| | * | | Fixed path normalization to prevent dot dirsVincent Petry2013-11-211-5/+3
| | | | | | | | | | | | | | | | | | | | | | | | | Fixes #5945 where stat(.) would cause the backend OC to cache a dot dir (only in older versions)
| * | | | [tx-robot] updated from transifexJenkins for ownCloud2013-11-2124-53/+170
| | | | |
| * | | | Merge pull request #5715 from owncloud/quota-sharing-wrapotherusershomeVincent Petry2013-11-211-0/+15
| |\ \ \ \ | | |_|/ / | |/| | | Quota storage wrapper is now used for all users in sharing mode
| | * | | Quota storage wrapper is now used for all users in sharing modeVincent Petry2013-11-211-0/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When accessing a shared folder, the folder's owner appears as mountpoint but wasn't wrapped by a quota storage wrapper. This fix makes sure that all home storages are wrapped by a quota storage wrapper, if applicable, to make sure quotas are respected when uploading into shared folders.
| * | | | Merge pull request #5988 from owncloud/files-mobilequickfixMorris Jobke2013-11-211-0/+3
| |\ \ \ \ | | |_|/ / | |/| | | Added min width to files table
| | * | | Added min width to files tableVincent Petry2013-11-211-0/+3
| | |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Having a too small widths for the files table doesn't make sense as it overlaps file actions with the files themselves and make them unclickable, especially when viewed on mobile phone. The compromise that this fix introduces is to have a minimum width that will trigger horizontal scrolling, which will at least make it possible to click files on mobile phones.
| * | | Merge pull request #5979 from owncloud/fix5881blizzz2013-11-211-1/+1
| |\ \ \ | | | | | | | | | | LDAP Wizard: add objectclass for group detection in Zimbra
| | * | | LDAP Wizard: add objectclass for group detection in ZimbraArthur Schiwon2013-11-211-1/+1
| | |/ /
| * | | disable trahs in files_sharing/public.phpBjoern Schiessle2013-11-212-1/+2
| | | |
| * | | fix undefined index errors if public share viewBjoern Schiessle2013-11-212-2/+9
| |/ /
| * | Merge pull request #5897 from hkjolhede/masterVincent Petry2013-11-211-6/+8
| |\ \ | | | | | | | | Fixed error-checking error in sftp.php
| | * | Fixed error-checking error in sftp.phphkjolhede2013-11-151-6/+8
| | | |
| * | | Fixed move operation to pass the whole URL as expectedVincent Petry2013-11-201-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The MOVE and COPY spec expect the "Destination" header to receive the full URL, not only the root. Fixes #5942
| * | | Merge pull request #5967 from owncloud/encryption-extstorage-fixsizeresetVincent Petry2013-11-202-1/+5
| |\ \ \ | | | | | | | | | | Fix for extstorage + encryption where unencrypted size is not kept
| | * | | Fix for extstorage + encryption where unencrypted size is not keptVincent Petry2013-11-202-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix for external storage with encryption where the unencrypted size is first written in the DB, then set back to zero, causing performance issue because the file needs to be reopened every time to find out the unencrypted size (and potentially needs a full redownload)
| * | | | check if it is a cached file or a version to resolve the correct path to the ↵Bjoern Schiessle2013-11-201-1/+5
| | | | | | | | | | | | | | | | | | | | file key
| * | | | only check if the key file exists to decide if it is an encrypted file or not.Bjoern Schiessle2013-11-204-25/+17
| |/ / / | | | | | | | | | | | | This solves problems with external storage which doesn't support fseek
| * | | make sure that the owners home is mounted correctlyBjoern Schiessle2013-11-191-0/+4
| | | |
| * | | Fixed SMB file deletion success detectionVincent Petry2013-11-191-0/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Since unlink() smb4php doesn't return true on deletion success, we need to check whether the file was deleted to confirm success. Fixes #5866
| * | | Removing trailing dot in path that samba doesn't seem to likeVincent Petry2013-11-192-1/+47
| | | | | | | | | | | | | | | | | | | | Fixes #5778 Added unit test for getId() and constructUrl()
| * | | Fixed delete action to show error message as notificationVincent Petry2013-11-191-1/+11
| | | |
* | | | remove unused variableBjoern Schiessle2013-11-221-2/+0
| | | |
* | | | use oc filesystem operations to calc the versions size. This makes sure that ↵Bjoern Schiessle2013-11-191-12/+13
|/ / / | | | | | | | | | we can handle missing directories correctly
* | | Merge pull request #5916 from owncloud/extstorage-smb-ignorenetbioserrorMorris Jobke2013-11-181-1/+8
|\ \ \ | | | | | | | | SMB ignore connection errors when NetBIOS is disabled
| * | | SMB ignore connection errors when NetBIOS is disabledVincent Petry2013-11-181-1/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When NetBIOS is blocked or disabled, a smb::look() call can still get the list of shares from smbclient, even though the name resolution at the end of the command fails. This fix makes it ignore the connection error if we already got the list of shares. Fixed #5860
* | | | Merge pull request #5923 from owncloud/font-weightJan-Christoph Borchardt2013-11-181-0/+1
|\ \ \ \ | | | | | | | | | | change bold 'deleted files' button to normal for less focus