aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_external/lib/owncloud.php
Commit message (Collapse)AuthorAgeFilesLines
* Fix storage backend class namespaces and move to subdirRobin McCorkell2016-04-141-74/+0
| | | | | All classes that were previously \OC\Files\Storage\FooBar are now \OCA\Files_External\Lib\Storage\FooBar
* Happy new year!Thomas Müller2016-01-121-2/+2
|
* Update license headersJenkins for ownCloud2015-03-261-4/+19
|
* Revert "Updating license headers"Morris Jobke2015-02-261-17/+5
| | | | This reverts commit 6a1a4880f0d556fb090f19a5019fec31916f5c36.
* Fix bugs in ownCloud external storageRobin McCorkell2015-02-251-2/+2
|
* Updating license headersJenkins for ownCloud2015-02-231-5/+17
|
* Allow specifying protocol in ext storage OC configVincent Petry2014-10-131-0/+8
| | | | | | Allow specifying a protocol in the host field when mounting another ownCloud instance. Note that this was already possible with the WebDAV config but this bug made it inconsistent.
* Added ownCloud backend for external storageVincent Petry2013-10-091-0/+51
To make it possible to use the short ownCloud URL (without specifying webdav.php or remote.php), a new backend is available for ownCloud. The user must specify the host + context path in the "Url" field (which is mapped to the "host" parameter) and the subdir to mount in the "Root" field. This is to prevent confusion because some users forget to append webdav.php or remote.php to the WebDAV URL. Fixes #4923