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/05/18 00:37:08 UTC

[19/19] 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/c63b7699
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/tree/c63b7699
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/diff/c63b7699

Branch: refs/heads/playbookFile
Commit: c63b76997f1e6f726ec2d76049451a42f3af51a9
Parents: 017a948
Author: Tim Kim <ti...@adobe.com>
Authored: Tue May 1 17:09:18 2012 -0700
Committer: Tim Kim <ti...@adobe.com>
Committed: Tue May 1 17:09:18 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/c63b7699/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
+};