You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ti...@apache.org on 2012/06/07 22:40:44 UTC

[47/48] js commit: First step in getting requestFileSystem working on playbook

First step in getting requestFileSystem working on playbook


Project: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/commit/21886f43
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/tree/21886f43
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/diff/21886f43

Branch: refs/heads/master
Commit: 21886f4347828436c7a4bb9ad4929bbd655774d6
Parents: 5f70310
Author: Tim Kim <ti...@adobe.com>
Authored: Tue May 1 17:09:18 2012 -0700
Committer: Tim Kim <ti...@nitobi.com>
Committed: Thu Jun 7 13:40:21 2012 -0700

----------------------------------------------------------------------
 lib/playbook/platform.js |   12 +++++++++++-
 1 files changed, 11 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/blob/21886f43/lib/playbook/platform.js
----------------------------------------------------------------------
diff --git a/lib/playbook/platform.js b/lib/playbook/platform.js
index c837f93..2c10b77 100644
--- a/lib/playbook/platform.js
+++ b/lib/playbook/platform.js
@@ -4,6 +4,9 @@ module.exports = {
     objects: {
         device: {
             path: "cordova/plugin/playbook/device"
+        },
+        requestFileSystem:{
+            path: 'cordova/plugin/playbook/requestFileSystem'
         }
     },
     merges: {
@@ -13,6 +16,13 @@ module.exports = {
                     path: "cordova/plugin/playbook/device"
                 }
             }
+        },
+
+        DirectoryEntry: {
+            path: 'cordova/plugin/playbook/DirectoryEntry'
+        },
+        Entry: {
+            path: 'cordova/plugin/playbook/Entry'
         }
     }
-};
\ No newline at end of file
+};