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/25 17:30:06 UTC

[1/4] docs commit: clarify searches are case-insensitive

Updated Branches:
  refs/heads/master d27fff8b5 -> 06774455a


clarify searches are case-insensitive


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

Branch: refs/heads/master
Commit: 06774455a4c37ee6d6ab5ed5a2f87b79624c6d25
Parents: 0f0890d
Author: Mike Sierra <ms...@adobe.com>
Authored: Thu Oct 24 16:19:27 2013 -0400
Committer: Michael Brooks <mi...@michaelbrooks.ca>
Committed: Fri Oct 25 08:29:51 2013 -0700

----------------------------------------------------------------------
 docs/en/edge/guide/cli/index.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/06774455/docs/en/edge/guide/cli/index.md
----------------------------------------------------------------------
diff --git a/docs/en/edge/guide/cli/index.md b/docs/en/edge/guide/cli/index.md
index 05f5513..fbc71b2 100644
--- a/docs/en/edge/guide/cli/index.md
+++ b/docs/en/edge/guide/cli/index.md
@@ -238,7 +238,7 @@ additional plugins provided by the community, can be found at
 [plugins.cordova.io](http://plugins.cordova.io/). You can use
 the CLI to search for plugins from this registry. For example,
 searching for `bar` and `code` produces a single result that matches
-both substrings:
+both terms as case-insensitive substrings:
 
         $ cordova plugin search bar code
 


[4/4] docs commit: rewrite plugin search piece

Posted by mw...@apache.org.
rewrite plugin search piece


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

Branch: refs/heads/master
Commit: 6ceced44e1abbc592743d0d9da3510d2adc25898
Parents: d27fff8
Author: Mike Sierra <ms...@adobe.com>
Authored: Thu Oct 24 16:09:09 2013 -0400
Committer: Michael Brooks <mi...@michaelbrooks.ca>
Committed: Fri Oct 25 08:29:51 2013 -0700

----------------------------------------------------------------------
 docs/en/edge/guide/cli/index.md | 18 +++++++++++++++---
 1 file changed, 15 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/6ceced44/docs/en/edge/guide/cli/index.md
----------------------------------------------------------------------
diff --git a/docs/en/edge/guide/cli/index.md b/docs/en/edge/guide/cli/index.md
index 42f16fe..bcf9600 100644
--- a/docs/en/edge/guide/cli/index.md
+++ b/docs/en/edge/guide/cli/index.md
@@ -227,14 +227,26 @@ add plugins that provide access to core Cordova APIs.
 A _plugin_ is a bit of add-on code that provides an interface to
 native components. You can design your own plugin interface, for
 example when designing a hybrid app that mixes a Cordova WebView with
-native components. (See Embedding WebViews and Plugin Development Guide for details.)  More commonly, you would add a plugin to enable
+native components. (See Embedding WebViews and Plugin Development
+Guide for details.)  More commonly, you would add a plugin to enable
 one of Cordova's basic device-level features
 <!-- XREF
 discussed in the Application Development Guide and
 XREF -->
-detailed in the API Reference. A list of these plugins, including additional plugins provided by the community, can be found at  [http://plugins.cordova.io/](http://plugins.cordova.io/). You can use the CLI to search for plugins from this registry:
+detailed in the API Reference. A list of these plugins, including
+additional plugins provided by the community, can be found at
+[http://plugins.cordova.io/](http://plugins.cordova.io/). You can use
+the CLI to search for plugins from this registry. For example,
+searching for `bar` and `code` produces a single result that matches
+both terms:
 
-        $ cordova plugin search <term1 term2 term3>
+        $ cordova plugin search bar code
+
+        com.phonegap.plugins.barcodescanner - Scans Barcodes
+
+Searching for only the `bar` term yields and additional result:
+
+        org.apache.cordova.statusbar - Cordova StatusBar Plugin
 
 The `cordova plugin add` command requires you to specify the
 repository for the plugin code.  Here are examples of features you


[2/4] docs commit: no need for full URLs in link text

Posted by mw...@apache.org.
no need for full URLs in link text


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

Branch: refs/heads/master
Commit: 9a57122486d087abaabc4d73cdcb3d4efde73fac
Parents: 6ceced4
Author: Mike Sierra <ms...@adobe.com>
Authored: Thu Oct 24 16:13:04 2013 -0400
Committer: Michael Brooks <mi...@michaelbrooks.ca>
Committed: Fri Oct 25 08:29:51 2013 -0700

----------------------------------------------------------------------
 docs/en/edge/guide/cli/index.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/9a571224/docs/en/edge/guide/cli/index.md
----------------------------------------------------------------------
diff --git a/docs/en/edge/guide/cli/index.md b/docs/en/edge/guide/cli/index.md
index bcf9600..4be4e1c 100644
--- a/docs/en/edge/guide/cli/index.md
+++ b/docs/en/edge/guide/cli/index.md
@@ -235,7 +235,7 @@ discussed in the Application Development Guide and
 XREF -->
 detailed in the API Reference. A list of these plugins, including
 additional plugins provided by the community, can be found at
-[http://plugins.cordova.io/](http://plugins.cordova.io/). You can use
+[plugins.cordova.io](http://plugins.cordova.io/). You can use
 the CLI to search for plugins from this registry. For example,
 searching for `bar` and `code` produces a single result that matches
 both terms:


[3/4] docs commit: clarify searches match substrings

Posted by mw...@apache.org.
clarify searches match substrings


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

Branch: refs/heads/master
Commit: 0f0890deea893f39062a67f23fad547732eab5fd
Parents: 9a57122
Author: Mike Sierra <ms...@adobe.com>
Authored: Thu Oct 24 16:17:00 2013 -0400
Committer: Michael Brooks <mi...@michaelbrooks.ca>
Committed: Fri Oct 25 08:29:51 2013 -0700

----------------------------------------------------------------------
 docs/en/edge/guide/cli/index.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/0f0890de/docs/en/edge/guide/cli/index.md
----------------------------------------------------------------------
diff --git a/docs/en/edge/guide/cli/index.md b/docs/en/edge/guide/cli/index.md
index 4be4e1c..05f5513 100644
--- a/docs/en/edge/guide/cli/index.md
+++ b/docs/en/edge/guide/cli/index.md
@@ -238,7 +238,7 @@ additional plugins provided by the community, can be found at
 [plugins.cordova.io](http://plugins.cordova.io/). You can use
 the CLI to search for plugins from this registry. For example,
 searching for `bar` and `code` produces a single result that matches
-both terms:
+both substrings:
 
         $ cordova plugin search bar code