You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by st...@apache.org on 2014/02/11 00:22:49 UTC

[23/50] git commit: Change default FS URL scheme to "cdvfile"

Change default FS URL scheme to "cdvfile"


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file/commit/9d528160
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file/tree/9d528160
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file/diff/9d528160

Branch: refs/heads/master
Commit: 9d528160e42d57c6b99afb3fef97a5b3215b9acb
Parents: 73dbfb6
Author: Ian Clelland <ic...@chromium.org>
Authored: Mon Jan 13 09:34:01 2014 -0500
Committer: Ian Clelland <ic...@chromium.org>
Committed: Mon Jan 13 10:10:47 2014 -0500

----------------------------------------------------------------------
 src/android/LocalFilesystemURL.java | 2 +-
 src/ios/CDVFile.m                   | 2 +-
 www/android/FileSystem.js           | 2 +-
 www/ios/FileSystem.js               | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugin-file/blob/9d528160/src/android/LocalFilesystemURL.java
----------------------------------------------------------------------
diff --git a/src/android/LocalFilesystemURL.java b/src/android/LocalFilesystemURL.java
index a3aade8..2aec395 100644
--- a/src/android/LocalFilesystemURL.java
+++ b/src/android/LocalFilesystemURL.java
@@ -4,7 +4,7 @@ import android.net.Uri;
 
 public class LocalFilesystemURL {
 	
-	public static final String FILESYSTEM_PROTOCOL = "filesystem";
+	public static final String FILESYSTEM_PROTOCOL = "cdvfile";
 	
 	public static final int TEMPORARY = 0;
 	public static final int PERSISTENT = 1;

http://git-wip-us.apache.org/repos/asf/cordova-plugin-file/blob/9d528160/src/ios/CDVFile.m
----------------------------------------------------------------------
diff --git a/src/ios/CDVFile.m b/src/ios/CDVFile.m
index 7bc39b9..500acb1 100644
--- a/src/ios/CDVFile.m
+++ b/src/ios/CDVFile.m
@@ -30,7 +30,7 @@ extern NSString * const NSURLIsExcludedFromBackupKey __attribute__((weak_import)
     NSString* const NSURLIsExcludedFromBackupKey = @"NSURLIsExcludedFromBackupKey";
 #endif
 
-NSString* const kCDVFilesystemURLPrefix = @"filesystem";
+NSString* const kCDVFilesystemURLPrefix = @"cdvfile";
 
 @implementation CDVFilesystemURL
 @synthesize url=_url;

http://git-wip-us.apache.org/repos/asf/cordova-plugin-file/blob/9d528160/www/android/FileSystem.js
----------------------------------------------------------------------
diff --git a/www/android/FileSystem.js b/www/android/FileSystem.js
index d0db194..73332f8 100644
--- a/www/android/FileSystem.js
+++ b/www/android/FileSystem.js
@@ -19,7 +19,7 @@
  *
 */
 
-FILESYSTEM_PROTOCOL = "filesystem";
+FILESYSTEM_PROTOCOL = "cdvfile";
 
 module.exports = {
     __format__: function(fullPath) {

http://git-wip-us.apache.org/repos/asf/cordova-plugin-file/blob/9d528160/www/ios/FileSystem.js
----------------------------------------------------------------------
diff --git a/www/ios/FileSystem.js b/www/ios/FileSystem.js
index 2099a99..b11d58f 100644
--- a/www/ios/FileSystem.js
+++ b/www/ios/FileSystem.js
@@ -19,7 +19,7 @@
  *
 */
 
-FILESYSTEM_PROTOCOL = "filesystem";
+FILESYSTEM_PROTOCOL = "cdvfile";
 
 module.exports = {
     __format__: function(fullPath) {