summaryrefslogtreecommitdiffstats
path: root/apps/files_external/lib/ftp.php
Commit message (Collapse)AuthorAgeFilesLines
* Fix storage backend class namespaces and move to subdirRobin McCorkell2016-04-141-155/+0
| | | | | All classes that were previously \OC\Files\Storage\FooBar are now \OCA\Files_External\Lib\Storage\FooBar
* Merge pull request #23274 from Senorsen/add-urlencode-ftp-sftpThomas Müller2016-03-311-1/+1
|\ | | | | Add urlencode to username part of ftp and sftp links
| * Add urlencode to username part of ftp and sftp linksSenorsen2016-03-161-1/+1
| | | | | | | | according to #17796
* | apply retry wrapper to make sure that we always read/write a complete blockBjoern Schiessle2016-03-211-1/+4
|/
* Happy new year!Thomas Müller2016-01-121-2/+2
|
* Convert string booleans to real booleansRobin McCorkell2015-08-201-5/+1
| | | | | Legacy compatibility, from the days in stable8 when checkbox boolean values were stored as the strings 'true' and 'false'.
* Update license headersJenkins for ownCloud2015-03-261-4/+26
|
* Revert "Updating license headers"Morris Jobke2015-02-261-25/+5
| | | | This reverts commit 6a1a4880f0d556fb090f19a5019fec31916f5c36.
* Updating license headersJenkins for ownCloud2015-02-231-5/+25
|
* Lazy initialize external storagesVincent Petry2014-10-221-1/+1
| | | | | | | | Fixed the following external storages to not connect in the constructor, but do it on-demand when getConnection() is called. - S3 - SWIFT - SFTP
* Fix more missing or broken PHPDocRobin McCorkell2014-05-161-1/+1
|
* Moved dependency checks to end of class filesPhilipp Kapfer2014-04-031-12/+12
| | | | | | | | | | 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 notesPhilipp Kapfer2014-04-031-1/+1
| | | | Added check for duplicate dependency check messages to display only the first
* Modified app to dynamically register backends instead of hard-coding themPhilipp Kapfer2014-04-031-0/+12
| | | | | | | | Moved dependency check to the individual backends instead of the config Conflicts: apps/files_external/appinfo/app.php apps/files_external/lib/config.php
* Fixed FTP and SMB to use rmdir() when deleting foldersVincent Petry2013-11-291-0/+16
| | | | | | | | | | | 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.
* Add trailing slash in FTP root path when missingVincent Petry2013-11-281-0/+3
| | | | Fixes #6093
* Dont task external storages with creating their own rootRobin Appelman2013-04-261-6/+0
|
* Merge branch 'master' into external_storage_ui_feedbackMichael Gapczynski2013-02-191-2/+2
|\ | | | | | | | | | | | | | | 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 SpaceBeforeCommaBart Visscher2013-02-141-2/+2
| |
* | fixing namespaceThomas Mueller2013-02-121-2/+2
| |
* | Merge branch 'master' into external_storage_ui_feedbackMichael Gapczynski2013-02-111-7/+16
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | 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
| * Move streamwrappers to seperate files and put them in a namespaceRobin Appelman2013-01-281-1/+1
| |
| * merge master into filesystemRobin Appelman2012-12-031-16/+16
| |\
| * \ merge master into filesystemRobin Appelman2012-11-151-2/+2
| |\ \
| * \ \ merge master into filesystemRobin Appelman2012-11-071-1/+9
| |\ \ \
| * \ \ \ merge master into filesystemRobin Appelman2012-10-251-3/+3
| |\ \ \ \
| * | | | | postpone the cost of setting up some of the external storage backends untill ↵Robin Appelman2012-10-211-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | we actually need it
| * | | | | fix namespace problems for external storage backendsRobin Appelman2012-10-111-3/+4
| | | | | |
| * | | | | implement getId for the external storage providersRobin Appelman2012-10-111-0/+4
| | | | | |
| * | | | | put filestorages in a namespaceRobin Appelman2012-09-071-2/+4
| | | | | |
* | | | | | Move storage backend tests from constructor to test functionMichael Gapczynski2012-12-281-4/+0
| | | | | |
* | | | | | Show status icons for mount points in external storage UIMichael Gapczynski2012-12-241-16/+25
| |_|_|_|/ |/| | | |
* | | | | fix checkstyle for files_external app, add whitespace for readabilityJörn Friedrich Dreyer2012-11-301-11/+11
| |_|_|/ |/| | |
* | | | Fixed new checkstyle issues in ftp.php from build #1341.Diederik de Haas2012-11-101-2/+2
| |_|/ |/| |
* | | support string values ('true' and 'false') for configuring the secure ↵Robin Appelman2012-11-051-1/+9
| | | | | | | | | | | | | | | | | | parameter on external storage backends fixes #78
* | | Checkstyle fixes: NoSpaceAfterCommaFelix Moeller2012-11-041-4/+4
| | |
* | | Checkstyle: many fixesFelix Moeller2012-11-021-4/+4
| |/ |/|
* | Checkstyle: NoSpaceAfterCommaFelix Moeller2012-10-231-3/+3
|/
* adding space between) and {Thomas Mueller2012-09-071-10/+10
|
* Whitespace fixes in appsBart Visscher2012-08-291-1/+1
|
* Only call mkdir() if the root folder does not exist for FTP external storageMichael Gapczynski2012-07-301-2/+3
|
* share code between smb and ftp filestorage backendsRobin Appelman2012-07-101-72/+1
|
* Don't use substr to get first char of stringBart Visscher2012-06-191-1/+1
|
* removing executable bit - againThomas Mueller2012-05-151-0/+0
|
* move all the files stuff into a files classFrank Karlitschek2012-05-021-1/+1
|
* ported the rest of the OC_Helper callsFrank Karlitschek2012-05-021-1/+1
|
* renaming remote storage support to External storage support to clear up ↵Jan-Christoph Borchardt2012-03-301-0/+157
naming conflict