diff options
author | Jan-Christoph Borchardt <jan@unhosted.org> | 2012-03-30 18:10:16 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <jan@unhosted.org> | 2012-03-30 18:18:37 +0200 |
commit | 011132feb33b4f7954eb5df5e2283e9c8f8ae944 (patch) | |
tree | a505c04abd1f84dadeaae7100ce571006d31cd89 /apps/files_external/appinfo | |
parent | 7552390031ee10ed5006ef927fa1f55cdd148554 (diff) | |
download | nextcloud-server-011132feb33b4f7954eb5df5e2283e9c8f8ae944.tar.gz nextcloud-server-011132feb33b4f7954eb5df5e2283e9c8f8ae944.zip |
renaming remote storage support to External storage support to clear up naming conflict
Diffstat (limited to 'apps/files_external/appinfo')
-rw-r--r-- | apps/files_external/appinfo/app.php | 11 | ||||
-rw-r--r-- | apps/files_external/appinfo/info.xml | 13 |
2 files changed, 24 insertions, 0 deletions
diff --git a/apps/files_external/appinfo/app.php b/apps/files_external/appinfo/app.php new file mode 100644 index 00000000000..95770b44b75 --- /dev/null +++ b/apps/files_external/appinfo/app.php @@ -0,0 +1,11 @@ +<?php +/** + * Copyright (c) 2012 Robin Appelman <icewind@owncloud.com> + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +OC::$CLASSPATH['OC_Filestorage_FTP']='apps/files_external/lib/ftp.php'; +OC::$CLASSPATH['OC_Filestorage_DAV']='apps/files_external/lib/webdav.php'; +OC::$CLASSPATH['OC_Filestorage_Google']='apps/files_external/lib/google.php'; diff --git a/apps/files_external/appinfo/info.xml b/apps/files_external/appinfo/info.xml new file mode 100644 index 00000000000..fb58297ff17 --- /dev/null +++ b/apps/files_external/appinfo/info.xml @@ -0,0 +1,13 @@ +<?xml version="1.0"?> +<info> + <id>files_external</id> + <name>External storage support</name> + <description>Mount external storage sources</description> + <version>0.1</version> + <licence>AGPL</licence> + <author>Robin Appelman</author> + <require>3</require> + <types> + <filesystem/> + </types> +</info> |