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 2014/06/27 01:55:49 UTC

svn commit: r1605933 [6/11] - in /cordova/site/public/docs/en: 3.5.0/ edge/

Modified: cordova/site/public/docs/en/3.5.0/plugin_ref_plugman.md.html
URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/3.5.0/plugin_ref_plugman.md.html?rev=1605933&r1=1605932&r2=1605933&view=diff
==============================================================================
--- cordova/site/public/docs/en/3.5.0/plugin_ref_plugman.md.html (original)
+++ cordova/site/public/docs/en/3.5.0/plugin_ref_plugman.md.html Thu Jun 26 23:55:47 2014
@@ -17,16 +17,18 @@
     specific language governing permissions and limitations
     under the License.
 --><html lang="en">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no, width=device-width">
-<meta name="generator" content="joDoc">
-<title>Apache Cordova API Documentation</title>
-<link rel="stylesheet" type="text/css" href="index.css">
-<link rel="stylesheet" type="text/css" href="mobile.css" media="only screen and (max-device-width: 1024px)">
-<link rel="stylesheet" type="text/css" href="prettify/prettify.css">
-</head>
-<body>
+    <head>
+        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+        <meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no, width=device-width">
+        <meta name="generator" content="joDoc">
+
+        <title>Apache Cordova API Documentation</title>
+
+        <link rel="stylesheet" type="text/css" href="index.css">
+        <link rel="stylesheet" type="text/css" href="mobile.css" media="only screen and (max-device-width: 1024px)">
+        <link rel="stylesheet" type="text/css" href="prettify/prettify.css">
+    </head>
+    <body>
         <div id="header">
             <h1><a href="index.html">Apache <strong>Cordova</strong> Documentation</a></h1>
             <small>
@@ -99,6 +101,7 @@
 <option value="3.1.0">3.1.0</option>
 <option value="2.0.0">2.0.0</option>
 </optgroup>
+<optgroup label="Polish" value="pl"><option value="edge">edge</option></optgroup>
 <optgroup label="Russian" value="ru">
 <option value="edge">edge</option>
 <option value="3.5.0">3.5.0</option>
@@ -115,7 +118,8 @@
 <option value="3.5.0">3.5.0</option>
 <option value="3.4.0">3.4.0</option>
 <option value="3.1.0">3.1.0</option>
-</optgroup></select></small>
+</optgroup></select>
+            </small>
         </div>
         <div id="subheader">
             <h1>Using Plugman to Manage Plugins</h1>
@@ -173,13 +177,12 @@ The CLI modifies plugins for all specifi
 <a class="external" href="https://github.com/apache/cordova-plugman/">Plugman</a> command-line
 interface, separately for each targeted platform.</p></li>
 </ul>
+
 <p>This section details the Plugman utility.  For more information on
 consuming Plugman as a node module or modifying the source code, see
 <a class="external" href="https://github.com/apache/cordova-plugman/blob/master/README.md">the README file in its repository</a>.</p>
 
-<h2>
-<a name="Using%20Plugman%20to%20Manage%20Plugins_installing_plugman">Installing Plugman</a>
-</h2>
+<h2><a name="Using%20Plugman%20to%20Manage%20Plugins_installing_plugman">Installing Plugman</a></h2>
 
 <p>To install plugman, you must have <a class="external" href="http://nodejs.org/">node</a> installed
 on your machine. Then you can run the following command from anywhere
@@ -205,21 +208,17 @@ invoke <code>node</code> for each Plugma
 assumes you have installed Plugman globally, meaning you can invoke it
 with just <code>plugman</code>.</p>
 
-<h2>
-<a name="Using%20Plugman%20to%20Manage%20Plugins_create_a_cordova_project">Create a Cordova Project</a>
-</h2>
+<h2><a name="Using%20Plugman%20to%20Manage%20Plugins_create_a_cordova_project">Create a Cordova Project</a></h2>
 
 <p>Before you can use Plugman, you must create a Cordova project.  You can do this with either the Command-line Interface or with
 the lower level shell scripts. Instructions for using the shell scripts to create your project are located in the various "Command-line Tools" guides
 listed on the <a href="guide_platforms_index.md.html#Platform%20Guides">Platform Guides</a> page. </p>
 
-<h2>
-<a name="Using%20Plugman%20to%20Manage%20Plugins_adding_a_plugin">Adding a Plugin</a>
-</h2>
+<h2><a name="Using%20Plugman%20to%20Manage%20Plugins_adding_a_plugin">Adding a Plugin</a></h2>
 
 <p>Once you have installed Plugman and have created a Cordova project, you can start adding plugins to the platform with:</p>
 
-<pre class="prettyprint"><code>$ plugman --platform &lt;ios|amazon-fireos|android|blackberry10|wp7|wp8&gt; --project &lt;directory&gt; --plugin &lt;name|url|path&gt; [--plugins_dir &lt;directory&gt;] [--www &lt;directory&gt;] [--variable &lt;name&gt;=&lt;value&gt; [--variable &lt;name&gt;=&lt;value&gt; ...]]
+<pre class="prettyprint"><code>$ plugman --platform &lt;ios|amazon-fireos|android|blackberry10|wp8&gt; --project &lt;directory&gt; --plugin &lt;name|url|path&gt; [--plugins_dir &lt;directory&gt;] [--www &lt;directory&gt;] [--variable &lt;name&gt;=&lt;value&gt; [--variable &lt;name&gt;=&lt;value&gt; ...]]
 </code></pre>
 
 <p>Using minimum parameters, this command installs a plugin into a cordova project. You must specify a platform and cordova project location for that platform. You also must specify a plugin, with the different <code>--plugin</code> parameter forms being:</p>
@@ -232,6 +231,7 @@ listed on the <a href="guide_platforms_i
 <li>
 <code>path</code>: A path to a directory containing a valid plugin which includes a <code>plugin.xml</code> file. This path's contents will be copied into the <code>--plugins_dir</code>.</li>
 </ul>
+
 <p>Other parameters: </p>
 
 <ul>
@@ -242,18 +242,15 @@ listed on the <a href="guide_platforms_i
 <li>
 <code>--variable</code> allows to specify certain variables at install time, necessary for certain plugins requiring API keys or other custom, user-defined parameters. Please see the <a href="plugin_ref_spec.md.html#Plugin%20Specification">plugin specification</a> for more information.</li>
 </ul>
-<h2>
-<a name="Using%20Plugman%20to%20Manage%20Plugins_remove_a_plugin">Remove a Plugin</a>
-</h2>
+
+<h2><a name="Using%20Plugman%20to%20Manage%20Plugins_remove_a_plugin">Remove a Plugin</a></h2>
 
 <p>To uninstall a plugin, you simply pass the <code>--uninstall</code> flag and provide the plugin ID.</p>
 
-<pre class="prettyprint"><code>$ plugman --uninstall --platform &lt;ios|amazon-fireos|android|blackberry10|wp7|wp8&gt; --project &lt;directory&gt; --plugin &lt;id&gt; [--www &lt;directory&gt;] [--plugins_dir &lt;directory&gt;]
+<pre class="prettyprint"><code>$ plugman --uninstall --platform &lt;ios|amazon-fireos|android|blackberry10|wp8&gt; --project &lt;directory&gt; --plugin &lt;id&gt; [--www &lt;directory&gt;] [--plugins_dir &lt;directory&gt;]
 </code></pre>
 
-<h2>
-<a name="Using%20Plugman%20to%20Manage%20Plugins_help_commands">Help Commands</a>
-</h2>
+<h2><a name="Using%20Plugman%20to%20Manage%20Plugins_help_commands">Help Commands</a></h2>
 
 <p>Plugman features a global help command which may help you if you get stuck or are experiencing problems. It will display
 a list of all available Plugman commands and their syntax:</p>
@@ -276,9 +273,7 @@ plugman -d --platform android --project 
 <pre class="prettyprint"><code>plugman -v
 </code></pre>
 
-<h2>
-<a name="Using%20Plugman%20to%20Manage%20Plugins_registry_actions">Registry Actions</a>
-</h2>
+<h2><a name="Using%20Plugman%20to%20Manage%20Plugins_registry_actions">Registry Actions</a></h2>
 
 <p>There are a number of plugman commands that can be used for interacting with the <a class="external" href="http://plugins.cordova.io">Plugin registry</a>.
 Please note that these registry commands are specific to the <em>plugins.cordova.io</em> plugin registry and may not be implemented by
@@ -308,9 +303,7 @@ plugman config get registry
 
 <p>This will contact the plugin registry and fetch information such as the plugin's version number. </p>
 
-<h2>
-<a name="Using%20Plugman%20to%20Manage%20Plugins_installing_core_plugins">Installing Core Plugins</a>
-</h2>
+<h2><a name="Using%20Plugman%20to%20Manage%20Plugins_installing_core_plugins">Installing Core Plugins</a></h2>
 
 <p>The examples below show how to add plugins as needed so that any
 Cordova APIs you use in your project still work after you upgrade to
@@ -358,10 +351,12 @@ plugman --platform <ios> --project <dire
 <li><p>cordova-plugin-vibration
 plugman --platform <ios> --project <directory> --plugin org.apache.cordova.vibration</directory></ios></p></li>
 </ul>
-</div>
+
+            </div>
         </div>
 
         <!-- Functionality and Syntax Highlighting -->
-        <script type="text/javascript" src="index.js"></script><script type="text/javascript" src="prettify/prettify.js"></script>
-</body>
+        <script type="text/javascript" src="index.js"></script>
+        <script type="text/javascript" src="prettify/prettify.js"></script>
+    </body>
 </html>

Modified: cordova/site/public/docs/en/3.5.0/plugin_ref_spec.md.html
URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/3.5.0/plugin_ref_spec.md.html?rev=1605933&r1=1605932&r2=1605933&view=diff
==============================================================================
--- cordova/site/public/docs/en/3.5.0/plugin_ref_spec.md.html (original)
+++ cordova/site/public/docs/en/3.5.0/plugin_ref_spec.md.html Thu Jun 26 23:55:47 2014
@@ -17,16 +17,18 @@
     specific language governing permissions and limitations
     under the License.
 --><html lang="en">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no, width=device-width">
-<meta name="generator" content="joDoc">
-<title>Apache Cordova API Documentation</title>
-<link rel="stylesheet" type="text/css" href="index.css">
-<link rel="stylesheet" type="text/css" href="mobile.css" media="only screen and (max-device-width: 1024px)">
-<link rel="stylesheet" type="text/css" href="prettify/prettify.css">
-</head>
-<body>
+    <head>
+        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+        <meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no, width=device-width">
+        <meta name="generator" content="joDoc">
+
+        <title>Apache Cordova API Documentation</title>
+
+        <link rel="stylesheet" type="text/css" href="index.css">
+        <link rel="stylesheet" type="text/css" href="mobile.css" media="only screen and (max-device-width: 1024px)">
+        <link rel="stylesheet" type="text/css" href="prettify/prettify.css">
+    </head>
+    <body>
         <div id="header">
             <h1><a href="index.html">Apache <strong>Cordova</strong> Documentation</a></h1>
             <small>
@@ -99,6 +101,7 @@
 <option value="3.1.0">3.1.0</option>
 <option value="2.0.0">2.0.0</option>
 </optgroup>
+<optgroup label="Polish" value="pl"><option value="edge">edge</option></optgroup>
 <optgroup label="Russian" value="ru">
 <option value="edge">edge</option>
 <option value="3.5.0">3.5.0</option>
@@ -115,7 +118,8 @@
 <option value="3.5.0">3.5.0</option>
 <option value="3.4.0">3.4.0</option>
 <option value="3.1.0">3.1.0</option>
-</optgroup></select></small>
+</optgroup></select>
+            </small>
         </div>
         <div id="subheader">
             <h1>Plugin Specification</h1>
