You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by bh...@apache.org on 2013/05/21 15:08:40 UTC

[2/2] docs commit: [BlackBerry10] Update plugin add/remove in getting started guide

[BlackBerry10] Update plugin add/remove in getting started guide


Project: http://git-wip-us.apache.org/repos/asf/cordova-docs/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-docs/commit/d4c435db
Tree: http://git-wip-us.apache.org/repos/asf/cordova-docs/tree/d4c435db
Diff: http://git-wip-us.apache.org/repos/asf/cordova-docs/diff/d4c435db

Branch: refs/heads/master
Commit: d4c435dbc9f2eac483461ca8e26aa2487e74e950
Parents: e8007d1
Author: Bryan Higgins <bh...@blackberry.com>
Authored: Tue May 21 09:11:06 2013 -0400
Committer: Bryan Higgins <bh...@blackberry.com>
Committed: Tue May 21 09:11:06 2013 -0400

----------------------------------------------------------------------
 .../guide/getting-started/blackberry10/index.md    |   29 ++++-----------
 1 files changed, 8 insertions(+), 21 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/d4c435db/docs/en/edge/guide/getting-started/blackberry10/index.md
----------------------------------------------------------------------
diff --git a/docs/en/edge/guide/getting-started/blackberry10/index.md b/docs/en/edge/guide/getting-started/blackberry10/index.md
index d172b46..8fed895 100644
--- a/docs/en/edge/guide/getting-started/blackberry10/index.md
+++ b/docs/en/edge/guide/getting-started/blackberry10/index.md
@@ -157,32 +157,12 @@ To add additional functionality that is outside of the core features of Cordova,
 
 In order to use a plugin, you must first add it into your project. Once added into your project, the plugin will be bundled with your project during the build process, to ensure that your app has access to all the APIs it needs.
 
-Plugins hosted locally must be fetched before they can be installed. Plugins hosted remotely can simply be installed.
-
-###Fetch a locally-hosted plugin
-
-To fetch a locally-hosted plugin, on the command line, type the following command:
-
-```
-<path-to-project>/cordova/plugin fetch <path-to-plugin>
-```
-
-Once fetched, the plugin can be added by name, just as a remotely hosted plugin.
-
-###View a list of installed plugins
-
-To view a list of installed plugins, on the command line, type the following command:
-
-```
-<path-to-project>/cordova/plugin ls
-```
-
 ###Add a plugin
 
 To add a plugin, on the command line, type the following command:
 
 ```
-<path-to-project>/cordova/plugin add <name>
+<path-to-project>/cordova/plugin add <path to plugin>
 ```
 
 ###Remove a plugin
@@ -193,3 +173,10 @@ To remove a plugin, on the command line, type the following command:
 <path-to-project>/cordova/plugin rm <name>
 ```
 
+###View a list of installed plugins
+
+To view a list of installed plugins, on the command line, type the following command:
+
+```
+<path-to-project>/cordova/plugin ls
+```