diff options
-rw-r--r-- | apps/files_external/appinfo/app.php | 11 | ||||
-rw-r--r-- | apps/files_external/appinfo/info.xml (renamed from apps/files_remote/appinfo/info.xml) | 6 | ||||
-rw-r--r-- | apps/files_external/lib/ftp.php (renamed from apps/files_remote/lib/ftp.php) | 0 | ||||
-rw-r--r-- | apps/files_external/lib/google.php (renamed from apps/files_remote/lib/google.php) | 0 | ||||
-rw-r--r-- | apps/files_external/lib/webdav.php (renamed from apps/files_remote/lib/webdav.php) | 0 | ||||
-rw-r--r-- | apps/files_external/tests/config.php (renamed from apps/files_remote/tests/config.php) | 0 | ||||
-rw-r--r-- | apps/files_external/tests/ftp.php (renamed from apps/files_remote/tests/ftp.php) | 2 | ||||
-rw-r--r-- | apps/files_external/tests/google.php (renamed from apps/files_remote/tests/google.php) | 4 | ||||
-rw-r--r-- | apps/files_external/tests/webdav.php (renamed from apps/files_remote/tests/webdav.php) | 2 | ||||
-rw-r--r-- | apps/files_remote/appinfo/app.php | 11 |
10 files changed, 18 insertions, 18 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_remote/appinfo/info.xml b/apps/files_external/appinfo/info.xml index 8cf66ddbc37..fb58297ff17 100644 --- a/apps/files_remote/appinfo/info.xml +++ b/apps/files_external/appinfo/info.xml @@ -1,8 +1,8 @@ <?xml version="1.0"?> <info> - <id>files_remote</id> - <name>Remote storage support</name> - <description>Mount remote storage sources</description> + <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> diff --git a/apps/files_remote/lib/ftp.php b/apps/files_external/lib/ftp.php index 802446b4fd8..802446b4fd8 100644 --- a/apps/files_remote/lib/ftp.php +++ b/apps/files_external/lib/ftp.php diff --git a/apps/files_remote/lib/google.php b/apps/files_external/lib/google.php index 0d6db1987f8..0d6db1987f8 100644 --- a/apps/files_remote/lib/google.php +++ b/apps/files_external/lib/google.php diff --git a/apps/files_remote/lib/webdav.php b/apps/files_external/lib/webdav.php index 7a2da5c8ec0..7a2da5c8ec0 100644 --- a/apps/files_remote/lib/webdav.php +++ b/apps/files_external/lib/webdav.php diff --git a/apps/files_remote/tests/config.php b/apps/files_external/tests/config.php index 9b40d2b98cf..9b40d2b98cf 100644 --- a/apps/files_remote/tests/config.php +++ b/apps/files_external/tests/config.php diff --git a/apps/files_remote/tests/ftp.php b/apps/files_external/tests/ftp.php index 03633b7c0d1..aa565751ba3 100644 --- a/apps/files_remote/tests/ftp.php +++ b/apps/files_external/tests/ftp.php @@ -12,7 +12,7 @@ class Test_Filestorage_FTP extends Test_FileStorage { public function setUp(){ $id=uniqid(); - $this->config=include('apps/files_remote/tests/config.php'); + $this->config=include('apps/files_external/tests/config.php'); $this->config['ftp']['root'].='/'.$id;//make sure we have an new empty folder to work in $this->instance=new OC_Filestorage_FTP($this->config['ftp']); } diff --git a/apps/files_remote/tests/google.php b/apps/files_external/tests/google.php index b49f9e4647c..1c028945228 100644 --- a/apps/files_remote/tests/google.php +++ b/apps/files_external/tests/google.php @@ -27,7 +27,7 @@ class Test_Filestorage_Google extends Test_FileStorage { public function setUp(){ $id=uniqid(); - $this->config=include('apps/files_remote/tests/config.php'); + $this->config=include('apps/files_external/tests/config.php'); $this->config['google']['root'].='/'.$id;//make sure we have an new empty folder to work in $this->instance=new OC_Filestorage_Google($this->config['google']); } @@ -35,4 +35,4 @@ class Test_Filestorage_Google extends Test_FileStorage { public function tearDown(){ $this->instance->rmdir('/'); } -}
\ No newline at end of file +} diff --git a/apps/files_remote/tests/webdav.php b/apps/files_external/tests/webdav.php index 219fff8852d..51799290540 100644 --- a/apps/files_remote/tests/webdav.php +++ b/apps/files_external/tests/webdav.php @@ -12,7 +12,7 @@ class Test_Filestorage_DAV extends Test_FileStorage { public function setUp(){ $id=uniqid(); - $this->config=include('apps/files_remote/tests/config.php'); + $this->config=include('apps/files_external/tests/config.php'); $this->config['webdav']['root'].='/'.$id;//make sure we have an new empty folder to work in $this->instance=new OC_Filestorage_DAV($this->config['webdav']); } diff --git a/apps/files_remote/appinfo/app.php b/apps/files_remote/appinfo/app.php deleted file mode 100644 index 02c1c3ae313..00000000000 --- a/apps/files_remote/appinfo/app.php +++ /dev/null @@ -1,11 +0,0 @@ -<?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_remote/lib/ftp.php'; -OC::$CLASSPATH['OC_Filestorage_DAV']='apps/files_remote/lib/webdav.php'; -OC::$CLASSPATH['OC_Filestorage_Google']='apps/files_remote/lib/google.php'; |