@@ -205,10 +209,8 @@ structure of the plugin.</p>
     version="1.0.2"&gt;
 </code></pre>
 
-<h2>
-<a name="Plugin%20Specification_plugin_element">
-plugin Element</a>
-</h2>
+<h2><a name="Plugin%20Specification_plugin_element">
+plugin Element</a></h2>
 
 <p>The <code>plugin</code> element is the plugin manifest's top-level element. It
 features the following attributes:</p>
@@ -231,10 +233,9 @@ major-minor-patch style regular expressi
 </code></pre>
 </li>
 </ul>
-<h2>
-<a name="Plugin%20Specification_engines_and_engine_elements">
-engines and engine Elements</a>
-</h2>
+
+<h2><a name="Plugin%20Specification_engines_and_engine_elements">
+engines and engine Elements</a></h2>
 
 <p>The child elements of the <code>&lt;engines&gt;</code> element specify versions of
 Apache Cordova-based frameworks that this plugin supports. An example:</p>
@@ -283,7 +284,6 @@ in order to override the catch-all <code
 * 'cordova-android'
 * 'cordova-ios'
 * 'cordova-blackberry10' 
-* 'cordova-wp7'
 * 'cordova-wp8'
 * 'cordova-windows8' <br>
 * 'android-sdk' // returns the highest Android api level installed
@@ -313,16 +313,15 @@ Ideally, this file should be within the 
 to say supported for all platforms, specify multiple with a pipe character like <code>android|ios|blackberry10</code> 
 or just a single platform like <code>android</code>.</p></li>
 </ul>
+
 <p>plugman aborts with a non-zero code for any plugin whose target
 project does not meet the engine's constraints.</p>
 
 <p>If no <code>&lt;engine&gt;</code> tags are specified, plugman attempts to install into
 the specified cordova project directory blindly.</p>
 
-<h2>
-<a name="Plugin%20Specification_name_element">
-name Element</a>
-</h2>
+<h2><a name="Plugin%20Specification_name_element">
+name Element</a></h2>
 
 <p>A human-readable name for the plugin, whose text content contains the
 name of the plugin. For example:</p>
@@ -332,10 +331,8 @@ name of the plugin. For example:</p>
 
 <p>This element does not (yet) handle localization.</p>
 
-<h2>
-<a name="Plugin%20Specification_description_element">
-description Element</a>
-</h2>
+<h2><a name="Plugin%20Specification_description_element">
+description Element</a></h2>
 
 <p>A human-readable description for the plugin. The text content of the element contains
 the description of the plugin. An example:</p>
@@ -345,10 +342,8 @@ the description of the plugin. An exampl
 
 <p>This element does not (yet) handle localization.</p>
 
-<h2>
-<a name="Plugin%20Specification_author_element">
-author Element</a>
-</h2>
+<h2><a name="Plugin%20Specification_author_element">
+author Element</a></h2>
 
 <p>Plugin author name. The text content of the element contains
 the name of the plugin author. An example:</p>
@@ -356,30 +351,24 @@ the name of the plugin author. An exampl
 <pre class="prettyprint"><code>&lt;author&gt;Foo plugin description&lt;/author&gt;
 </code></pre>
 
-<h2>
-<a name="Plugin%20Specification_keywords_element">
-keywords Element</a>
-</h2>
+<h2><a name="Plugin%20Specification_keywords_element">
+keywords Element</a></h2>
 
 <p>Plugin keywords. The text content of the element contains comma separated keywords to describe the plugin. An example:</p>
 
 <pre class="prettyprint"><code>&lt;keywords&gt;foo,bar&lt;/keywords&gt;
 </code></pre>
 
-<h2>
-<a name="Plugin%20Specification_license_element">
-license Element</a>
-</h2>
+<h2><a name="Plugin%20Specification_license_element">
+license Element</a></h2>
 
 <p>Plugin license. The text content of the element contains the plugin license. An example:</p>
 
 <pre class="prettyprint"><code>&lt;license&gt;Apache 2.0 License&lt;/license&gt;
 </code></pre>
 
-<h2>
-<a name="Plugin%20Specification_asset_element">
-asset Element</a>
-</h2>
+<h2><a name="Plugin%20Specification_asset_element">
+asset Element</a></h2>
 
 <p>One or more elements listing the files or directories to be copied
 into a Cordova app's <code>www</code> directory. Examples:</p>
@@ -420,10 +409,9 @@ issues a notification about the conflict
 code.</p>
 </li>
 </ul>
-<h2>
-<a name="Plugin%20Specification_js_module_element">
-js-module Element</a>
-</h2>
+
+<h2><a name="Plugin%20Specification_js_module_element">
+js-module Element</a></h2>
 
 <p>Most plugins include one or more JavaScript files.  Each <code>&lt;js-module&gt;</code>
 tag corresponds to a JavaScript file, and prevents the plugin's users
@@ -483,6 +471,7 @@ modules via <code>cordova.require</code>
 </ul>
 </li>
 </ul>
+
 <p>If <code>src</code> does not resolve to an existing file, plugman stops and
 reverses the installation, issues a notification of the problem, and
 exits with a non-zero code.</p>
@@ -490,10 +479,8 @@ exits with a non-zero code.</p>
 <p>Nesting <code>&lt;js-module&gt;</code> elements within <code>&lt;platform&gt;</code> declares
 platform-specific JavaScript module bindings.</p>
 
-<h2>
-<a name="Plugin%20Specification_dependency_element">
-dependency Element</a>
-</h2>
+<h2><a name="Plugin%20Specification_dependency_element">
+dependency Element</a></h2>
 
 <p>The <code>&lt;dependency&gt;</code> tag allows you to specify other plugins on which the
 current plugin depends. While future versions will access them from
@@ -517,6 +504,7 @@ subdirectory of the git repository. This
 allows the repository to contain several related plugins, each
 specified individually.</p></li>
 </ul>
+
 <p>In the future, version constraints will be introduced, and a plugin
 repository will exist to support fetching by name instead of explicit
 URLs.</p>
@@ -534,10 +522,8 @@ installed the plugin with a local path d
 the root of the git repository and then finds the other plugin from
 there.</p>
 
-<h2>
-<a name="Plugin%20Specification_platform_element">
-platform Element</a>
-</h2>
+<h2><a name="Plugin%20Specification_platform_element">
+platform Element</a></h2>
 
 <p>The <code>&lt;platform&gt;</code> tag identifies platforms that have associated native
 code or require modifications to their configuration files. Tools
@@ -568,13 +554,11 @@ chosen, are listed:</p>
 <li>android</li>
 <li>blackberry10</li>
 <li>ios</li>
-<li>wp7</li>
 <li>wp8</li>
 </ul>
-<h2>
-<a name="Plugin%20Specification_source_file_element">
-source-file Element</a>
-</h2>
+
+<h2><a name="Plugin%20Specification_source_file_element">
+source-file Element</a></h2>
 
 <p>The <code>&lt;source-file&gt;</code> element identifies executable source code that
 should be installed into a project. Examples:</p>
@@ -616,10 +600,9 @@ project.</p></li>
 If set, assigns the specified compiler flags for the particular
 source file.</p></li>
 </ul>
-<h2>
-<a name="Plugin%20Specification_config_file_element">
-config-file Element</a>
-</h2>
+
+<h2><a name="Plugin%20Specification_config_file_element">
+config-file Element</a></h2>
 
 <p>Identifies an XML-based configuration file to be modified, where in
 that document the modification should take place, and what should be
@@ -688,10 +671,9 @@ document, the tool stops and reverses th
 issues a warning, and exits with a non-zero code.</p>
 </li>
 </ul>
-<h2>
-<a name="Plugin%20Specification_plugins_plist_element">
-plugins-plist Element</a>
-</h2>
+
+<h2><a name="Plugin%20Specification_plugins_plist_element">
+plugins-plist Element</a></h2>
 
 <p>This is <em>outdated</em> as it only applies to cordova-ios 2.2.0 and
 below. Use the <code>&lt;config-file&gt;</code> tag for newer versions of Cordova.</p>
@@ -711,10 +693,8 @@ file in an iOS Cordova project. For exam
 <pre class="prettyprint"><code>&lt;plugins-plist key="Foo" string="CDVFoo" /&gt;
 </code></pre>
 
-<h2>
-<a name="Plugin%20Specification_resource_file_and_header_file_elements">
-resource-file and header-file Elements</a>
-</h2>
+<h2><a name="Plugin%20Specification_resource_file_and_header_file_elements">
+resource-file and header-file Elements</a></h2>
 
 <p>Like source files, but specifically for platforms such as iOS that
 distinguish between source files, headers, and resources. iOS Examples:</p>
@@ -729,10 +709,8 @@ distinguish between source files, header
 <pre class="prettyprint"><code>&lt;resource-file src="FooPluginStrings.xml" target="res/values/FooPluginStrings.xml" /&gt;
 </code></pre>
 
-<h2>
-<a name="Plugin%20Specification_lib_file_element">
-lib-file Element</a>
-</h2>
+<h2><a name="Plugin%20Specification_lib_file_element">
+lib-file Element</a></h2>
 
 <p>Like source, resource, and header files, but specifically for
 platforms such as BlackBerry 10 that use user-generated libraries.
@@ -753,10 +731,9 @@ non-zero code.</p></li>
 <li><p><code>arch</code>: The architecture for which the <code>.so</code> file has been built,
 either <code>device</code> or <code>simulator</code>.</p></li>
 </ul>
-<h2>
-<a name="Plugin%20Specification_framework_element">
-framework Element</a>
-</h2>
+
+<h2><a name="Plugin%20Specification_framework_element">
+framework Element</a></h2>
 
 <p>Identifies a framework (usually part of the OS/platform) on which the plugin depends.</p>
 
@@ -776,10 +753,8 @@ framework should be weakly linked. The d
 
 <p>The optional <code>custom</code> attribute is a boolean indicating whether the framework is one that is included as part of your plugin files (thus it is not a system framework). The default is <code>false</code>.</p>
 
-<h2>
-<a name="Plugin%20Specification_info_element">
-info Element</a>
-</h2>
+<h2><a name="Plugin%20Specification_info_element">
+info Element</a></h2>
 
 <p>Additional information provided to users. This is useful when you
 require extra steps that can't be easily automated or are beyond
@@ -794,9 +769,7 @@ android.library.reference.1=PATH_TO_ANDR
 &lt;/info&gt;
 </code></pre>
 
-<h2>
-<a name="Plugin%20Specification_variables">Variables</a>
-</h2>
+<h2><a name="Plugin%20Specification_variables">Variables</a></h2>
 
 <p>In certain cases, a plugin may need to make configuration changes
 dependent on the target application. For example, to register for C2DM
@@ -841,9 +814,7 @@ non-zero code.</p>
 
 <p>Certain variable names should be reserved, as listed below.</p>
 
-<h2>
-<a name="Plugin%20Specification_package_name">$PACKAGE_NAME</a>
-</h2>
+<h2><a name="Plugin%20Specification_package_name">$PACKAGE_NAME</a></h2>
 
 <p>The reverse-domain style unique identifier for the package,
 corresponding to the <code>CFBundleIdentifier</code> on iOS or the <code>package</code>
@@ -854,6 +825,7 @@ attribute of the top-level <code>manifes
         </div>
 
         <!-- Functionality and Syntax Highlighting -->
-        <script type="text/javascript" src="index.js"></script><script type="text/javascript" src="prettify/prettify.js"></script>
-</body>
+        <script type="text/javascript" src="index.js"></script>
+        <script type="text/javascript" src="prettify/prettify.js"></script>
+    </body>
 </html>

