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

[07/14] docs commit: [CB-3825] define plugins better

[CB-3825] define plugins better


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

Branch: refs/heads/master
Commit: f7b90ccf457ac1f3d6a6eb5fc31e403290028650
Parents: 2554e29
Author: Mike Sierra <ms...@adobe.com>
Authored: Fri Oct 11 11:02:18 2013 -0400
Committer: Michael Brooks <mi...@michaelbrooks.ca>
Committed: Mon Oct 21 15:12:51 2013 -0700

----------------------------------------------------------------------
 docs/en/edge/guide/hybrid/plugins/index.md          | 2 +-
 docs/en/edge/guide/platforms/blackberry10/plugin.md | 8 ++++----
 2 files changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/f7b90ccf/docs/en/edge/guide/hybrid/plugins/index.md
----------------------------------------------------------------------
diff --git a/docs/en/edge/guide/hybrid/plugins/index.md b/docs/en/edge/guide/hybrid/plugins/index.md
index 37de077..967c9d5 100644
--- a/docs/en/edge/guide/hybrid/plugins/index.md
+++ b/docs/en/edge/guide/hybrid/plugins/index.md
@@ -19,7 +19,7 @@ license: Licensed to the Apache Software Foundation (ASF) under one
 
 # Plugin Development Guide
 
-A _plugin_ is a bit of injected code that allows the webview within
+A _plugin_ is a package of injected code that allows the Cordova webview within
 which your app renders to communicate with the native platform on
 which it runs.  Plugins provide access to device and platform
 functionality that is ordinarily unavailable to web-based apps.  All

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/f7b90ccf/docs/en/edge/guide/platforms/blackberry10/plugin.md
----------------------------------------------------------------------
diff --git a/docs/en/edge/guide/platforms/blackberry10/plugin.md b/docs/en/edge/guide/platforms/blackberry10/plugin.md
index 1dc2be2..f84c642 100644
--- a/docs/en/edge/guide/platforms/blackberry10/plugin.md
+++ b/docs/en/edge/guide/platforms/blackberry10/plugin.md
@@ -41,7 +41,7 @@ to invoke native functionality from JavaScript. The native and
 JavaScript code communicate with each other through a framework
 provided by JNEXT. Every plugin must also include a `plugin.xml` file.
 
-## Creating the native part of your plugin ##
+## Creating the native part of your plugin
 
 To create the native portion of your plugin, open the BlackBerry 10
 NDK IDE and select File > New > BlackBerry Project > Native Extension
@@ -152,7 +152,7 @@ our Echo plugin, we have the following in `echo_js.cpp`:
             return NULL;
         }
 
-##Creating the JavaScript part of your plugin##
+##Creating the JavaScript part of your plugin
 
 The JavaScript portion of your plugin must contain the following files:
 
@@ -215,7 +215,7 @@ You can now send the data back. Let’s put it all together:
             }
         };
 
-## Architecture of the plugin ##
+## Architecture of the plugin
 
 You can place the artifacts of the plugin, which includes the
 `plugin.xml` file, the source files (JavaScript, C++), and the binary
@@ -236,7 +236,7 @@ directories. The parenthesis shows the contents of a given directory. All
 directory names appear in bold text. File names are preceded by the `>`
 sign.)
 
-## Contents of the `plugin.xml` file##
+## Contents of the `plugin.xml` file
 
 The `plugin.xml` file contains the namespace of the extension and other
 metadata. Define the namespace and specify other metadata for the Echo