Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix storage backend class namespaces and move to subdir | Robin McCorkell | 2016-04-14 | 1 | -396/+0 |
| | | | | | All classes that were previously \OC\Files\Storage\FooBar are now \OCA\Files_External\Lib\Storage\FooBar | ||||
* | properly use smb permissions | Robin Appelman | 2016-03-21 | 1 | -0/+22 |
| | |||||
* | handle connection errors as storage not available in smb | Robin Appelman | 2016-03-16 | 1 | -14/+40 |
| | |||||
* | Update author information | Lukas Reschke | 2016-03-01 | 1 | -0/+1 |
| | | | | Probably nice for the people that contributed to 9.0 to see themselves in the AUTHORS file :) | ||||
* | handle forbidden exceptions in smb backend | Robin Appelman | 2016-02-10 | 1 | -1/+18 |
| | |||||
* | Add credentials dialog for user provided auth | Jesús Macias | 2016-02-04 | 1 | -0/+13 |
| | |||||
* | Merge pull request #21648 from owncloud/smb-statcache-cap | Thomas Müller | 2016-01-13 | 1 | -1/+8 |
|\ | | | | | cap the number of entries we cache in smb's statcache | ||||
| * | cap the number of entries we cache in smb's statcache | Robin Appelman | 2016-01-12 | 1 | -1/+8 |
| | | |||||
* | | Happy new year! | Thomas Müller | 2016-01-12 | 1 | -2/+2 |
|/ | |||||
* | Check libsmbclient-php as well as smbclient binary | Robin McCorkell | 2016-01-07 | 1 | -2/+4 |
| | |||||
* | clear statcache after fopen for smb | Robin Appelman | 2015-12-15 | 1 | -2/+7 |
| | |||||
* | Scrutinizer Auto-Fixes | Scrutinizer Auto-Fixer | 2015-12-07 | 1 | -1/+0 |
| | | | | This commit consists of patches automatically generated for this project on https://scrutinizer-ci.com | ||||
* | Double slash for SMB storage id for compatibility | Vincent Petry | 2015-07-28 | 1 | -1/+4 |
| | |||||
* | Update license headers | Jenkins for ownCloud | 2015-03-26 | 1 | -4/+25 |
| | |||||
* | Revert "Updating license headers" | Morris Jobke | 2015-02-26 | 1 | -24/+5 |
| | | | | This reverts commit 6a1a4880f0d556fb090f19a5019fec31916f5c36. | ||||
* | Updating license headers | Jenkins for ownCloud | 2015-02-23 | 1 | -5/+24 |
| | |||||
* | make sure the root has a trailing slash | Robin Appelman | 2015-02-16 | 1 | -0/+3 |
| | |||||
* | handle deleting non existing files | Robin Appelman | 2015-02-16 | 1 | -7/+11 |
| | |||||
* | Use better way to check for the existence of smbclient | Robin Appelman | 2015-02-16 | 1 | -7/+2 |
| | |||||
* | New SMB storage backend | Robin Appelman | 2015-02-16 | 1 | -81/+213 |
| | |||||
* | Replace some more "command -v" calls with the Helper method | Joas Schilling | 2014-11-25 | 1 | -7/+2 |
| | |||||
* | Fix more missing or broken PHPDoc | Robin McCorkell | 2014-05-16 | 1 | -1/+1 |
| | |||||
* | use command -v to detect if smbclient exists | Thomas Müller | 2014-04-03 | 1 | -1/+1 |
| | |||||
* | Moved dependency checks to end of class files | Philipp Kapfer | 2014-04-03 | 1 | -14/+14 |
| | | | | | | | | | | Dependency messages now appear below the configuration options instead of above Reworked dependency check method to support consolidated messages for multiple backends Conflicts: apps/files_external/lib/google.php apps/files_external/lib/swift.php apps/files_external/templates/settings.php | ||||
* | Changed dependency check messages from warnings to notes | Philipp Kapfer | 2014-04-03 | 1 | -1/+1 |
| | | | | Added check for duplicate dependency check messages to display only the first | ||||
* | Modified app to dynamically register backends instead of hard-coding them | Philipp Kapfer | 2014-04-03 | 1 | -0/+14 |
| | | | | | | | | Moved dependency check to the individual backends instead of the config Conflicts: apps/files_external/appinfo/app.php apps/files_external/lib/config.php | ||||
* | Added password obfuscation for external storage config | Vincent Petry | 2014-03-19 | 1 | -1/+1 |
| | | | | | Added obfuscation for all "password" options from external storages. Added unit tests for reading/writing the configuration. | ||||
* | Fixed FTP and SMB to use rmdir() when deleting folders | Vincent Petry | 2013-11-29 | 1 | -3/+9 |
| | | | | | | | | | | | Some storages need to use different calls for deleting files or folders, usually unlink() and rmdir(). Fixes #4532 (SMB dir deletion) Fixes #5941 (FTP dir deletion) Note that the extra is_dir() should be fast because it's read from the stat cache. | ||||
* | Fixed SMB file deletion success detection | Vincent Petry | 2013-11-19 | 1 | -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 like | Vincent Petry | 2013-11-19 | 1 | -1/+6 |
| | | | | | Fixes #5778 Added unit test for getId() and constructUrl() | ||||
* | Always check variable type before using readdir to avoid surprises | Arthur Schiwon | 2013-09-04 | 1 | -5/+7 |
| | |||||
* | Merge pull request #4489 from owncloud/clean-3rdparty-mess-master | Bart Visscher | 2013-08-28 | 1 | -1/+1 |
|\ | | | | | Clean 3rdparty mess master | ||||
| * | fixing require path | Thomas Müller | 2013-08-18 | 1 | -1/+1 |
| | | |||||
| * | moving Dropbox and smb4php 3rdparty code over to the apps | Thomas Müller | 2013-08-17 | 1 | -1/+1 |
| | | |||||
* | | use strict equals in readdir loops to prevent issues with '0' files | Robin Appelman | 2013-08-19 | 1 | -1/+1 |
|/ | |||||
* | In cases where smb4php returns false of an empty array stat/( has to return ↵ | Thomas Mueller | 2013-06-01 | 1 | -2/+12 |
| | | | | | | | | | false. Fixes #3466 because the test method of external filesystems uses stat() to detect if the given parameters are okay. Changes to 3rdparty are necessary as well: https://github.com/owncloud/3rdparty/pull/33 | ||||
* | Dont task external storages with creating their own root | Robin Appelman | 2013-04-26 | 1 | -1/+0 |
| | |||||
* | Merge branch 'master' into external_storage_ui_feedback | Michael Gapczynski | 2013-02-19 | 1 | -1/+1 |
|\ | | | | | | | | | | | | | | | Conflicts: apps/files_external/js/settings.js apps/files_external/lib/smb.php apps/files_external/templates/settings.php lib/files/storage/common.php | ||||
| * | Fix NoSpaceAfterComma and SpaceBeforeComma | Bart Visscher | 2013-02-14 | 1 | -1/+1 |
| | | |||||
* | | Merge branch 'master' into external_storage_ui_feedback | Thomas Mueller | 2013-02-12 | 1 | -1/+3 |
|\| | |||||
| * | user name and password need to be encoded as well | Thomas Mueller | 2013-02-12 | 1 | -1/+3 |
| | | | | | | | | fixes #1652 | ||||
* | | Merge branch 'master' into external_storage_ui_feedback | Thomas Mueller | 2013-02-12 | 1 | -5/+1 |
|\| | |||||
| * | use urlencode not rawurlencode | Thomas Mueller | 2013-02-11 | 1 | -1/+1 |
| | | |||||
| * | the path must be encoded because within the smb4pph code it's decoded again ↵ | Thomas Mueller | 2013-02-11 | 1 | -0/+1 |
| | | | | | | | | - pretty easy but still ..... | ||||
| * | [files_external] removing function as it's the same in the base class - THX ↵ | Thomas Mueller | 2013-02-11 | 1 | -5/+0 |
| | | | | | | | | | | | | | | Robin Conflicts: apps/files_external/lib/smb.php | ||||
* | | Merge branch 'master' into external_storage_ui_feedback | Michael Gapczynski | 2013-02-11 | 1 | -9/+12 |
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: apps/files_external/js/dropbox.js apps/files_external/js/google.js apps/files_external/js/settings.js apps/files_external/lib/amazons3.php apps/files_external/lib/dropbox.php apps/files_external/lib/google.php apps/files_external/lib/smb.php apps/files_external/lib/swift.php apps/files_external/lib/webdav.php lib/filestorage.php | ||||
| * | merge master into filesystem | Robin Appelman | 2012-12-03 | 1 | -11/+13 |
| |\ | |||||
| * | | fix incorectly merged smb.php | Robin Appelman | 2012-11-16 | 1 | -0/+1 |
| | | | |||||
| * | | merge master into filesystem | Robin Appelman | 2012-11-07 | 1 | -7/+5 |
| |\ \ | |||||
| * | | | postpone the cost of setting up some of the external storage backends untill ↵ | Robin Appelman | 2012-10-21 | 1 | -5/+2 |
| | | | | | | | | | | | | | | | | we actually need it |