Modified: cordova/site/public/docs/en/edge/_index.html
URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/edge/_index.html?rev=1605933&r1=1605932&r2=1605933&view=diff
==============================================================================
--- cordova/site/public/docs/en/edge/_index.html (original)
+++ cordova/site/public/docs/en/edge/_index.html Thu Jun 26 23:55:47 2014
@@ -17,16 +17,18 @@
     specific language governing permissions and limitations
     under the License.
 --><html lang="en">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no, width=device-width">
-<meta name="generator" content="joDoc">
-<title>Apache Cordova API Documentation</title>
-<link rel="stylesheet" type="text/css" href="index.css">
-<link rel="stylesheet" type="text/css" href="mobile.css" media="only screen and (max-device-width: 1024px)">
-<link rel="stylesheet" type="text/css" href="prettify/prettify.css">
-</head>
-<body>
+    <head>
+        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+        <meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no, width=device-width">
+        <meta name="generator" content="joDoc">
+
+        <title>Apache Cordova API Documentation</title>
+
+        <link rel="stylesheet" type="text/css" href="index.css">
+        <link rel="stylesheet" type="text/css" href="mobile.css" media="only screen and (max-device-width: 1024px)">
+        <link rel="stylesheet" type="text/css" href="prettify/prettify.css">
+    </head>
+    <body>
         <div id="header">
             <h1><a href="index.html">Apache <strong>Cordova</strong> Documentation</a></h1>
             <small>
@@ -99,6 +101,7 @@
 <option value="3.1.0">3.1.0</option>
 <option value="2.0.0">2.0.0</option>
 </optgroup>
+<optgroup label="Polish" value="pl"><option value="edge">edge</option></optgroup>
 <optgroup label="Russian" value="ru">
 <option value="edge">edge</option>
 <option value="3.5.0">3.5.0</option>
@@ -115,7 +118,8 @@
 <option value="3.5.0">3.5.0</option>
 <option value="3.4.0">3.4.0</option>
 <option value="3.1.0">3.1.0</option>
-</optgroup></select></small>
+</optgroup></select>
+            </small>
         </div>
         <div id="subheader">
             <h1>Keyword Index</h1>
@@ -153,6 +157,8 @@
             <div id="content">
                 
 
+
+
 <h1>Keyword Index</h1>
 <div id="index">
 
@@ -170,6 +176,7 @@
 <li><a href="guide_platforms_android_webview.md.html#Android%20WebViews">Android WebViews</a></li>
 <li><a href="index.html#API%20Reference">API Reference</a></li>
 </ul>
+
 <h2>B</h2>
 
 <ul>
@@ -180,18 +187,22 @@
 <li><a href="guide_platforms_blackberry10_plugin.md.html#BlackBerry%2010%20Plugins">BlackBerry 10 Plugins</a></li>
 <li><a href="guide_platforms_blackberry10_tools.md.html#BlackBerry%2010%20Shell%20Tool%20Guide">BlackBerry 10 Shell Tool Guide</a></li>
 </ul>
+
 <h2>C</h2>
 
 <ul>
 <li><a href="guide_platforms_wp8_parallels.md.html#Configuring%20Parallels%20Desktop">Configuring Parallels Desktop</a></li>
 <li><a href="guide_platforms_wp8_vmware.md.html#Configuring%20VMWare%20Fusion">Configuring VMWare Fusion</a></li>
 </ul>
+
 <h2>D</h2>
 
 <ul>
 <li><a href="guide_next_index.md.html#Debugging">Debugging</a></li>
+<li><a href="guide_platforms_win8_plugin.md.html#Defining%20your%20plugin">Defining your plugin</a></li>
 <li><a href="cordova_events_events.md.html#deviceready">deviceready</a></li>
 </ul>
+
 <h2>E</h2>
 
 <ul>
@@ -199,22 +210,27 @@
 <li><a href="cordova_events_events.md.html#endcallbutton">endcallbutton</a></li>
 <li><a href="cordova_events_events.md.html#Events">Events</a></li>
 </ul>
+
 <h2>F</h2>
 
 <ul>
 <li><a href="guide_platforms_firefoxos_index.md.html#Firefox%20OS%20Platform%20Guide">Firefox OS Platform Guide</a></li>
 </ul>
+
 <h2>G</h2>
 
 <ul>
 <li><a href="guide_next_index.md.html#Getting%20Help">Getting Help</a></li>
 <li><a href="index.html#Guides">Guides</a></li>
 </ul>
+
 <h2>H</h2>
 
 <ul>
 <li><a href="guide_next_index.md.html#Handling%20Upgrades">Handling Upgrades</a></li>
+<li><a href="guide_platforms_win8_plugin.md.html#How%20WinJS%20accesses%20native/managed%20code">How WinJS accesses native/managed code</a></li>
 </ul>
+
 <h2>I</h2>
 
 <ul>
@@ -225,26 +241,31 @@
 <li><a href="guide_platforms_ios_tools.md.html#iOS%20Shell%20Tool%20Guide">iOS Shell Tool Guide</a></li>
 <li><a href="guide_platforms_ios_webview.md.html#iOS%20WebViews">iOS WebViews</a></li>
 </ul>
+
 <h2>K</h2>
 
 <ul>
 <li><a href="guide_next_index.md.html#Keeping%20Up">Keeping Up</a></li>
 </ul>
+
 <h2>M</h2>
 
 <ul>
 <li><a href="cordova_events_events.md.html#menubutton">menubutton</a></li>
 </ul>
+
 <h2>N</h2>
 
 <ul>
 <li><a href="guide_next_index.md.html#Next%20Steps">Next Steps</a></li>
 </ul>
+
 <h2>O</h2>
 
 <ul>
 <li><a href="guide_overview_index.md.html#Overview">Overview</a></li>
 </ul>
+
 <h2>P</h2>
 
 <ul>
@@ -256,19 +277,23 @@
 <li><a href="plugin_ref_spec.md.html#Plugin%20Specification">Plugin Specification</a></li>
 <li><a href="guide_appdev_privacy_index.md.html#Privacy%20Guide">Privacy Guide</a></li>
 </ul>
+
 <h2>R</h2>
 
 <ul>
 <li><a href="cordova_events_events.md.html#resume">resume</a></li>
 </ul>
+
 <h2>S</h2>
 
 <ul>
 <li><a href="cordova_events_events.md.html#searchbutton">searchbutton</a></li>
 <li><a href="guide_appdev_security_index.md.html#Security%20Guide">Security Guide</a></li>
+<li><a href="guide_platforms_win8_plugin.md.html#Some%20technical%20notes:">Some technical notes:</a></li>
 <li><a href="cordova_events_events.md.html#startcallbutton">startcallbutton</a></li>
 <li><a href="cordova_storage_storage.md.html#Storage">Storage</a></li>
 </ul>
+
 <h2>T</h2>
 
 <ul>
@@ -277,6 +302,7 @@
 <li><a href="config_ref_index.md.html#The%20config.xml%20File">The config.xml File</a></li>
 <li><a href="guide_platforms_tizen_index.md.html#Tizen%20Platform%20Guide">Tizen Platform Guide</a></li>
 </ul>
+
 <h2>U</h2>
 
 <ul>
@@ -290,17 +316,20 @@
 <li><a href="guide_next_index.md.html#User%20Interface">User Interface</a></li>
 <li><a href="plugin_ref_plugman.md.html#Using%20Plugman%20to%20Manage%20Plugins">Using Plugman to Manage Plugins</a></li>
 </ul>
+
 <h2>V</h2>
 
 <ul>
 <li><a href="cordova_events_events.md.html#volumedownbutton">volumedownbutton</a></li>
 <li><a href="cordova_events_events.md.html#volumeupbutton">volumeupbutton</a></li>
 </ul>
+
 <h2>W</h2>
 
 <ul>
 <li><a href="guide_appdev_whitelist_index.md.html#Whitelist%20Guide">Whitelist Guide</a></li>
 <li><a href="guide_platforms_win8_index.md.html#Windows%208%20Platform%20Guide">Windows 8 Platform Guide</a></li>
+<li><a href="guide_platforms_win8_plugin.md.html#Windows%208%20Plugins">Windows 8 Plugins</a></li>
 <li><a href="guide_platforms_wp8_index.md.html#Windows%20Phone%20Platform%20Guide">Windows Phone Platform Guide</a></li>
 <li><a href="guide_platforms_wp8_plugin.md.html#Windows%20Phone%20Plugins">Windows Phone Plugins</a></li>
 </ul>
@@ -311,6 +340,7 @@
         </div>
 
         <!-- Functionality and Syntax Highlighting -->
-        <script type="text/javascript" src="index.js"></script><script type="text/javascript" src="prettify/prettify.js"></script>
-</body>
+        <script type="text/javascript" src="index.js"></script>
+        <script type="text/javascript" src="prettify/prettify.js"></script>
+    </body>
 </html>

