diff --git a/docs/html/guide/publishing/publishing.jd b/docs/html/guide/publishing/publishing.jd index dd1115d7bf1df..0cbba53b37950 100644 --- a/docs/html/guide/publishing/publishing.jd +++ b/docs/html/guide/publishing/publishing.jd @@ -259,16 +259,17 @@ site:

The <query> is a placeholder for the search query to execute in Android -Market. The query can be a raw text string or you can include parameters that perform a search -based on the publisher name or application package name:

+Market. The query can be a raw text string or you can include a parameter that performs a search +based on the publisher name:

@@ -279,7 +280,7 @@ based on the publisher name or application package name:

market://search?q=<query>

-

The query may include the {@code pub:} or {@code pname:} parameters described above.

+

The query may include the {@code pub:} parameter described above.

For example, here's how you can initiate a search in the Android Market application, based on the publisher name:

@@ -290,6 +291,9 @@ intent.setData(Uri.parse("market://search?q=pub:Your Publisher Name")); startActivity(intent); +

The search result shows all applications published by the publisher and which are compatible with +the current device.

+

Searching the Android Market web site

@@ -300,7 +304,7 @@ format:

http://market.android.com/search?q=<query>

-

The query may include the {@code pub:} or {@code pname:} parameters described above.

+

The query may include the {@code pub:} parameter described above.

For example, here's a link that initiates a search on the Android Market web site, based on the publisher name:

@@ -309,6 +313,8 @@ publisher name:

<a href="http://market.android.com/search?q=pub:Your Publisher Name">Search Link</a> +

The search result shows all applications published by the publisher.

+

Summary of URI formats

@@ -341,11 +347,5 @@ the web and in the Android application), as discussed in the previous sections.< market://search?q=pub:<publisher_name> - -Search for an application by its fully qualified package name -http://market.android.com/search?q=pname:<package_name> -market://search?q=pname:<package_name> - -