Modified: cordova/site/public/docs/en/edge/_index.json
URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/edge/_index.json?rev=1605933&r1=1605932&r2=1605933&view=diff
==============================================================================
--- cordova/site/public/docs/en/edge/_index.json (original)
+++ cordova/site/public/docs/en/edge/_index.json Thu Jun 26 23:55:47 2014
@@ -1 +1 @@
-[{"term":"Amazon Fire OS Configuration","url":"guide_platforms_amazonfireos_config.md.html"},{"term":"Amazon Fire OS Platform Guide","url":"guide_platforms_amazonfireos_index.md.html"},{"term":"Amazon Fire OS Plugins","url":"guide_platforms_amazonfireos_plugin.md.html"},{"term":"Amazon Fire OS WebViews","url":"guide_platforms_amazonfireos_webview.md.html"},{"term":"Android Configuration","url":"guide_platforms_android_config.md.html"},{"term":"Android Platform Guide","url":"guide_platforms_android_index.md.html"},{"term":"Android Plugins","url":"guide_platforms_android_plugin.md.html"},{"term":"Android Shell Tool Guide","url":"guide_platforms_android_tools.md.html"},{"term":"Android WebViews","url":"guide_platforms_android_webview.md.html"},{"term":"API Reference","url":"index.md.html"},{"term":"backbutton","url":"cordova_events_events.md.html"},{"term":"Best Practices","url":"guide_next_index.md.html"},{"term":"BlackBerry 10 Configuration","url":"guide_platforms_blackberry10_config
 .md.html"},{"term":"BlackBerry 10 Platform Guide","url":"guide_platforms_blackberry10_index.md.html"},{"term":"BlackBerry 10 Plugins","url":"guide_platforms_blackberry10_plugin.md.html"},{"term":"BlackBerry 10 Shell Tool Guide","url":"guide_platforms_blackberry10_tools.md.html"},{"term":"Configuring Parallels Desktop","url":"guide_platforms_wp8_parallels.md.html"},{"term":"Configuring VMWare Fusion","url":"guide_platforms_wp8_vmware.md.html"},{"term":"Debugging","url":"guide_next_index.md.html"},{"term":"deviceready","url":"cordova_events_events.md.html"},{"term":"Embedding WebViews","url":"guide_hybrid_webviews_index.md.html"},{"term":"endcallbutton","url":"cordova_events_events.md.html"},{"term":"Events","url":"cordova_events_events.md.html"},{"term":"Firefox OS Platform Guide","url":"guide_platforms_firefoxos_index.md.html"},{"term":"Getting Help","url":"guide_next_index.md.html"},{"term":"Guides","url":"index.md.html"},{"term":"Handling Upgrades","url":"guide_next_index.md.html"
 },{"term":"Icons and Splash Screens","url":"config_ref_images.md.html"},{"term":"iOS Configuration","url":"guide_platforms_ios_config.md.html"},{"term":"iOS Platform Guide","url":"guide_platforms_ios_index.md.html"},{"term":"iOS Plugins","url":"guide_platforms_ios_plugin.md.html"},{"term":"iOS Shell Tool Guide","url":"guide_platforms_ios_tools.md.html"},{"term":"iOS WebViews","url":"guide_platforms_ios_webview.md.html"},{"term":"Keeping Up","url":"guide_next_index.md.html"},{"term":"menubutton","url":"cordova_events_events.md.html"},{"term":"Next Steps","url":"guide_next_index.md.html"},{"term":"Overview","url":"guide_overview_index.md.html"},{"term":"pause","url":"cordova_events_events.md.html"},{"term":"Platform Guides","url":"guide_platforms_index.md.html"},{"term":"Platform Support","url":"guide_support_index.md.html"},{"term":"Plugin APIs","url":"cordova_plugins_pluginapis.md.html"},{"term":"Plugin Development Guide","url":"guide_hybrid_plugins_index.md.html"},{"term":"Plugin S
 pecification","url":"plugin_ref_spec.md.html"},{"term":"Privacy Guide","url":"guide_appdev_privacy_index.md.html"},{"term":"resume","url":"cordova_events_events.md.html"},{"term":"searchbutton","url":"cordova_events_events.md.html"},{"term":"Security Guide","url":"guide_appdev_security_index.md.html"},{"term":"startcallbutton","url":"cordova_events_events.md.html"},{"term":"Storage","url":"cordova_storage_storage.md.html"},{"term":"Testing","url":"guide_next_index.md.html"},{"term":"The Command-Line Interface","url":"guide_cli_index.md.html"},{"term":"The config.xml File","url":"config_ref_index.md.html"},{"term":"Tizen Platform Guide","url":"guide_platforms_tizen_index.md.html"},{"term":"Ubuntu Platform Guide","url":"guide_platforms_ubuntu_index.md.html"},{"term":"Upgrading Android","url":"guide_platforms_android_upgrade.md.html"},{"term":"Upgrading BlackBerry","url":"guide_platforms_blackberry_upgrade.md.html"},{"term":"Upgrading BlackBerry 10","url":"guide_platforms_blackberry10_
 upgrade.md.html"},{"term":"Upgrading iOS","url":"guide_platforms_ios_upgrade.md.html"},{"term":"Upgrading Windows 8","url":"guide_platforms_win8_upgrade.md.html"},{"term":"Upgrading Windows Phone","url":"guide_platforms_wp8_upgrade.md.html"},{"term":"User Interface","url":"guide_next_index.md.html"},{"term":"Using Plugman to Manage Plugins","url":"plugin_ref_plugman.md.html"},{"term":"volumedownbutton","url":"cordova_events_events.md.html"},{"term":"volumeupbutton","url":"cordova_events_events.md.html"},{"term":"Whitelist Guide","url":"guide_appdev_whitelist_index.md.html"},{"term":"Windows 8 Platform Guide","url":"guide_platforms_win8_index.md.html"},{"term":"Windows Phone Platform Guide","url":"guide_platforms_wp8_index.md.html"},{"term":"Windows Phone Plugins","url":"guide_platforms_wp8_plugin.md.html"}]
\ No newline at end of file
+[{"term":"Amazon Fire OS Configuration","url":"guide_platforms_amazonfireos_config.md.html"},{"term":"Amazon Fire OS Platform Guide","url":"guide_platforms_amazonfireos_index.md.html"},{"term":"Amazon Fire OS Plugins","url":"guide_platforms_amazonfireos_plugin.md.html"},{"term":"Amazon Fire OS WebViews","url":"guide_platforms_amazonfireos_webview.md.html"},{"term":"Android Configuration","url":"guide_platforms_android_config.md.html"},{"term":"Android Platform Guide","url":"guide_platforms_android_index.md.html"},{"term":"Android Plugins","url":"guide_platforms_android_plugin.md.html"},{"term":"Android Shell Tool Guide","url":"guide_platforms_android_tools.md.html"},{"term":"Android WebViews","url":"guide_platforms_android_webview.md.html"},{"term":"API Reference","url":"index.md.html"},{"term":"backbutton","url":"cordova_events_events.md.html"},{"term":"Best Practices","url":"guide_next_index.md.html"},{"term":"BlackBerry 10 Configuration","url":"guide_platforms_blackberry10_config
 .md.html"},{"term":"BlackBerry 10 Platform Guide","url":"guide_platforms_blackberry10_index.md.html"},{"term":"BlackBerry 10 Plugins","url":"guide_platforms_blackberry10_plugin.md.html"},{"term":"BlackBerry 10 Shell Tool Guide","url":"guide_platforms_blackberry10_tools.md.html"},{"term":"Configuring Parallels Desktop","url":"guide_platforms_wp8_parallels.md.html"},{"term":"Configuring VMWare Fusion","url":"guide_platforms_wp8_vmware.md.html"},{"term":"Debugging","url":"guide_next_index.md.html"},{"term":"Defining your plugin","url":"guide_platforms_win8_plugin.md.html"},{"term":"deviceready","url":"cordova_events_events.md.html"},{"term":"Embedding WebViews","url":"guide_hybrid_webviews_index.md.html"},{"term":"endcallbutton","url":"cordova_events_events.md.html"},{"term":"Events","url":"cordova_events_events.md.html"},{"term":"Firefox OS Platform Guide","url":"guide_platforms_firefoxos_index.md.html"},{"term":"Getting Help","url":"guide_next_index.md.html"},{"term":"Guides","url":"
 index.md.html"},{"term":"Handling Upgrades","url":"guide_next_index.md.html"},{"term":"How WinJS accesses native/managed code","url":"guide_platforms_win8_plugin.md.html"},{"term":"Icons and Splash Screens","url":"config_ref_images.md.html"},{"term":"iOS Configuration","url":"guide_platforms_ios_config.md.html"},{"term":"iOS Platform Guide","url":"guide_platforms_ios_index.md.html"},{"term":"iOS Plugins","url":"guide_platforms_ios_plugin.md.html"},{"term":"iOS Shell Tool Guide","url":"guide_platforms_ios_tools.md.html"},{"term":"iOS WebViews","url":"guide_platforms_ios_webview.md.html"},{"term":"Keeping Up","url":"guide_next_index.md.html"},{"term":"menubutton","url":"cordova_events_events.md.html"},{"term":"Next Steps","url":"guide_next_index.md.html"},{"term":"Overview","url":"guide_overview_index.md.html"},{"term":"pause","url":"cordova_events_events.md.html"},{"term":"Platform Guides","url":"guide_platforms_index.md.html"},{"term":"Platform Support","url":"guide_support_index.md
 .html"},{"term":"Plugin APIs","url":"cordova_plugins_pluginapis.md.html"},{"term":"Plugin Development Guide","url":"guide_hybrid_plugins_index.md.html"},{"term":"Plugin Specification","url":"plugin_ref_spec.md.html"},{"term":"Privacy Guide","url":"guide_appdev_privacy_index.md.html"},{"term":"resume","url":"cordova_events_events.md.html"},{"term":"searchbutton","url":"cordova_events_events.md.html"},{"term":"Security Guide","url":"guide_appdev_security_index.md.html"},{"term":"Some technical notes:","url":"guide_platforms_win8_plugin.md.html"},{"term":"startcallbutton","url":"cordova_events_events.md.html"},{"term":"Storage","url":"cordova_storage_storage.md.html"},{"term":"Testing","url":"guide_next_index.md.html"},{"term":"The Command-Line Interface","url":"guide_cli_index.md.html"},{"term":"The config.xml File","url":"config_ref_index.md.html"},{"term":"Tizen Platform Guide","url":"guide_platforms_tizen_index.md.html"},{"term":"Ubuntu Platform Guide","url":"guide_platforms_ubuntu
 _index.md.html"},{"term":"Upgrading Android","url":"guide_platforms_android_upgrade.md.html"},{"term":"Upgrading BlackBerry","url":"guide_platforms_blackberry_upgrade.md.html"},{"term":"Upgrading BlackBerry 10","url":"guide_platforms_blackberry10_upgrade.md.html"},{"term":"Upgrading iOS","url":"guide_platforms_ios_upgrade.md.html"},{"term":"Upgrading Windows 8","url":"guide_platforms_win8_upgrade.md.html"},{"term":"Upgrading Windows Phone","url":"guide_platforms_wp8_upgrade.md.html"},{"term":"User Interface","url":"guide_next_index.md.html"},{"term":"Using Plugman to Manage Plugins","url":"plugin_ref_plugman.md.html"},{"term":"volumedownbutton","url":"cordova_events_events.md.html"},{"term":"volumeupbutton","url":"cordova_events_events.md.html"},{"term":"Whitelist Guide","url":"guide_appdev_whitelist_index.md.html"},{"term":"Windows 8 Platform Guide","url":"guide_platforms_win8_index.md.html"},{"term":"Windows 8 Plugins","url":"guide_platforms_win8_plugin.md.html"},{"term":"Windows 
 Phone Platform Guide","url":"guide_platforms_wp8_index.md.html"},{"term":"Windows Phone Plugins","url":"guide_platforms_wp8_plugin.md.html"}]
\ No newline at end of file

Modified: cordova/site/public/docs/en/edge/config_ref_images.md.html
URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/edge/config_ref_images.md.html?rev=1605933&r1=1605932&r2=1605933&view=diff
==============================================================================
--- cordova/site/public/docs/en/edge/config_ref_images.md.html (original)
+++ cordova/site/public/docs/en/edge/config_ref_images.md.html Thu Jun 26 23:55:47 2014
@@ -17,16 +17,18 @@
     specific language governing permissions and limitations
     under the License.
 --><html lang="en">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no, width=device-width">
-<meta name="generator" content="joDoc">
-<title>Apache Cordova API Documentation</title>
-<link rel="stylesheet" type="text/css" href="index.css">
-<link rel="stylesheet" type="text/css" href="mobile.css" media="only screen and (max-device-width: 1024px)">
-<link rel="stylesheet" type="text/css" href="prettify/prettify.css">
-</head>
-<body>
+    <head>
+        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+        <meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no, width=device-width">
+        <meta name="generator" content="joDoc">
+
+        <title>Apache Cordova API Documentation</title>
+
+        <link rel="stylesheet" type="text/css" href="index.css">
+        <link rel="stylesheet" type="text/css" href="mobile.css" media="only screen and (max-device-width: 1024px)">
+        <link rel="stylesheet" type="text/css" href="prettify/prettify.css">
+    </head>
+    <body>
         <div id="header">
             <h1><a href="index.html">Apache <strong>Cordova</strong> Documentation</a></h1>
             <small>
@@ -99,6 +101,7 @@
 <option value="3.1.0">3.1.0</option>
 <option value="2.0.0">2.0.0</option>
 </optgroup>
+<optgroup label="Polish" value="pl"><option value="edge">edge</option></optgroup>
 <optgroup label="Russian" value="ru">
 <option value="edge">edge</option>
 <option value="3.5.0">3.5.0</option>
@@ -115,7 +118,8 @@
 <option value="3.5.0">3.5.0</option>
 <option value="3.4.0">3.4.0</option>
 <option value="3.1.0">3.1.0</option>
-</optgroup></select></small>
+</optgroup></select>
+            </small>
         </div>
         <div id="subheader">
             <h1>Icons and Splash Screens</h1>
@@ -163,9 +167,7 @@ screen for various platforms, both when 
 (described in <a href="guide_cli_index.md.html#The%20Command-Line%20Interface">The Command-Line Interface</a>) or using platform-specific
 SDK tools (detailed in the <a href="guide_platforms_index.md.html#Platform%20Guides">Platform Guides</a>).</p>
 
-<h2>
-<a name="Icons%20and%20Splash%20Screens_configuring_icons_in_the_cli">Configuring Icons in the CLI</a>
-</h2>
+<h2><a name="Icons%20and%20Splash%20Screens_configuring_icons_in_the_cli">Configuring Icons in the CLI</a></h2>
 
 <p>When working in the CLI you can define app icon(s) via <code>&lt;icon&gt;</code> element (<code>config.xml</code>).
 If you do not specify an icon then the Apache Cordova logo is used.</p>
@@ -284,9 +286,7 @@ different screen resolutions.</p>
      &lt;/platform&gt;
 </code></pre>
 
-<h2>
-<a name="Icons%20and%20Splash%20Screens_configuring_splash_screens_in_the_cli">Configuring Splash Screens in the CLI</a>
-</h2>
+<h2><a name="Icons%20and%20Splash%20Screens_configuring_splash_screens_in_the_cli">Configuring Splash Screens in the CLI</a></h2>
 
 <p>Use the Splashscreen API to enable display of an app's introductory
 splash screen on many platforms.  When working in the CLI, splash
@@ -333,9 +333,7 @@ Guides</a>.</p>
 <p>Don't forget to install the SplashScreen plugin before trying to use the
 <code>navigator.splashscreen.hide()</code> or <code>navigator.splashscreen.show()</code> methods.</p>
 
-<h2>
-<a name="Icons%20and%20Splash%20Screens_splash_screens_for_the_android_platform">Splash Screens for the Android Platform</a>
-</h2>
+<h2><a name="Icons%20and%20Splash%20Screens_splash_screens_for_the_android_platform">Splash Screens for the Android Platform</a></h2>
 
 <p>Place <a class="external" href="https://developer.android.com/tools/help/draw9patch.html">9-patch image</a>
 files in the Android project's <code>platforms/android/res/drawable*</code> directories.</p>
@@ -348,6 +346,7 @@ files in the Android project's <code>pla
 <li>medium (mdpi): at least 470 × 320</li>
 <li>small (ldpi): at least 426 × 320</li>
 </ul>
+
 <p>When creating a new Android project, the default splash screen images
 provided in the Cordova sample app should already be present in the
 <code>platforms/android/res/drawable*</code> directories. Feel free to replace these
@@ -390,9 +389,7 @@ which is likely longer than necessary.
 This event-driven approach is highly recommended versus having the splash
 screen visible for always a fixed duration.</p>
 
-<h2>
-<a name="Icons%20and%20Splash%20Screens_splash_screens_for_the_ios_platform">Splash Screens for the iOS Platform</a>
-</h2>
+<h2><a name="Icons%20and%20Splash%20Screens_splash_screens_for_the_ios_platform">Splash Screens for the iOS Platform</a></h2>
 
 <p>Copy splash screen images into the iOS project's <code>Resources/splash</code>
 directory. Only add those images for the devices you want to support,
@@ -407,9 +404,8 @@ such as iPad or iPhone. The size of each
 <li>Default@2x~iphone.png (640x960 pixels)</li>
 <li>Default~iphone.png (320x480 pixels)</li>
 </ul>
-<h2>
-<a name="Icons%20and%20Splash%20Screens_splash_screens_for_the_blackberry_10_platform">Splash Screens for the BlackBerry 10 Platform</a>
-</h2>
+
+<h2><a name="Icons%20and%20Splash%20Screens_splash_screens_for_the_blackberry_10_platform">Splash Screens for the BlackBerry 10 Platform</a></h2>
 
 <p>Add a rim:splash element to config.xml for each resolution and locale you wish
 to support:</p>
@@ -420,6 +416,7 @@ to support:</p>
         </div>
 
         <!-- Functionality and Syntax Highlighting -->
-        <script type="text/javascript" src="index.js"></script><script type="text/javascript" src="prettify/prettify.js"></script>
-</body>
+        <script type="text/javascript" src="index.js"></script>
+        <script type="text/javascript" src="prettify/prettify.js"></script>
+    </body>
 </html>

Modified: cordova/site/public/docs/en/edge/config_ref_index.md.html
URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/edge/config_ref_index.md.html?rev=1605933&r1=1605932&r2=1605933&view=diff
==============================================================================
--- cordova/site/public/docs/en/edge/config_ref_index.md.html (original)
+++ cordova/site/public/docs/en/edge/config_ref_index.md.html Thu Jun 26 23:55:47 2014
@@ -17,16 +17,18 @@
     specific language governing permissions and limitations
     under the License.
 --><html lang="en">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no, width=device-width">
-<meta name="generator" content="joDoc">
-<title>Apache Cordova API Documentation</title>
-<link rel="stylesheet" type="text/css" href="index.css">
-<link rel="stylesheet" type="text/css" href="mobile.css" media="only screen and (max-device-width: 1024px)">
-<link rel="stylesheet" type="text/css" href="prettify/prettify.css">
-</head>
-<body>
+    <head>
+        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+        <meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no, width=device-width">
+        <meta name="generator" content="joDoc">
+
+        <title>Apache Cordova API Documentation</title>
+
+        <link rel="stylesheet" type="text/css" href="index.css">
+        <link rel="stylesheet" type="text/css" href="mobile.css" media="only screen and (max-device-width: 1024px)">
+        <link rel="stylesheet" type="text/css" href="prettify/prettify.css">
+    </head>
+    <body>
         <div id="header">
             <h1><a href="index.html">Apache <strong>Cordova</strong> Documentation</a></h1>
             <small>
@@ -99,6 +101,7 @@
 <option value="3.1.0">3.1.0</option>
 <option value="2.0.0">2.0.0</option>
 </optgroup>
+<optgroup label="Polish" value="pl"><option value="edge">edge</option></optgroup>
 <optgroup label="Russian" value="ru">
 <option value="edge">edge</option>
 <option value="3.5.0">3.5.0</option>
@@ -115,7 +118,8 @@
 <option value="3.5.0">3.5.0</option>
 <option value="3.4.0">3.4.0</option>
 <option value="3.1.0">3.1.0</option>
-</optgroup></select></small>
+</optgroup></select>
+            </small>
         </div>
         <div id="subheader">
             <h1>The config.xml File</h1>
@@ -191,13 +195,12 @@ See the following sections for platform-
 <li><a href="guide_platforms_android_config.md.html#Android%20Configuration">Android Configuration</a></li>
 <li><a href="guide_platforms_blackberry10_config.md.html#BlackBerry%2010%20Configuration">BlackBerry 10 Configuration</a></li>
 </ul>
+
 <p>In addition to the various configuration options detailed below, you
 can also configure an application's core set of images for each target
 platform. See <a href="config_ref_images.md.html#Icons%20and%20Splash%20Screens">Icons and Splash Screens</a> for more information.</p>
 
-<h2>
-<a name="The%20config.xml%20File_core_configuration_elements">Core Configuration Elements</a>
-</h2>
+<h2><a name="The%20config.xml%20File_core_configuration_elements">Core Configuration Elements</a></h2>
 
 <p>This example shows the default <code>config.xml</code> generated by the CLI's
 <code>create</code> command, described in <a href="guide_cli_index.md.html#The%20Command-Line%20Interface">The Command-Line Interface</a>:</p>
@@ -240,9 +243,8 @@ case-insensitive.  Many preferences are 
 platforms, as listed at the top of this page. The following sections
 detail preferences that apply to more than one platform.</p></li>
 </ul>
-<h2>
-<a name="The%20config.xml%20File_global_preferences">Global Preferences</a>
-</h2>
+
+<h2><a name="The%20config.xml%20File_global_preferences">Global Preferences</a></h2>
 
 <p>The following global preferences apply to all platforms:</p>
 
@@ -268,9 +270,8 @@ default settings (usually portrait-only)
 <code>config.xml</code> file.</p>
 </li>
 </ul>
-<h2>
-<a name="The%20config.xml%20File_multi_platform_preferences">Multi-Platform Preferences</a>
-</h2>
+
+<h2><a name="The%20config.xml%20File_multi_platform_preferences">Multi-Platform Preferences</a></h2>
 
 <p>The following preferences apply to more than one platform, but not to
 all of them:</p>
@@ -312,9 +313,8 @@ keyboard, helping users navigate from on
 <p>Applies to iOS and BlackBerry. </p>
 </li>
 </ul>
-<h2>
-<a name="The%20config.xml%20File_the_feature_element">The feature Element</a>
-</h2>
+
+<h2><a name="The%20config.xml%20File_the_feature_element">The feature Element</a></h2>
 
 <p>If you use the CLI to build applications, you use the <code>plugin</code> command
 to enable device APIs. This does not modify the top-level <code>config.xml</code>
@@ -340,9 +340,7 @@ Device API for Android projects:</p>
 <p>See the <a href="index.md.html#API%20Reference">API Reference</a> for details on how to specify each feature. See
 the <a href="guide_hybrid_plugins_index.md.html#Plugin%20Development%20Guide">Plugin Development Guide</a> for more information on plugins.</p>
 
-<h2>
-<a name="The%20config.xml%20File_the_platform_element">The platform Element</a>
-</h2>
+<h2><a name="The%20config.xml%20File_the_platform_element">The platform Element</a></h2>
 
 <p>When using the CLI to build applications, it is sometimes necessary to specify
 preferences or other elements specific to a particular platform. Use the <code>&lt;platform&gt;</code>
@@ -359,6 +357,7 @@ Fullscreen preference:</p>
         </div>
 
         <!-- Functionality and Syntax Highlighting -->
-        <script type="text/javascript" src="index.js"></script><script type="text/javascript" src="prettify/prettify.js"></script>
-</body>
+        <script type="text/javascript" src="index.js"></script>
+        <script type="text/javascript" src="prettify/prettify.js"></script>
+    </body>
 </html>

Modified: cordova/site/public/docs/en/edge/cordova_events_events.md.html
URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/edge/cordova_events_events.md.html?rev=1605933&r1=1605932&r2=1605933&view=diff
==============================================================================
--- cordova/site/public/docs/en/edge/cordova_events_events.md.html (original)
+++ cordova/site/public/docs/en/edge/cordova_events_events.md.html Thu Jun 26 23:55:47 2014
@@ -17,16 +17,18 @@
     specific language governing permissions and limitations
     under the License.
 --><html lang="en">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no, width=device-width">
-<meta name="generator" content="joDoc">
-<title>Apache Cordova API Documentation</title>
-<link rel="stylesheet" type="text/css" href="index.css">
-<link rel="stylesheet" type="text/css" href="mobile.css" media="only screen and (max-device-width: 1024px)">
-<link rel="stylesheet" type="text/css" href="prettify/prettify.css">
-</head>
-<body>
+    <head>
+        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+        <meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no, width=device-width">
+        <meta name="generator" content="joDoc">
+
+        <title>Apache Cordova API Documentation</title>
+
+        <link rel="stylesheet" type="text/css" href="index.css">
+        <link rel="stylesheet" type="text/css" href="mobile.css" media="only screen and (max-device-width: 1024px)">
+        <link rel="stylesheet" type="text/css" href="prettify/prettify.css">
+    </head>
+    <body>
         <div id="header">
             <h1><a href="index.html">Apache <strong>Cordova</strong> Documentation</a></h1>
             <small>
@@ -99,6 +101,7 @@
 <option value="3.1.0">3.1.0</option>
 <option value="2.0.0">2.0.0</option>
 </optgroup>
+<optgroup label="Polish" value="pl"><option value="edge">edge</option></optgroup>
 <optgroup label="Russian" value="ru">
 <option value="edge">edge</option>
 <option value="3.5.0">3.5.0</option>
@@ -115,7 +118,8 @@
 <option value="3.5.0">3.5.0</option>
 <option value="3.4.0">3.4.0</option>
 <option value="3.1.0">3.1.0</option>
-</optgroup></select></small>
+</optgroup></select>
+            </small>
         </div>
         <div id="subheader">
             <h1>Events</h1>
@@ -216,9 +220,7 @@ Events added by org.apache.cordova.netwo
   <p>Cordova lifecycle events.</p>
 </blockquote>
 
-<h2>
-<a name="Events_event_types">Event Types</a>
-</h2>
+<h2><a name="Events_event_types">Event Types</a></h2>
 
 <ul>
 <li><a href="cordova_events_events.md.html#deviceready">deviceready</a></li>
@@ -232,28 +234,28 @@ Events added by org.apache.cordova.netwo
 <li><a href="cordova_events_events.md.html#volumedownbutton">volumedownbutton</a></li>
 <li><a href="cordova_events_events.md.html#volumeupbutton">volumeupbutton</a></li>
 </ul>
-<h2>
-<a name="Events_events_added_by_org_apache_cordova_battery_status">
+
+<h2><a name="Events_events_added_by_org_apache_cordova_battery_status">
 Events added by org.apache.cordova.battery-status
-</a>
-</h2>
+</a></h2>
 
 <ul>
 <li>batterycritical</li>
 <li>batterylow</li>
 <li>batterystatus</li>
 </ul>
-<h2>
-<a name="Events_events_added_by_org_apache_cordova_network_information">
+
+<h2><a name="Events_events_added_by_org_apache_cordova_network_information">
 Events added by org.apache.cordova.network-information
-</a>
-</h2>
+</a></h2>
 
 <ul>
 <li>online</li>
 <li>offline</li>
 </ul>
+
 <hr>
+
 <h1><a name="deviceready">deviceready</a></h1>
 
 <p>The event fires when Cordova is fully loaded.</p>
@@ -261,9 +263,7 @@ Events added by org.apache.cordova.netwo
 <pre class="prettyprint"><code>document.addEventListener("<a href="cordova_events_events.md.html#deviceready">deviceready</a>", yourCallbackFunction, false);
 </code></pre>
 
-<h2>
-<a name="deviceready_details">Details</a>
-</h2>
+<h2><a name="deviceready_details">Details</a></h2>
 
 <p>This event is essential to any application. It signals that Cordova's
 device APIs have loaded and are ready to access.</p>
@@ -283,9 +283,7 @@ once the HTML document's DOM has loaded.
 event handler registered after the <code><a href="cordova_events_events.md.html#deviceready">deviceready</a></code> event fires has its
 callback function called immediately.</p>
 
-<h2>
-<a name="deviceready_supported_platforms">Supported Platforms</a>
-</h2>
+<h2><a name="deviceready_supported_platforms">Supported Platforms</a></h2>
 
 <ul>
 <li>Amazon Fire OS</li>
@@ -293,12 +291,11 @@ callback function called immediately.</p
 <li>BlackBerry 10</li>
 <li>iOS</li>
 <li>Tizen</li>
-<li>Windows Phone 7 and 8</li>
+<li>Windows Phone 8</li>
 <li>Windows 8</li>
 </ul>
-<h2>
-<a name="deviceready_quick_example">Quick Example</a>
-</h2>
+
+<h2><a name="deviceready_quick_example">Quick Example</a></h2>
 
 <pre class="prettyprint"><code>document.addEventListener("<a href="cordova_events_events.md.html#deviceready">deviceready</a>", onDeviceReady, false);
 
@@ -307,9 +304,7 @@ function onDeviceReady() {
 }
 </code></pre>
 
-<h2>
-<a name="deviceready_full_example">Full Example</a>
-</h2>
+<h2><a name="deviceready_full_example">Full Example</a></h2>
 
 <pre class="prettyprint"><code>&lt;!DOCTYPE html&gt;
 &lt;html&gt;
@@ -339,6 +334,7 @@ function onDeviceReady() {
 </code></pre>
 
 <hr>
+
 <h1><a name="pause">pause</a></h1>
 
 <p>The event fires when an application is put into the background.</p>
@@ -346,9 +342,7 @@ function onDeviceReady() {
 <pre class="prettyprint"><code>document.addEventListener("<a href="cordova_events_events.md.html#pause">pause</a>", yourCallbackFunction, false);
 </code></pre>
 
-<h2>
-<a name="pause_details">Details</a>
-</h2>
+<h2><a name="pause_details">Details</a></h2>
 
 <p>The <code><a href="cordova_events_events.md.html#pause">pause</a></code> event fires when the native platform puts the application
 into the background, typically when the user switches to a different
@@ -357,21 +351,18 @@ application.</p>
 <p>Applications typically should use <code>document.addEventListener</code> to
 attach an event listener once the <code><a href="cordova_events_events.md.html#deviceready">deviceready</a></code> event fires.</p>
 
-<h2>
-<a name="pause_supported_platforms">Supported Platforms</a>
-</h2>
+<h2><a name="pause_supported_platforms">Supported Platforms</a></h2>
 
 <ul>
 <li>Amazon Fire OS</li>
 <li>Android</li>
 <li>BlackBerry 10</li>
 <li>iOS</li>
-<li>Windows Phone 7 and 8</li>
+<li>Windows Phone 8</li>
 <li>Windows 8</li>
 </ul>
-<h2>
-<a name="pause_quick_example">Quick Example</a>
-</h2>
+
+<h2><a name="pause_quick_example">Quick Example</a></h2>
 
 <pre class="prettyprint"><code>document.addEventListener("<a href="cordova_events_events.md.html#pause">pause</a>", onPause, false);
 
@@ -380,9 +371,7 @@ function onPause() {
 }
 </code></pre>
 
-<h2>
-<a name="pause_full_example">Full Example</a>
-</h2>
+<h2><a name="pause_full_example">Full Example</a></h2>
 
 <pre class="prettyprint"><code>&lt;!DOCTYPE html&gt;
 &lt;html&gt;
@@ -416,9 +405,7 @@ function onPause() {
 &lt;/html&gt;
 </code></pre>
 
-<h2>
-<a name="pause_ios_quirks">iOS Quirks</a>
-</h2>
+<h2><a name="pause_ios_quirks">iOS Quirks</a></h2>
 
 <p>In the <code><a href="cordova_events_events.md.html#pause">pause</a></code> handler, any calls to the Cordova API or to native
 plugins that go through Objective-C do not work, along with any
@@ -437,6 +424,7 @@ multi-tasking by setting
 to <code>YES</code>. To run when locked on iOS 4, this setting does not matter.</p>
 
 <hr>
+
 <h1><a name="resume">resume</a></h1>
 
 <p>The event fires when an application is retrieved from the background.</p>
@@ -444,9 +432,7 @@ to <code>YES</code>. To run when locked 
 <pre class="prettyprint"><code>document.addEventListener("<a href="cordova_events_events.md.html#resume">resume</a>", yourCallbackFunction, false);
 </code></pre>
 
-<h2>
-<a name="resume_details">Details</a>
-</h2>
+<h2><a name="resume_details">Details</a></h2>
 
 <p>The <code><a href="cordova_events_events.md.html#resume">resume</a></code> event fires when the native platform pulls the
 application out from the background.</p>
@@ -454,21 +440,18 @@ application out from the background.</p>
 <p>Applications typically should use <code>document.addEventListener</code> to
 attach an event listener once the <code><a href="cordova_events_events.md.html#deviceready">deviceready</a></code> event fires.</p>
 
-<h2>
-<a name="resume_supported_platforms">Supported Platforms</a>
-</h2>
+<h2><a name="resume_supported_platforms">Supported Platforms</a></h2>
 
 <ul>
 <li>Amazon Fire OS</li>
 <li>Android</li>
 <li>BlackBerry 10</li>
 <li>iOS</li>
-<li>Windows Phone 7 and 8</li>
+<li>Windows Phone 8</li>
 <li>Windows 8</li>
 </ul>
-<h2>
-<a name="resume_quick_example">Quick Example</a>
-</h2>
+
+<h2><a name="resume_quick_example">Quick Example</a></h2>
 
 <pre class="prettyprint"><code>document.addEventListener("<a href="cordova_events_events.md.html#resume">resume</a>", onResume, false);
 
@@ -477,9 +460,7 @@ function onResume() {
 }
 </code></pre>
 
-<h2>
-<a name="resume_full_example">Full Example</a>
-</h2>
+<h2><a name="resume_full_example">Full Example</a></h2>
 
 <pre class="prettyprint"><code>&lt;!DOCTYPE html&gt;
 &lt;html&gt;
@@ -513,9 +494,7 @@ function onResume() {
 &lt;/html&gt;
 </code></pre>
 
-<h2>
-<a name="resume_ios_quirks">iOS Quirks</a>
-</h2>
+<h2><a name="resume_ios_quirks">iOS Quirks</a></h2>
 
 <p>Any interactive functions called from a <code><a href="cordova_events_events.md.html#pause">pause</a></code> event handler execute
 later when the app resumes, as signaled by the <code><a href="cordova_events_events.md.html#resume">resume</a></code> event. These
@@ -552,7 +531,9 @@ function onResume() {
 </code></pre>
 </li>
 </ul>
+
 <hr>
+
 <h1><a name="backbutton">backbutton</a></h1>
 
 <p>The event fires when the user presses the back button.</p>
@@ -560,9 +541,7 @@ function onResume() {
 <pre class="prettyprint"><code>document.addEventListener("<a href="cordova_events_events.md.html#backbutton">backbutton</a>", yourCallbackFunction, false);
 </code></pre>
 
-<h2>
-<a name="backbutton_details">Details</a>
-</h2>
+<h2><a name="backbutton_details">Details</a></h2>
 
 <p>To override the default back-button behavior, register an event
 listener for the <code><a href="cordova_events_events.md.html#backbutton">backbutton</a></code> event, typically by calling
@@ -570,19 +549,16 @@ listener for the <code><a href="cordova_
 It is no longer necessary to call any other method to override the
 back-button behavior.</p>
 
-<h2>
-<a name="backbutton_supported_platforms">Supported Platforms</a>
-</h2>
+<h2><a name="backbutton_supported_platforms">Supported Platforms</a></h2>
 
 <ul>
 <li>Amazon Fire OS</li>
 <li>Android</li>
 <li>BlackBerry 10</li>
-<li>Windows Phone 7 and 8</li>
+<li>Windows Phone 8</li>
 </ul>
-<h2>
-<a name="backbutton_quick_example">Quick Example</a>
-</h2>
+
+<h2><a name="backbutton_quick_example">Quick Example</a></h2>
 
 <pre class="prettyprint"><code>document.addEventListener("<a href="cordova_events_events.md.html#backbutton">backbutton</a>", onBackKeyDown, false);
 
@@ -591,9 +567,7 @@ function onBackKeyDown() {
 }
 </code></pre>
 
-<h2>
-<a name="backbutton_full_example">Full Example</a>
-</h2>
+<h2><a name="backbutton_full_example">Full Example</a></h2>
 
 <pre class="prettyprint"><code>&lt;!DOCTYPE html&gt;
 &lt;html&gt;
@@ -629,6 +603,7 @@ function onBackKeyDown() {
 </code></pre>
 
 <hr>
+
 <h1><a name="menubutton">menubutton</a></h1>
 
 <p>The event fires when the user presses the menu button.</p>
@@ -636,27 +611,22 @@ function onBackKeyDown() {
 <pre class="prettyprint"><code>document.addEventListener("<a href="cordova_events_events.md.html#menubutton">menubutton</a>", yourCallbackFunction, false);
 </code></pre>
 
-<h2>
-<a name="menubutton_details">Details</a>
-</h2>
+<h2><a name="menubutton_details">Details</a></h2>
 
 <p>Applying an event handler overrides the default menu button behavior.</p>
 
 <p>Applications typically should use <code>document.addEventListener</code> to
 attach an event listener once the <code><a href="cordova_events_events.md.html#deviceready">deviceready</a></code> event fires.</p>
 
-<h2>
-<a name="menubutton_supported_platforms">Supported Platforms</a>
-</h2>
+<h2><a name="menubutton_supported_platforms">Supported Platforms</a></h2>
 
 <ul>
 <li>Amazon Fire OS</li>
 <li>Android</li>
 <li>BlackBerry 10</li>
 </ul>
-<h2>
-<a name="menubutton_quick_example">Quick Example</a>
-</h2>
+
+<h2><a name="menubutton_quick_example">Quick Example</a></h2>
 
 <pre class="prettyprint"><code>document.addEventListener("<a href="cordova_events_events.md.html#menubutton">menubutton</a>", onMenuKeyDown, false);
 
@@ -665,9 +635,7 @@ function onMenuKeyDown() {
 }
 </code></pre>
 
-<h2>
-<a name="menubutton_full_example">Full Example</a>
-</h2>
+<h2><a name="menubutton_full_example">Full Example</a></h2>
 
 <pre class="prettyprint"><code>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
                       "http://www.w3.org/TR/html4/strict.dtd"&gt;
@@ -704,6 +672,7 @@ function onMenuKeyDown() {
 </code></pre>
 
 <hr>
+
 <h1><a name="searchbutton">searchbutton</a></h1>
 
 <p>The event fires when the user presses the search button on Android.</p>
@@ -711,9 +680,7 @@ function onMenuKeyDown() {
 <pre class="prettyprint"><code>document.addEventListener("<a href="cordova_events_events.md.html#searchbutton">searchbutton</a>", yourCallbackFunction, false);
 </code></pre>
 
-<h2>
-<a name="searchbutton_details">Details</a>
-</h2>
+<h2><a name="searchbutton_details">Details</a></h2>
 
 <p>If you need to override the default search button behavior on Android
 you can register an event listener for the '<a href="cordova_events_events.md.html#searchbutton">searchbutton</a>' event.</p>
@@ -721,16 +688,13 @@ you can register an event listener for t
 <p>Applications typically should use <code>document.addEventListener</code> to
 attach an event listener once the <code><a href="cordova_events_events.md.html#deviceready">deviceready</a></code> event fires.</p>
 
-<h2>
-<a name="searchbutton_supported_platforms">Supported Platforms</a>
-</h2>
+<h2><a name="searchbutton_supported_platforms">Supported Platforms</a></h2>
 
 <ul>
 <li>Android</li>
 </ul>
-<h2>
-<a name="searchbutton_quick_example">Quick Example</a>
-</h2>
+
+<h2><a name="searchbutton_quick_example">Quick Example</a></h2>
 
 <pre class="prettyprint"><code>document.addEventListener("<a href="cordova_events_events.md.html#searchbutton">searchbutton</a>", onSearchKeyDown, false);
 
@@ -739,9 +703,7 @@ function onSearchKeyDown() {
 }
 </code></pre>
 
-<h2>
-<a name="searchbutton_full_example">Full Example</a>
-</h2>
+<h2><a name="searchbutton_full_example">Full Example</a></h2>
 
 <pre class="prettyprint"><code>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
                       "http://www.w3.org/TR/html4/strict.dtd"&gt;
@@ -778,6 +740,7 @@ function onSearchKeyDown() {
 </code></pre>
 
 <hr>
+
 <h1><a name="startcallbutton">startcallbutton</a></h1>
 
 <p>The event fires when the user presses the start call button.</p>
@@ -785,9 +748,7 @@ function onSearchKeyDown() {
 <pre class="prettyprint"><code>document.addEventListener("<a href="cordova_events_events.md.html#startcallbutton">startcallbutton</a>", yourCallbackFunction, false);
 </code></pre>
 
-<h2>
-<a name="startcallbutton_details">Details</a>
-</h2>
+<h2><a name="startcallbutton_details">Details</a></h2>
 
 <p>If you need to override the default start call behavior you can
 register an event listener for the <code><a href="cordova_events_events.md.html#startcallbutton">startcallbutton</a></code> event.</p>
@@ -795,16 +756,13 @@ register an event listener for the <code
 <p>Applications typically should use <code>document.addEventListener</code> to
 attach an event listener once the <code><a href="cordova_events_events.md.html#deviceready">deviceready</a></code> event fires.</p>
 
-<h2>
-<a name="startcallbutton_supported_platforms">Supported Platforms</a>
-</h2>
+<h2><a name="startcallbutton_supported_platforms">Supported Platforms</a></h2>
 
 <ul>
 <li>BlackBerry 10</li>
 </ul>
-<h2>
-<a name="startcallbutton_quick_example">Quick Example</a>
-</h2>
+
+<h2><a name="startcallbutton_quick_example">Quick Example</a></h2>
 
 <pre class="prettyprint"><code>document.addEventListener("<a href="cordova_events_events.md.html#startcallbutton">startcallbutton</a>", onStartCallKeyDown, false);
 
@@ -813,9 +771,7 @@ function onStartCallKeyDown() {
 }
 </code></pre>
 
-<h2>
-<a name="startcallbutton_full_example">Full Example</a>
-</h2>
+<h2><a name="startcallbutton_full_example">Full Example</a></h2>
 
 <pre class="prettyprint"><code>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
                       "http://www.w3.org/TR/html4/strict.dtd"&gt;
@@ -852,6 +808,7 @@ function onStartCallKeyDown() {
 </code></pre>
 
 <hr>
+
 <h1><a name="endcallbutton">endcallbutton</a></h1>
 
 <p>This event fires when the user presses the end call button.</p>
@@ -859,25 +816,20 @@ function onStartCallKeyDown() {
 <pre class="prettyprint"><code>document.addEventListener("<a href="cordova_events_events.md.html#endcallbutton">endcallbutton</a>", yourCallbackFunction, false);
 </code></pre>
 
-<h2>
-<a name="endcallbutton_details">Details</a>
-</h2>
+<h2><a name="endcallbutton_details">Details</a></h2>
 
 <p>The event overrides the default end call behavior.</p>
 
 <p>Applications typically should use <code>document.addEventListener</code> to
 attach an event listener once the <code><a href="cordova_events_events.md.html#deviceready">deviceready</a></code> event fires.</p>
 
-<h2>
-<a name="endcallbutton_supported_platforms">Supported Platforms</a>
-</h2>
+<h2><a name="endcallbutton_supported_platforms">Supported Platforms</a></h2>
 
 <ul>
 <li>BlackBerry 10</li>
 </ul>
-<h2>
-<a name="endcallbutton_quick_example">Quick Example</a>
-</h2>
+
+<h2><a name="endcallbutton_quick_example">Quick Example</a></h2>
 
 <pre class="prettyprint"><code>document.addEventListener("<a href="cordova_events_events.md.html#endcallbutton">endcallbutton</a>", onEndCallKeyDown, false);
 
@@ -886,9 +838,7 @@ function onEndCallKeyDown() {
 }
 </code></pre>
 
-<h2>
-<a name="endcallbutton_full_example">Full Example</a>
-</h2>
+<h2><a name="endcallbutton_full_example">Full Example</a></h2>
 
 <pre class="prettyprint"><code>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
                       "http://www.w3.org/TR/html4/strict.dtd"&gt;
@@ -925,6 +875,7 @@ function onEndCallKeyDown() {
 </code></pre>
 
 <hr>
+
 <h1><a name="volumedownbutton">volumedownbutton</a></h1>
 
 <p>The event fires when the user presses the volume down button.</p>
@@ -932,9 +883,7 @@ function onEndCallKeyDown() {
 <pre class="prettyprint"><code>document.addEventListener("<a href="cordova_events_events.md.html#volumedownbutton">volumedownbutton</a>", yourCallbackFunction, false);
 </code></pre>
 
-<h2>
-<a name="volumedownbutton_details">Details</a>
-</h2>
+<h2><a name="volumedownbutton_details">Details</a></h2>
 
 <p>If you need to override the default volume down behavior you can
 register an event listener for the <code><a href="cordova_events_events.md.html#volumedownbutton">volumedownbutton</a></code> event.</p>
@@ -942,16 +891,13 @@ register an event listener for the <code
 <p>Applications typically should use <code>document.addEventListener</code> to
 attach an event listener once the <code><a href="cordova_events_events.md.html#deviceready">deviceready</a></code> event fires.</p>
 
-<h2>
-<a name="volumedownbutton_supported_platforms">Supported Platforms</a>
-</h2>
+<h2><a name="volumedownbutton_supported_platforms">Supported Platforms</a></h2>
 
 <ul>
 <li>BlackBerry 10</li>
 </ul>
-<h2>
-<a name="volumedownbutton_quick_example">Quick Example</a>
-</h2>
+
+<h2><a name="volumedownbutton_quick_example">Quick Example</a></h2>
 
 <pre class="prettyprint"><code>document.addEventListener("<a href="cordova_events_events.md.html#volumedownbutton">volumedownbutton</a>", onVolumeDownKeyDown, false);
 
@@ -960,9 +906,7 @@ function onVolumeDownKeyDown() {
 }
 </code></pre>
 
-<h2>
-<a name="volumedownbutton_full_example">Full Example</a>
-</h2>
+<h2><a name="volumedownbutton_full_example">Full Example</a></h2>
 
 <pre class="prettyprint"><code>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
                       "http://www.w3.org/TR/html4/strict.dtd"&gt;
@@ -999,6 +943,7 @@ function onVolumeDownKeyDown() {
 </code></pre>
 
 <hr>
+
 <h1><a name="volumeupbutton">volumeupbutton</a></h1>
 
 <p>The event fires when the user presses the volume up button.</p>
@@ -1006,9 +951,7 @@ function onVolumeDownKeyDown() {
 <pre class="prettyprint"><code>document.addEventListener("<a href="cordova_events_events.md.html#volumeupbutton">volumeupbutton</a>", yourCallbackFunction, false);
 </code></pre>
 
-<h2>
-<a name="volumeupbutton_details">Details</a>
-</h2>
+<h2><a name="volumeupbutton_details">Details</a></h2>
 
 <p>If you need to override the default volume up behavior you can
 register an event listener for the <code><a href="cordova_events_events.md.html#volumeupbutton">volumeupbutton</a></code> event.</p>
@@ -1016,16 +959,13 @@ register an event listener for the <code
 <p>Applications typically should use <code>document.addEventListener</code> to
 attach an event listener once the <code><a href="cordova_events_events.md.html#deviceready">deviceready</a></code> event fires.</p>
 
-<h2>
-<a name="volumeupbutton_supported_platforms">Supported Platforms</a>
-</h2>
+<h2><a name="volumeupbutton_supported_platforms">Supported Platforms</a></h2>
 
 <ul>
 <li>BlackBerry 10</li>
 </ul>
-<h2>
-<a name="volumeupbutton_quick_example">Quick Example</a>
-</h2>
+
+<h2><a name="volumeupbutton_quick_example">Quick Example</a></h2>
 
 <pre class="prettyprint"><code>document.addEventListener("<a href="cordova_events_events.md.html#volumeupbutton">volumeupbutton</a>", onVolumeUpKeyDown, false);
 
@@ -1034,9 +974,7 @@ function onVolumeUpKeyDown() {
 }
 </code></pre>
 
-<h2>
-<a name="volumeupbutton_full_example">Full Example</a>
-</h2>
+<h2><a name="volumeupbutton_full_example">Full Example</a></h2>
 
 <pre class="prettyprint"><code>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
                       "http://www.w3.org/TR/html4/strict.dtd"&gt;
@@ -1076,6 +1014,7 @@ function onVolumeUpKeyDown() {
         </div>
 
         <!-- Functionality and Syntax Highlighting -->
-        <script type="text/javascript" src="index.js"></script><script type="text/javascript" src="prettify/prettify.js"></script>
-</body>
+        <script type="text/javascript" src="index.js"></script>
+        <script type="text/javascript" src="prettify/prettify.js"></script>
+    </body>
 </html>

Modified: cordova/site/public/docs/en/edge/cordova_plugins_pluginapis.md.html
URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/edge/cordova_plugins_pluginapis.md.html?rev=1605933&r1=1605932&r2=1605933&view=diff
==============================================================================
--- cordova/site/public/docs/en/edge/cordova_plugins_pluginapis.md.html (original)
+++ cordova/site/public/docs/en/edge/cordova_plugins_pluginapis.md.html Thu Jun 26 23:55:47 2014
@@ -17,16 +17,18 @@
     specific language governing permissions and limitations
     under the License.
 --><html lang="en">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no, width=device-width">
-<meta name="generator" content="joDoc">
-<title>Apache Cordova API Documentation</title>
-<link rel="stylesheet" type="text/css" href="index.css">
-<link rel="stylesheet" type="text/css" href="mobile.css" media="only screen and (max-device-width: 1024px)">
-<link rel="stylesheet" type="text/css" href="prettify/prettify.css">
-</head>
-<body>
+    <head>
+        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+        <meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no, width=device-width">
+        <meta name="generator" content="joDoc">
+
+        <title>Apache Cordova API Documentation</title>
+
+        <link rel="stylesheet" type="text/css" href="index.css">
+        <link rel="stylesheet" type="text/css" href="mobile.css" media="only screen and (max-device-width: 1024px)">
+        <link rel="stylesheet" type="text/css" href="prettify/prettify.css">
+    </head>
+    <body>
         <div id="header">
             <h1><a href="index.html">Apache <strong>Cordova</strong> Documentation</a></h1>
             <small>
@@ -99,6 +101,7 @@
 <option value="3.1.0">3.1.0</option>
 <option value="2.0.0">2.0.0</option>
 </optgroup>
+<optgroup label="Polish" value="pl"><option value="edge">edge</option></optgroup>
 <optgroup label="Russian" value="ru">
 <option value="edge">edge</option>
 <option value="3.5.0">3.5.0</option>
@@ -115,7 +118,8 @@
 <option value="3.5.0">3.5.0</option>
 <option value="3.4.0">3.4.0</option>
 <option value="3.1.0">3.1.0</option>
-</optgroup></select></small>
+</optgroup></select>
+            </small>
         </div>
         <div id="subheader">
             <h1>Plugin APIs</h1>
@@ -175,6 +179,13 @@
 </blockquote>
 </li>
 <li>
+<p><a class="external" href="https://github.com/apache/cordova-plugin-console/blob/master/doc/index.md">Console</a></p>
+
+<blockquote>
+  <p>Add additional capability to console.log().</p>
+</blockquote>
+</li>
+<li>
 <p><a class="external" href="https://github.com/apache/cordova-plugin-contacts/blob/master/doc/index.md">Contacts</a></p>
 
 <blockquote>
@@ -280,12 +291,14 @@
 </blockquote>
 </li>
 </ul>
+
 <p>Non-English translations of these plugin docs can be found by looking at older versions of the Cordova documentation. Use the drop-down menu at the very top-right of this site to switch versions.</p>
 
             </div>
         </div>
 
         <!-- Functionality and Syntax Highlighting -->
-        <script type="text/javascript" src="index.js"></script><script type="text/javascript" src="prettify/prettify.js"></script>
-</body>
+        <script type="text/javascript" src="index.js"></script>
+        <script type="text/javascript" src="prettify/prettify.js"></script>
+    </body>
 </html>

Modified: cordova/site/public/docs/en/edge/cordova_storage_storage.md.html
URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/edge/cordova_storage_storage.md.html?rev=1605933&r1=1605932&r2=1605933&view=diff
==============================================================================
--- cordova/site/public/docs/en/edge/cordova_storage_storage.md.html (original)
+++ cordova/site/public/docs/en/edge/cordova_storage_storage.md.html Thu Jun 26 23:55:47 2014
@@ -17,16 +17,18 @@
     specific language governing permissions and limitations
     under the License.
 --><html lang="en">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no, width=device-width">
-<meta name="generator" content="joDoc">
-<title>Apache Cordova API Documentation</title>
-<link rel="stylesheet" type="text/css" href="index.css">
-<link rel="stylesheet" type="text/css" href="mobile.css" media="only screen and (max-device-width: 1024px)">
-<link rel="stylesheet" type="text/css" href="prettify/prettify.css">
-</head>
-<body>
+    <head>
+        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+        <meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no, width=device-width">
+        <meta name="generator" content="joDoc">
+
+        <title>Apache Cordova API Documentation</title>
+
+        <link rel="stylesheet" type="text/css" href="index.css">
+        <link rel="stylesheet" type="text/css" href="mobile.css" media="only screen and (max-device-width: 1024px)">
+        <link rel="stylesheet" type="text/css" href="prettify/prettify.css">
+    </head>
+    <body>
         <div id="header">
             <h1><a href="index.html">Apache <strong>Cordova</strong> Documentation</a></h1>
             <small>
@@ -99,6 +101,7 @@
 <option value="3.1.0">3.1.0</option>
 <option value="2.0.0">2.0.0</option>
 </optgroup>
+<optgroup label="Polish" value="pl"><option value="edge">edge</option></optgroup>
 <optgroup label="Russian" value="ru">
 <option value="edge">edge</option>
 <option value="3.5.0">3.5.0</option>
@@ -115,7 +118,8 @@
 <option value="3.5.0">3.5.0</option>
 <option value="3.4.0">3.4.0</option>
 <option value="3.1.0">3.1.0</option>
-</optgroup></select></small>
+</optgroup></select>
+            </small>
         </div>
         <div id="subheader">
             <h1>Storage</h1>
@@ -166,22 +170,14 @@ See
 <a class="external" href="http://www.html5rocks.com/en/features/storage">html5rocks</a>.
 for a more complete overview and examples.</p>
 
-<h2>
-<a name="Storage_localstorage">LocalStorage</a>
-</h2>
+<h2><a name="Storage_localstorage">LocalStorage</a></h2>
 
 <p>Also known as <em>web storage</em>, <em>simple storage</em>, or by its alternate
 <em>session storage</em> interface, this API provides synchronous key/value
 pair storage, and is available in underlying WebView implementations.
 Refer to <a class="external" href="http://www.w3.org/TR/webstorage/">the W3C spec</a> for details.</p>
 
-<p><strong>Windows Phone 7 Quirk</strong>: Dot notation is <em>not</em> available, so be sure
-to use <code>setItem</code> or <code>getItem</code> rather than access keys directly from
-the storage object, as in <code>window.localStorage.someKey</code>.</p>
-
-<h2>
-<a name="Storage_websql">WebSQL</a>
-</h2>
+<h2><a name="Storage_websql">WebSQL</a></h2>
 
 <p>This API is available in the underlying WebView.
 The <a class="external" href="http://dev.w3.org/html5/webdatabase/">Web SQL Database Specification</a>
@@ -195,9 +191,8 @@ offers more full-featured database table
 <li>iOS</li>
 <li>Tizen</li>
 </ul>
-<h2>
-<a name="Storage_indexeddb">IndexedDB</a>
-</h2>
+
+<h2><a name="Storage_indexeddb">IndexedDB</a></h2>
 
 <p>This API is available in the underlying WebView.
 <a class="external" href="http://www.w3.org/TR/IndexedDB/">Indexed DB</a> offers more features
@@ -206,12 +201,12 @@ than LocalStorage but fewer than WebSQL.
 <p>The following platforms support IndexedDB:</p>
 
 <ul>
-<li>Windows Phone 8</li>
 <li>BlackBerry 10</li>
+<li>Windows Phone 8</li>
+<li>Windows 8</li>
 </ul>
-<h2>
-<a name="Storage_plugin_based_options">Plugin-Based Options</a>
-</h2>
+
+<h2><a name="Storage_plugin_based_options">Plugin-Based Options</a></h2>
 
 <p>In addition to the storage APIs listed above, the
 <a class="external" href="https://github.com/apache/cordova-plugin-file/blob/master/doc/index.md">File API</a>
@@ -222,6 +217,7 @@ allows you to cache data on the local fi
         </div>
 
         <!-- Functionality and Syntax Highlighting -->
-        <script type="text/javascript" src="index.js"></script><script type="text/javascript" src="prettify/prettify.js"></script>
-</body>
+        <script type="text/javascript" src="index.js"></script>
+        <script type="text/javascript" src="prettify/prettify.js"></script>
+    </body>
 </html>

Modified: cordova/site/public/docs/en/edge/guide_appdev_privacy_index.md.html
URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/edge/guide_appdev_privacy_index.md.html?rev=1605933&r1=1605932&r2=1605933&view=diff
==============================================================================
--- cordova/site/public/docs/en/edge/guide_appdev_privacy_index.md.html (original)
+++ cordova/site/public/docs/en/edge/guide_appdev_privacy_index.md.html Thu Jun 26 23:55:47 2014
@@ -17,16 +17,18 @@
     specific language governing permissions and limitations
     under the License.
 --><html lang="en">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no, width=device-width">
-<meta name="generator" content="joDoc">
-<title>Apache Cordova API Documentation</title>
-<link rel="stylesheet" type="text/css" href="index.css">
-<link rel="stylesheet" type="text/css" href="mobile.css" media="only screen and (max-device-width: 1024px)">
-<link rel="stylesheet" type="text/css" href="prettify/prettify.css">
-</head>
-<body>
+    <head>
+        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+        <meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no, width=device-width">
+        <meta name="generator" content="joDoc">
+
+        <title>Apache Cordova API Documentation</title>
+
+        <link rel="stylesheet" type="text/css" href="index.css">
+        <link rel="stylesheet" type="text/css" href="mobile.css" media="only screen and (max-device-width: 1024px)">
+        <link rel="stylesheet" type="text/css" href="prettify/prettify.css">
+    </head>
+    <body>
         <div id="header">
             <h1><a href="index.html">Apache <strong>Cordova</strong> Documentation</a></h1>
             <small>
@@ -99,6 +101,7 @@
 <option value="3.1.0">3.1.0</option>
 <option value="2.0.0">2.0.0</option>
 </optgroup>
+<optgroup label="Polish" value="pl"><option value="edge">edge</option></optgroup>
 <optgroup label="Russian" value="ru">
 <option value="edge">edge</option>
 <option value="3.5.0">3.5.0</option>
@@ -115,7 +118,8 @@
 <option value="3.5.0">3.5.0</option>
 <option value="3.4.0">3.4.0</option>
 <option value="3.1.0">3.1.0</option>
-</optgroup></select></small>
+</optgroup></select>
+            </small>
         </div>
         <div id="subheader">
             <h1>Privacy Guide</h1>
@@ -229,6 +233,7 @@ it is stored on the device or on your ba
 also develop an appropriate data retention policy that is
 implemented within the app and on your backend servers.</p></li>
 </ul>
+
 <p>Following are some additional helpful mobile privacy guides for developers:</p>
 
 <ul>
@@ -238,10 +243,12 @@ implemented within the app and on your b
 <li><p>Federal Trade Commission, <a class="external" href="http://www.ftc.gov/os/2013/02/130201mobileprivacyreport.pdf">Mobile Privacy Disclosures: Building Trust Through Transparency</a></p></li>
 <li><p>Future of Privacy Forum, <a class="external" href="http://www.applicationprivacy.org">Application Privacy</a> Website</p></li>
 </ul>
-</div>
+
+            </div>
         </div>
 
         <!-- Functionality and Syntax Highlighting -->
-        <script type="text/javascript" src="index.js"></script><script type="text/javascript" src="prettify/prettify.js"></script>
-</body>
+        <script type="text/javascript" src="index.js"></script>
+        <script type="text/javascript" src="prettify/prettify.js"></script>
+    </body>
 </html>