Modified: cordova/site/public/docs/en/7.x/reference/cordova-plugin-media/index.html URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/7.x/reference/cordova-plugin-media/index.html?rev=1810045&r1=1810044&r2=1810045&view=diff ============================================================================== --- cordova/site/public/docs/en/7.x/reference/cordova-plugin-media/index.html (original) +++ cordova/site/public/docs/en/7.x/reference/cordova-plugin-media/index.html Thu Sep 28 21:54:09 2017 @@ -2732,7 +2732,9 @@ <tr> <th style="text-align: center">Android 4.4</th> <th style="text-align: center">Android 5.1</th> -<th style="text-align: center">iOS</th> +<th style="text-align: center">Android 6.0</th> +<th style="text-align: center">iOS 9.3</th> +<th style="text-align: center">iOS 10.0</th> <th style="text-align: center">Windows 10 Store</th> <th style="text-align: center">Travis CI</th> </tr> @@ -2740,7 +2742,9 @@ <tr> <td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android-4.4,PLUGIN=cordova-plugin-media/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android-4.4,PLUGIN=cordova-plugin-media" alt="Build Status"></a></td> <td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android-5.1,PLUGIN=cordova-plugin-media/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android-5.1,PLUGIN=cordova-plugin-media" alt="Build Status"></a></td> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=ios,PLUGIN=cordova-plugin-media/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=ios,PLUGIN=cordova-plugin-media" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android-6.0,PLUGIN=cordova-plugin-media/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android-6.0,PLUGIN=cordova-plugin-media" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=ios-9.3,PLUGIN=cordova-plugin-media/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=ios-9.3,PLUGIN=cordova-plugin-media" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=ios-10.0,PLUGIN=cordova-plugin-media/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=ios-10.0,PLUGIN=cordova-plugin-media" alt="Build Status"></a></td> <td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=windows-10-store,PLUGIN=cordova-plugin-media/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=windows-10-store,PLUGIN=cordova-plugin-media" alt="Build Status"></a></td> <td style="text-align: center"><a href="https://travis-ci.org/apache/cordova-plugin-media"><img src="https://travis-ci.org/apache/cordova-plugin-media.svg?branch=master" alt="Build Status"></a></td> </tr> @@ -3041,9 +3045,17 @@ myMedia.play({ numberOfLoops: 2 }) method to specify whether you want to allow playback when the screen is locked. If set to <code>true</code> (the default value), the state of the hardware mute button is ignored, e.g.:</p> -<div class="highlight"><pre><code class="language-" data-lang="">var myMedia = new Media("http://audio.ibeat.org/content/p1rj1s/p1rj1s_-_rockGuitar.mp3") -myMedia.play({ playAudioWhenScreenIsLocked : false }) +<div class="highlight"><pre><code class="language-" data-lang="">var myMedia = new Media("http://audio.ibeat.org/content/p1rj1s/p1rj1s_-_rockGuitar.mp3"); +myMedia.play({ playAudioWhenScreenIsLocked : true }); +myMedia.setVolume('1.0'); </code></pre></div></li> +</ul> + +<blockquote> +<p>Note: To allow playback with the screen locked or background audio you have to add <code>audio</code> to <code>UIBackgroundModes</code> in the <code>info.plist</code> file. See <a href="https://developer.apple.com/library/content/documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/BackgroundExecution/BackgroundExecution.html#//apple_ref/doc/uid/TP40007072-CH4-SW23">Apple documentation</a>. Also note that the audio has to be started before going to background.</p> +</blockquote> + +<ul> <li><p><strong>order of file search</strong>: When only a file name or simple path is provided, iOS searches in the <code>www</code> directory for the file, then in the application's <code>documents/tmp</code> directory:</p> @@ -3221,14 +3233,14 @@ function for any <code>Media</code> reso <h3>Android Quirks</h3> <ul> -<li>Android devices record audio in Adaptive Multi-Rate format. The specified file should end with a <em>.amr</em> extension.</li> +<li>Android devices record audio in AAC ADTS file format. The specified file should end with a <em>.aac</em> extension.</li> <li>The hardware volume controls are wired up to the media volume while any Media objects are alive. Once the last created Media object has <code>release()</code> called on it, the volume controls revert to their default behaviour. The controls are also reset on page navigation, as this releases all Media objects.</li> </ul> <h3>iOS Quirks</h3> <ul> -<li><p>iOS only records to files of type <em>.wav</em> and returns an error if the file name extension is not correct.</p></li> +<li><p>iOS only records to files of type <em>.wav</em> and <em>.m4a</em> and returns an error if the file name extension is not correct.</p></li> <li><p>If a full path is not provided, the recording is placed in the application's <code>documents/tmp</code> directory. This can be accessed via the <code>File</code> API using <code>LocalFileSystem.TEMPORARY</code>. Any subdirectory specified at record time must already exist.</p></li> <li><p>Files can be recorded and played back using the documents URI:</p> <div class="highlight"><pre><code class="language-" data-lang="">var myMedia = new Media("documents://beer.mp3")
Modified: cordova/site/public/docs/en/7.x/reference/cordova-plugin-network-information/index.html URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/7.x/reference/cordova-plugin-network-information/index.html?rev=1810045&r1=1810044&r2=1810045&view=diff ============================================================================== --- cordova/site/public/docs/en/7.x/reference/cordova-plugin-network-information/index.html (original) +++ cordova/site/public/docs/en/7.x/reference/cordova-plugin-network-information/index.html Thu Sep 28 21:54:09 2017 @@ -2732,7 +2732,9 @@ <tr> <th style="text-align: center">Android 4.4</th> <th style="text-align: center">Android 5.1</th> -<th style="text-align: center">iOS</th> +<th style="text-align: center">Android 6.0</th> +<th style="text-align: center">iOS 9.3</th> +<th style="text-align: center">iOS 10.0</th> <th style="text-align: center">Windows 10 Store</th> <th style="text-align: center">Travis CI</th> </tr> @@ -2740,7 +2742,9 @@ <tr> <td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android-4.4,PLUGIN=cordova-plugin-network-information/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android-4.4,PLUGIN=cordova-plugin-network-information" alt="Build Status"></a></td> <td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android-5.1,PLUGIN=cordova-plugin-network-information/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android-5.1,PLUGIN=cordova-plugin-network-information" alt="Build Status"></a></td> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=ios,PLUGIN=cordova-plugin-network-information/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=ios,PLUGIN=cordova-plugin-network-information" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android-6.0,PLUGIN=cordova-plugin-network-information/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android-6.0,PLUGIN=cordova-plugin-network-information" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=ios-9.3,PLUGIN=cordova-plugin-network-information/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=ios-9.3,PLUGIN=cordova-plugin-network-information" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=ios-10.0,PLUGIN=cordova-plugin-network-information/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=ios-10.0,PLUGIN=cordova-plugin-network-information" alt="Build Status"></a></td> <td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=windows-10-store,PLUGIN=cordova-plugin-network-information/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=windows-10-store,PLUGIN=cordova-plugin-network-information" alt="Build Status"></a></td> <td style="text-align: center"><a href="https://travis-ci.org/apache/cordova-plugin-network-information"><img src="https://travis-ci.org/apache/cordova-plugin-network-information.svg?branch=master" alt="Build Status"></a></td> </tr> Modified: cordova/site/public/docs/en/7.x/reference/cordova-plugin-splashscreen/index.html URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/7.x/reference/cordova-plugin-splashscreen/index.html?rev=1810045&r1=1810044&r2=1810045&view=diff ============================================================================== --- cordova/site/public/docs/en/7.x/reference/cordova-plugin-splashscreen/index.html (original) +++ cordova/site/public/docs/en/7.x/reference/cordova-plugin-splashscreen/index.html Thu Sep 28 21:54:09 2017 @@ -2732,7 +2732,9 @@ <tr> <th style="text-align: center">Android 4.4</th> <th style="text-align: center">Android 5.1</th> -<th style="text-align: center">iOS</th> +<th style="text-align: center">Android 6.0</th> +<th style="text-align: center">iOS 9.3</th> +<th style="text-align: center">iOS 10.0</th> <th style="text-align: center">Windows 10 Store</th> <th style="text-align: center">Travis CI</th> </tr> @@ -2740,7 +2742,9 @@ <tr> <td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android-4.4,PLUGIN=cordova-plugin-splashscreen/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android-4.4,PLUGIN=cordova-plugin-splashscreen" alt="Build Status"></a></td> <td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android-5.1,PLUGIN=cordova-plugin-splashscreen/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android-5.1,PLUGIN=cordova-plugin-splashscreen" alt="Build Status"></a></td> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=ios,PLUGIN=cordova-plugin-splashscreen/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=ios,PLUGIN=cordova-plugin-splashscreen" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android-6.0,PLUGIN=cordova-plugin-splashscreen/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android-6.0,PLUGIN=cordova-plugin-splashscreen" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=ios-9.3,PLUGIN=cordova-plugin-splashscreen/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=ios-9.3,PLUGIN=cordova-plugin-splashscreen" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=ios-10.0,PLUGIN=cordova-plugin-splashscreen/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=ios-10.0,PLUGIN=cordova-plugin-splashscreen" alt="Build Status"></a></td> <td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=windows-10-store,PLUGIN=cordova-plugin-splashscreen/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=windows-10-store,PLUGIN=cordova-plugin-splashscreen" alt="Build Status"></a></td> <td style="text-align: center"><a href="https://travis-ci.org/apache/cordova-plugin-splashscreen"><img src="https://travis-ci.org/apache/cordova-plugin-splashscreen.svg?branch=master" alt="Build Status"></a></td> </tr> Modified: cordova/site/public/docs/en/7.x/reference/cordova-plugin-statusbar/index.html URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/7.x/reference/cordova-plugin-statusbar/index.html?rev=1810045&r1=1810044&r2=1810045&view=diff ============================================================================== --- cordova/site/public/docs/en/7.x/reference/cordova-plugin-statusbar/index.html (original) +++ cordova/site/public/docs/en/7.x/reference/cordova-plugin-statusbar/index.html Thu Sep 28 21:54:09 2017 @@ -2732,7 +2732,9 @@ <tr> <th style="text-align: center">Android 4.4</th> <th style="text-align: center">Android 5.1</th> -<th style="text-align: center">iOS</th> +<th style="text-align: center">Android 6.0</th> +<th style="text-align: center">iOS 9.3</th> +<th style="text-align: center">iOS 10.0</th> <th style="text-align: center">Windows 10 Store</th> <th style="text-align: center">Travis CI</th> </tr> @@ -2740,7 +2742,9 @@ <tr> <td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android-4.4,PLUGIN=cordova-plugin-statusbar/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android-4.4,PLUGIN=cordova-plugin-statusbar" alt="Build Status"></a></td> <td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android-5.1,PLUGIN=cordova-plugin-statusbar/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android-5.1,PLUGIN=cordova-plugin-statusbar" alt="Build Status"></a></td> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=ios,PLUGIN=cordova-plugin-statusbar/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=ios,PLUGIN=cordova-plugin-statusbar" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android-6.0,PLUGIN=cordova-plugin-statusbar/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android-6.0,PLUGIN=cordova-plugin-statusbar" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=ios-9.3,PLUGIN=cordova-plugin-statusbar/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=ios-9.3,PLUGIN=cordova-plugin-statusbar" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=ios-10.0,PLUGIN=cordova-plugin-statusbar/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=ios-10.0,PLUGIN=cordova-plugin-statusbar" alt="Build Status"></a></td> <td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=windows-10-store,PLUGIN=cordova-plugin-statusbar/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=windows-10-store,PLUGIN=cordova-plugin-statusbar" alt="Build Status"></a></td> <td style="text-align: center"><a href="https://travis-ci.org/apache/cordova-plugin-statusbar"><img src="https://travis-ci.org/apache/cordova-plugin-statusbar.svg?branch=master" alt="Build Status"></a></td> </tr> Modified: cordova/site/public/docs/en/7.x/reference/cordova-plugin-vibration/index.html URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/7.x/reference/cordova-plugin-vibration/index.html?rev=1810045&r1=1810044&r2=1810045&view=diff ============================================================================== --- cordova/site/public/docs/en/7.x/reference/cordova-plugin-vibration/index.html (original) +++ cordova/site/public/docs/en/7.x/reference/cordova-plugin-vibration/index.html Thu Sep 28 21:54:09 2017 @@ -2732,7 +2732,9 @@ <tr> <th style="text-align: center">Android 4.4</th> <th style="text-align: center">Android 5.1</th> -<th style="text-align: center">iOS</th> +<th style="text-align: center">Android 6.0</th> +<th style="text-align: center">iOS 9.3</th> +<th style="text-align: center">iOS 10.0</th> <th style="text-align: center">Windows 10 Store</th> <th style="text-align: center">Travis CI</th> </tr> @@ -2740,7 +2742,9 @@ <tr> <td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android-4.4,PLUGIN=cordova-plugin-vibration/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android-4.4,PLUGIN=cordova-plugin-vibration" alt="Build Status"></a></td> <td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android-5.1,PLUGIN=cordova-plugin-vibration/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android-5.1,PLUGIN=cordova-plugin-vibration" alt="Build Status"></a></td> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=ios,PLUGIN=cordova-plugin-vibration/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=ios,PLUGIN=cordova-plugin-vibration" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android-6.0,PLUGIN=cordova-plugin-vibration/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android-6.0,PLUGIN=cordova-plugin-vibration" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=ios-9.3,PLUGIN=cordova-plugin-vibration/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=ios-9.3,PLUGIN=cordova-plugin-vibration" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=ios-10.0,PLUGIN=cordova-plugin-vibration/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=ios-10.0,PLUGIN=cordova-plugin-vibration" alt="Build Status"></a></td> <td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=windows-10-store,PLUGIN=cordova-plugin-vibration/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=windows-10-store,PLUGIN=cordova-plugin-vibration" alt="Build Status"></a></td> <td style="text-align: center"><a href="https://travis-ci.org/apache/cordova-plugin-vibration"><img src="https://travis-ci.org/apache/cordova-plugin-vibration.svg?branch=master" alt="Build Status"></a></td> </tr> Modified: cordova/site/public/docs/en/dev/reference/cordova-cli/index.html URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/reference/cordova-cli/index.html?rev=1810045&r1=1810044&r2=1810045&view=diff ============================================================================== --- cordova/site/public/docs/en/dev/reference/cordova-cli/index.html (original) +++ cordova/site/public/docs/en/dev/reference/cordova-cli/index.html Thu Sep 28 21:54:09 2017 @@ -2757,7 +2757,7 @@ </tr> <tr> <td>config</td> -<td>Set, get, delete, edit, and list global cordova options</td> +<td>Store and retrieve environment variables</td> </tr> </tbody></table> @@ -2852,12 +2852,14 @@ <div class="highlight"><pre><code class="language-" data-lang=""># Create a cordova project cordova create myApp com.myCompany.myApp myApp cd myApp -# Add camera plugin to the project and remember that in config.xml & package.json. Do not use npm install to fetch. -cordova plugin add cordova-plugin-camera --nofetch -# Add camera plugin to the project and remember that in config.xml and package.json. Uses pre cordova@7 fetching methods instead of cordova-fetch which uses npm install under the hood. -cordova plugin add cordova-plugin-camera --nofetch -# Add android platform to the project and remember that in config.xml & package.json. Uses pre cordova@7 fetching methods instead of cordova-fetch which uses npm install under the hood -cordova platform add android --nofetch +# Add camera plugin to the project and remember that in config.xml +cordova plugin add cordova-plugin-camera --save +# Add camera plugin to the project and remember that in config.xml. Use npm install to fetch. +cordova plugin add cordova-plugin-camera --save --fetch +# Add android platform to the project and remember that in config.xml +cordova platform add android --save +# Add android platform to the project and remember that in config.xml. Use npm install to fetch. +cordova platform add android --save --fetch # Check to see if your system is configured for building android platform. cordova requirements android # Build the android and emit verbose logs. @@ -2983,7 +2985,7 @@ www/ <h4>Version control</h4> -<p>It is recommended not to check in <code>platforms/</code> and <code>plugins/</code> directories into version control as they are considered a build artifact. Your platforms and plugins will be saved in config.xml & package.json automatically. These platforms/plugins will be downloaded when on the machine when <code>cordova prepare</code> is invoked.</p> +<p>It is recommended not to check in <code>platforms/</code> and <code>plugins/</code> directories into version control as they are considered a build artifact. Instead, you should save the platform/plugin spec in the <code>config.xml</code> and they will be downloaded when on the machine when <code>cordova prepare</code> is invoked.</p> <h3>Examples</h3> @@ -3025,8 +3027,8 @@ www/ </tr> <tr> <td></td> -<td>--nosave</td> -<td>Do not save <code><platform-spec></code> into <code>config.xml</code> & <code>package.json</code> after installing them using <code><engine></code> tag</td> +<td>--save</td> +<td>Save <code><platform-spec></code> into <code>config.xml</code> after installing them using <code><engine></code> tag</td> </tr> <tr> <td></td> @@ -3035,8 +3037,8 @@ www/ </tr> <tr> <td></td> -<td>--nofetch</td> -<td>Do not fetch the platform using <code>npm install</code> and do not store it into the apps <code>node_modules</code> directory</td> +<td>--fetch</td> +<td>Fetches the platform using <code>npm install</code> and stores it into the apps <code>node_modules</code> directory</td> </tr> <tr> <td>remove <code><platform></code> [...]</td> @@ -3045,13 +3047,13 @@ www/ </tr> <tr> <td></td> -<td>--nosave</td> -<td>Do not delete specified platforms from <code>config.xml</code> & <code>package.json</code> after removing them</td> +<td>--save</td> +<td>Delete specified platforms from <code>config.xml</code> after removing them</td> </tr> <tr> <td></td> -<td>--nofetch</td> -<td>Prevent removing the platform using <code>npm uninstall</code> and prevent removing it from the apps <code>node_modules</code> directory</td> +<td>--fetch</td> +<td>Removes the platform using <code>npm uninstall</code> and removes it from the apps <code>node_modules</code> directory</td> </tr> <tr> <td>update <code>platform</code> [...]</td> @@ -3065,8 +3067,8 @@ www/ </tr> <tr> <td></td> -<td>--nofetch</td> -<td>Do not fetch the platform using <code>npm install</code> and do not store it into the apps <code>node_modules</code> directory</td> +<td>--fetch</td> +<td>Fetches the platform using <code>npm install</code> and stores it into the apps <code>node_modules</code> directory</td> </tr> <tr> <td>list</td> @@ -3141,14 +3143,15 @@ www/ <h3>Examples</h3> <ul> -<li><p>Add pinned version of the <code>android</code> and <code>ios</code> platform and save the downloaded version to <code>config.xml</code> & <code>package.json</code>:</p> -<div class="highlight"><pre><code class="language-" data-lang="">cordova platform add android ios +<li><p>Add pinned version of the <code>android</code> and <code>ios</code> platform and save the downloaded version to <code>config.xml</code>:</p> +<div class="highlight"><pre><code class="language-" data-lang="">cordova platform add android ios --save </code></pre></div></li> -<li><p>Add pinned version of the <code>android</code> and <code>ios</code> platform and save the downloaded version to <code>config.xml</code> & <code>package.json</code>. Do not install to the project using <code>npm install</code> and do not store it in the apps <code>node_modules</code> directory:</p> -<div class="highlight"><pre><code class="language-" data-lang="">cordova platform add android ios --nofetch +<li><p>Add pinned version of the <code>android</code> and <code>ios</code> platform and save the downloaded version to <code>config.xml</code>. Install +to the project using <code>npm install</code> and store it in the apps <code>node_modules</code> directory:</p> +<div class="highlight"><pre><code class="language-" data-lang="">cordova platform add android ios --save --fetch </code></pre></div></li> -<li><p>Add <code>android</code> platform with <a href="http://semver.org/">semver</a> version ^5.0.0 and save it to <code>config.xml</code> & <code>package.json</code>:</p> -<div class="highlight"><pre><code class="language-" data-lang="">cordova platform add android@^5.0.0 +<li><p>Add <code>android</code> platform with <a href="http://semver.org/">semver</a> version ^5.0.0 and save it to <code>config.xml</code>:</p> +<div class="highlight"><pre><code class="language-" data-lang="">cordova platform add android@^5.0.0 --save </code></pre></div></li> <li><p>Add platform by cloning the specified git repo and checkout to the <code>4.0.0</code> tag:</p> <div class="highlight"><pre><code class="language-" data-lang="">cordova platform add https://github.com/myfork/cordova-android.git#4.0.0 @@ -3159,19 +3162,17 @@ www/ <li><p>Add platform using the specified tarball:</p> <div class="highlight"><pre><code class="language-" data-lang="">cordova platform add ../cordova-android.tgz </code></pre></div></li> -<li><p>Remove <code>android</code> platform from the project and remove from <code>config.xml</code> & <code>package.json</code>:</p> -<div class="highlight"><pre><code class="language-" data-lang="">cordova platform rm android +<li><p>Remove <code>android</code> platform from the project and from <code>config.xml</code>:</p> +<div class="highlight"><pre><code class="language-" data-lang="">cordova platform rm android --save </code></pre></div></li> -<li><p>Remove <code>android</code> platform from the project and do NOT remove from <code>config.xml</code> & <code>package.json</code>:</p> -<div class="highlight"><pre><code class="language-" data-lang="">cordova platform rm android --nosave -</code></pre></div></li> -<li><p>Remove <code>android</code> platform from the project and do NOT remove from <code>config.xml</code> & 'package.json. Do not run <code>npm uninstall</code> to remove it</p> -<div class="highlight"><pre><code class="language-" data-lang="">cordova platform rm android --nosave --nofetch +<li><p>Remove <code>android</code> platform from the project and from <code>config.xml</code>. Run <code>npm uninstall</code> to remove it +from the <code>node_modules</code> directory.</p> +<div class="highlight"><pre><code class="language-" data-lang="">cordova platform rm android --save --fetch </code></pre></div></li> <li><p>List available and installed platforms with version numbers. This is useful to find version numbers when reporting issues:</p> <div class="highlight"><pre><code class="language-" data-lang="">cordova platform ls </code></pre></div></li> -<li><p>Save versions of all platforms currently added to the project to <code>config.xml</code> & <code>package.json</code></p> +<li><p>Save versions of all platforms currently added to the project to <code>config.xml</code>.</p> <div class="highlight"><pre><code class="language-" data-lang="">cordova platform save </code></pre></div></li> </ul> @@ -3184,8 +3185,8 @@ www/ <h3>Syntax</h3> <div class="highlight"><pre><code class="language-bash" data-lang="bash">cordova <span class="o">{</span>plugin | plugins<span class="o">}</span> <span class="o">[</span> - add <plugin-spec> <span class="o">[</span>..] <span class="o">{</span><span class="nt">--searchpath</span><span class="o">=</span><directory> | <span class="nt">--noregistry</span> | <span class="nt">--link</span> | <span class="nt">--save</span> | <span class="nt">--browserify</span> | <span class="nt">--force</span> | <span class="nt">--nofetch</span><span class="o">}</span> | - <span class="o">{</span>remove | rm<span class="o">}</span> <span class="o">{</span><pluginid> | <name><span class="o">}</span> <span class="nt">--save</span> <span class="nt">--nofetch</span> | + add <plugin-spec> <span class="o">[</span>..] <span class="o">{</span><span class="nt">--searchpath</span><span class="o">=</span><directory> | <span class="nt">--noregistry</span> | <span class="nt">--link</span> | <span class="nt">--save</span> | <span class="nt">--browserify</span> | <span class="nt">--force</span> | <span class="nt">--fetch</span><span class="o">}</span> | + <span class="o">{</span>remove | rm<span class="o">}</span> <span class="o">{</span><pluginid> | <name><span class="o">}</span> <span class="nt">--save</span> <span class="nt">--fetch</span> | <span class="o">{</span>list | <span class="nb">ls</span><span class="o">}</span> | search <span class="o">[</span><keyword>] | save | @@ -3220,8 +3221,8 @@ www/ </tr> <tr> <td></td> -<td>--nosave</td> -<td>Do NOT save the <code><plugin-spec></code> as part of the <code>plugin</code> element into <code>config.xml</code> or <code>package.json</code>.</td> +<td>--save</td> +<td>Save the <code><plugin-spec></code> as part of the <code>plugin</code> element into <code>config.xml</code>.</td> </tr> <tr> <td></td> @@ -3235,8 +3236,8 @@ www/ </tr> <tr> <td></td> -<td>--nofetch</td> -<td>Do not fetch the plugin using <code>npm install</code> and do not store it into the apps <code>node_modules</code> directory</td> +<td>--fetch</td> +<td>Fetches the plugin using <code>npm install</code> and stores it into the apps <code>node_modules</code> directory</td> </tr> <tr> <td>remove `<pluginid></td> @@ -3245,13 +3246,13 @@ www/ </tr> <tr> <td></td> -<td>--nosave</td> -<td>Do NOT remove the specified plugin from config.xml or package.json</td> +<td>--save</td> +<td>Remove the specified plugin from config.xml</td> </tr> <tr> <td></td> -<td>--nofetch</td> -<td>Do not remove the plugin using <code>npm uninstall</code> and do not remove it from the apps <code>node_modules</code> directory</td> +<td>--fetch</td> +<td>Removes the plugin using <code>npm uninstall</code> and removes it from the apps <code>node_modules</code> directory</td> </tr> <tr> <td>list</td> @@ -3318,7 +3319,7 @@ based on the following criteria (listed <ol> <li>The <code>plugin-spec</code> given in the command (e.g. <code>cordova plugin add pluginID@version</code>)</li> -<li>The <code>plugin-spec</code> saved in <code>config.xml</code> & <code>package.json</code> (i.e. if the plugin was previously added without <code>--nosave</code>)</li> +<li>The <code>plugin-spec</code> saved in <code>config.xml</code> (i.e. if the plugin was previously added with <code>--save</code>)</li> <li>As of Cordova version 6.1, the latest plugin version published to npm that the current project can support (only applies to plugins that list their <a href="http://cordova.apache.org/docs/en/latest/guide/hybrid/plugins/index.html#specifying-project-requirements">Cordova dependencies</a> in their <code>package.json</code>)</li> <li>The latest plugin version published to npm</li> </ol> @@ -3326,29 +3327,29 @@ based on the following criteria (listed <h3>Examples</h3> <ul> -<li><p>Add <code>cordova-plugin-camera</code> and <code>cordova-plugin-file</code> to the project and it be be saved to <code>config.xml</code> & <code>package.json</code>. Use <code>../plugins</code> directory to search for the plugins.</p> +<li><p>Add <code>cordova-plugin-camera</code> and <code>cordova-plugin-file</code> to the project and save it to <code>config.xml</code>. Use <code>../plugins</code> directory to search for the plugins.</p> <div class="highlight"><pre><code class="language-" data-lang="">cordova plugin add cordova-plugin-camera cordova-plugin-file --save --searchpath ../plugins </code></pre></div></li> -<li><p>Add <code>cordova-plugin-camera</code> with <a href="http://semver.org/">semver</a> version ^2.0.0 and save it to <code>config.xml</code> & <code>package.json</code>:</p> -<div class="highlight"><pre><code class="language-" data-lang="">cordova plugin add cordova-plugin-camera@^2.0.0 +<li><p>Add <code>cordova-plugin-camera</code> with <a href="http://semver.org/">semver</a> version ^2.0.0 and save it to <code>config.xml</code>:</p> +<div class="highlight"><pre><code class="language-" data-lang="">cordova plugin add cordova-plugin-camera@^2.0.0 --save </code></pre></div></li> -<li><p>Add <code>cordova-plugin-camera</code> with <a href="http://semver.org/">semver</a> version ^2.0.0 and do not<code>npm install</code> it. It will not be stored in the <code>node_modules</code> directory:</p> -<div class="highlight"><pre><code class="language-" data-lang="">cordova plugin add cordova-plugin-camera@^2.0.0 --nofetch +<li><p>Add <code>cordova-plugin-camera</code> with <a href="http://semver.org/">semver</a> version ^2.0.0 and <code>npm install</code> it. It will be stored in the <code>node_modules</code> directory:</p> +<div class="highlight"><pre><code class="language-" data-lang="">cordova plugin add cordova-plugin-camera@^2.0.0 --fetch +</code></pre></div></li> +<li><p>Clone the specified git repo, checkout to tag <code>2.1.0</code>, look for plugin.xml in the <code>plugin</code> directory, and add it to the project. Save the <code>plugin-spec</code> to <code>config.xml</code>:</p> +<div class="highlight"><pre><code class="language-" data-lang="">cordova plugin add https://github.com/apache/cordova-plugin-camera.git#2.1.0:plugin --save </code></pre></div></li> <li><p>Add the plugin from the specified local directory:</p> <div class="highlight"><pre><code class="language-" data-lang="">cordova plugin add ../cordova-plugin-camera </code></pre></div></li> <li><p>Add the plugin from the specified tarball file:</p> -<div class="highlight"><pre><code class="language-" data-lang="">cordova plugin add ../cordova-plugin-camera.tgz -</code></pre></div></li> -<li><p>Remove the plugin from the project and the <code>config.xml</code> & <code>package.json</code>:</p> -<div class="highlight"><pre><code class="language-" data-lang="">cordova plugin rm camera +<div class="highlight"><pre><code class="language-" data-lang="">cordova plugin add ../cordova-plugin-camera.tgz --save </code></pre></div></li> -<li><p>Remove the plugin from the project, but not the <code>config.xml</code> or <code>package.json</code>:</p> -<div class="highlight"><pre><code class="language-" data-lang="">cordova plugin rm camera --nosave +<li><p>Remove the plugin from the project and the <code>config.xml</code>:</p> +<div class="highlight"><pre><code class="language-" data-lang="">cordova plugin rm camera --save </code></pre></div></li> -<li><p>Remove the plugin from the project. Do not remove it from the node_modules directory and don't run npm uninstall under the hood:</p> -<div class="highlight"><pre><code class="language-" data-lang="">cordova plugin rm camera --nofetch +<li><p>Remove the plugin from the project and <code>npm uninstall</code> it. Removes it from the <code>node_modules</code> directory:</p> +<div class="highlight"><pre><code class="language-" data-lang="">cordova plugin rm camera --fetch </code></pre></div></li> <li><p>List all plugins installed in the project:</p> <div class="highlight"><pre><code class="language-" data-lang="">cordova plugin ls @@ -3588,7 +3589,7 @@ See <a href="#cordova-run-command">cordo <h3>Example</h3> <ul> -<li><p>Clean <code>android</code> platform build artifacts:</p> +<li><p>Clean <code>android</code> platform build artifiacts:</p> <div class="highlight"><pre><code class="language-" data-lang="">cordova clean android </code></pre></div></li> </ul> @@ -3676,24 +3677,6 @@ cordova build --no-telemetry cordova [command] -h cordova -h [command] </code></pre></div> -<h2>cordova config command</h2> - -<h3>Synopsis</h3> - -<p>Set, get, delete, edit, and list global cordova options.</p> - -<h3>Syntax</h3> -<div class="highlight"><pre><code class="language-" data-lang="">cordova config ls -cordova config edit -cordova config set <key> <value> -cordova config get <key> -cordova config delete <key> -</code></pre></div> -<h3>Examples</h3> -<div class="highlight"><pre><code class="language-" data-lang="">cordova config set autosave false -cordova config set browserify false -cordova config set fetch true -</code></pre></div> </div> </div> Modified: cordova/site/public/docs/en/dev/reference/cordova-plugin-battery-status/index.html URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/reference/cordova-plugin-battery-status/index.html?rev=1810045&r1=1810044&r2=1810045&view=diff ============================================================================== --- cordova/site/public/docs/en/dev/reference/cordova-plugin-battery-status/index.html (original) +++ cordova/site/public/docs/en/dev/reference/cordova-plugin-battery-status/index.html Thu Sep 28 21:54:09 2017 @@ -2738,21 +2738,19 @@ <table><thead> <tr> -<th style="text-align: center">Android 4.4</th> -<th style="text-align: center">Android 5.1</th> -<th style="text-align: center">Android 6.0</th> -<th style="text-align: center">iOS 9.3</th> -<th style="text-align: center">iOS 10.0</th> +<th style="text-align: center">Android</th> +<th style="text-align: center">iOS</th> +<th style="text-align: center">Windows 8.1 Store</th> +<th style="text-align: center">Windows 8.1 Phone</th> <th style="text-align: center">Windows 10 Store</th> <th style="text-align: center">Travis CI</th> </tr> </thead><tbody> <tr> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android-4.4,PLUGIN=cordova-plugin-battery-status/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android-4.4,PLUGIN=cordova-plugin-battery-status" alt="Build Status"></a></td> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android-5.1,PLUGIN=cordova-plugin-battery-status/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android-5.1,PLUGIN=cordova-plugin-battery-status" alt="Build Status"></a></td> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android-6.0,PLUGIN=cordova-plugin-battery-status/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android-6.0,PLUGIN=cordova-plugin-battery-status" alt="Build Status"></a></td> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=ios-9.3,PLUGIN=cordova-plugin-battery-status/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=ios-9.3,PLUGIN=cordova-plugin-battery-status" alt="Build Status"></a></td> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=ios-10.0,PLUGIN=cordova-plugin-battery-status/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=ios-10.0,PLUGIN=cordova-plugin-battery-status" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android,PLUGIN=cordova-plugin-battery-status/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android,PLUGIN=cordova-plugin-battery-status" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=ios,PLUGIN=cordova-plugin-battery-status/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=ios,PLUGIN=cordova-plugin-battery-status" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=windows-8.1-store,PLUGIN=cordova-plugin-battery-status/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=windows-8.1-store,PLUGIN=cordova-plugin-battery-status" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=windows-8.1-phone,PLUGIN=cordova-plugin-battery-status/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=windows-8.1-phone,PLUGIN=cordova-plugin-battery-status" alt="Build Status"></a></td> <td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=windows-10-store,PLUGIN=cordova-plugin-battery-status/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=windows-10-store,PLUGIN=cordova-plugin-battery-status" alt="Build Status"></a></td> <td style="text-align: center"><a href="https://travis-ci.org/apache/cordova-plugin-battery-status"><img src="https://travis-ci.org/apache/cordova-plugin-battery-status.svg?branch=master" alt="Build Status"></a></td> </tr> @@ -2801,7 +2799,7 @@ function onBatteryStatus(status) { <li>Android</li> <li>BlackBerry 10</li> <li>Windows Phone 7 and 8</li> -<li>Windows (Windows Phone 8.1 and Windows 10)</li> +<li>Windows (Windows Phone 8.1 only)</li> <li>Firefox OS</li> <li>Browser (Chrome, Firefox, Opera)</li> </ul> @@ -2837,7 +2835,7 @@ function onBatteryLow(status) { <li>Android</li> <li>BlackBerry 10</li> <li>Firefox OS</li> -<li>Windows (Windows Phone 8.1 and Windows 10)</li> +<li>Windows (Windows Phone 8.1 only)</li> <li>Browser (Chrome, Firefox, Opera)</li> </ul> @@ -2864,7 +2862,7 @@ function onBatteryCritical(status) { <li>Android</li> <li>BlackBerry 10</li> <li>Firefox OS</li> -<li>Windows (Windows Phone 8.1 and Windows 10)</li> +<li>Windows (Windows Phone 8.1 only)</li> <li>Browser (Chrome, Firefox, Opera)</li> </ul> Modified: cordova/site/public/docs/en/dev/reference/cordova-plugin-camera/index.html URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/reference/cordova-plugin-camera/index.html?rev=1810045&r1=1810044&r2=1810045&view=diff ============================================================================== --- cordova/site/public/docs/en/dev/reference/cordova-plugin-camera/index.html (original) +++ cordova/site/public/docs/en/dev/reference/cordova-plugin-camera/index.html Thu Sep 28 21:54:09 2017 @@ -2738,21 +2738,19 @@ <table><thead> <tr> -<th style="text-align: center">Android 4.4</th> -<th style="text-align: center">Android 5.1</th> -<th style="text-align: center">Android 6.0</th> -<th style="text-align: center">iOS 9.3</th> -<th style="text-align: center">iOS 10.0</th> +<th style="text-align: center">Android</th> +<th style="text-align: center">iOS</th> +<th style="text-align: center">Windows 8.1 Store</th> +<th style="text-align: center">Windows 8.1 Phone</th> <th style="text-align: center">Windows 10 Store</th> <th style="text-align: center">Travis CI</th> </tr> </thead><tbody> <tr> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android-4.4,PLUGIN=cordova-plugin-camera/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android-4.4,PLUGIN=cordova-plugin-camera" alt="Build Status"></a></td> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android-5.1,PLUGIN=cordova-plugin-camera/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android-5.1,PLUGIN=cordova-plugin-camera" alt="Build Status"></a></td> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android-6.0,PLUGIN=cordova-plugin-camera/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android-6.0,PLUGIN=cordova-plugin-camera" alt="Build Status"></a></td> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=ios-9.3,PLUGIN=cordova-plugin-camera/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=ios-9.3,PLUGIN=cordova-plugin-camera" alt="Build Status"></a></td> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=ios-10.0,PLUGIN=cordova-plugin-camera/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=ios-10.0,PLUGIN=cordova-plugin-camera" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android,PLUGIN=cordova-plugin-camera/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android,PLUGIN=cordova-plugin-camera" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=ios,PLUGIN=cordova-plugin-camera/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=ios,PLUGIN=cordova-plugin-camera" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=windows-8.1-store,PLUGIN=cordova-plugin-camera/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=windows-8.1-store,PLUGIN=cordova-plugin-camera" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=windows-8.1-phone,PLUGIN=cordova-plugin-camera/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=windows-8.1-phone,PLUGIN=cordova-plugin-camera" alt="Build Status"></a></td> <td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=windows-10-store,PLUGIN=cordova-plugin-camera/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=windows-10-store,PLUGIN=cordova-plugin-camera" alt="Build Status"></a></td> <td style="text-align: center"><a href="https://travis-ci.org/apache/cordova-plugin-camera"><img src="https://travis-ci.org/apache/cordova-plugin-camera.svg?branch=master" alt="Build Status"></a></td> </tr> @@ -2802,11 +2800,11 @@ Documentation consists of template and A <h3>iOS Quirks</h3> -<p>Since iOS 10 it's mandatory to add a <code>NSCameraUsageDescription</code> and <code>NSPhotoLibraryUsageDescription</code> in the info.plist.</p> +<p>Since iOS 10 it's mandatory to add a <code>NSCameraUsageDescription</code> and <code>NSPhotoLibraryUsageDescriptionentry</code> in the info.plist.</p> <ul> <li><code>NSCameraUsageDescription</code> describes the reason that the app accesses the user’s camera.</li> -<li><code>NSPhotoLibraryUsageDescription</code> describes the reason the app accesses the user's photo library. </li> +<li><code>NSPhotoLibraryUsageDescriptionentry</code> describes the reason the app accesses the user's photo library. </li> </ul> <p>When the system prompts the user to allow access, this string is displayed as part of the dialog box. </p> @@ -2815,11 +2813,12 @@ Documentation consists of template and A <ul> <li><code>CAMERA_USAGE_DESCRIPTION</code> for <code>NSCameraUsageDescription</code></li> -<li><code>PHOTOLIBRARY_USAGE_DESCRIPTION</code> for <code>NSPhotoLibraryUsageDescription</code></li> </ul> +<h2>- <code>PHOTOLIBRARY_USAGE_DESCRIPTION</code> for <code>NSPhotoLibraryUsageDescriptionentry</code></h2> + <p>Example:</p> -<div class="highlight"><pre><code class="language-" data-lang="">cordova plugin add cordova-plugin-camera --variable CAMERA_USAGE_DESCRIPTION="your usage message" --variable PHOTOLIBRARY_USAGE_DESCRIPTION="your usage message" +<div class="highlight"><pre><code class="language-" data-lang="">cordova plugin add cordova-plugin-camera --variable CAMERA_USAGE_DESCRIPTION="your usage message" </code></pre></div> <p>If you don't pass the variable, the plugin will add an empty string as value.</p> Modified: cordova/site/public/docs/en/dev/reference/cordova-plugin-console/index.html URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/reference/cordova-plugin-console/index.html?rev=1810045&r1=1810044&r2=1810045&view=diff ============================================================================== --- cordova/site/public/docs/en/dev/reference/cordova-plugin-console/index.html (original) +++ cordova/site/public/docs/en/dev/reference/cordova-plugin-console/index.html Thu Sep 28 21:54:09 2017 @@ -2738,21 +2738,19 @@ <table><thead> <tr> -<th style="text-align: center">Android 4.4</th> -<th style="text-align: center">Android 5.1</th> -<th style="text-align: center">Android 6.0</th> -<th style="text-align: center">iOS 9.3</th> -<th style="text-align: center">iOS 10.0</th> +<th style="text-align: center">Android</th> +<th style="text-align: center">iOS</th> +<th style="text-align: center">Windows 8.1 Store</th> +<th style="text-align: center">Windows 8.1 Phone</th> <th style="text-align: center">Windows 10 Store</th> <th style="text-align: center">Travis CI</th> </tr> </thead><tbody> <tr> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android-4.4,PLUGIN=cordova-plugin-console/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android-4.4,PLUGIN=cordova-plugin-console" alt="Build Status"></a></td> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android-5.1,PLUGIN=cordova-plugin-console/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android-5.1,PLUGIN=cordova-plugin-console" alt="Build Status"></a></td> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android-6.0,PLUGIN=cordova-plugin-console/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android-6.0,PLUGIN=cordova-plugin-console" alt="Build Status"></a></td> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=ios-9.3,PLUGIN=cordova-plugin-console/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=ios-9.3,PLUGIN=cordova-plugin-console" alt="Build Status"></a></td> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=ios-10.0,PLUGIN=cordova-plugin-console/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=ios-10.0,PLUGIN=cordova-plugin-console" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android,PLUGIN=cordova-plugin-console/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android,PLUGIN=cordova-plugin-console" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=ios,PLUGIN=cordova-plugin-console/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=ios,PLUGIN=cordova-plugin-console" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=windows-8.1-store,PLUGIN=cordova-plugin-console/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=windows-8.1-store,PLUGIN=cordova-plugin-console" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=windows-8.1-phone,PLUGIN=cordova-plugin-console/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=windows-8.1-phone,PLUGIN=cordova-plugin-console" alt="Build Status"></a></td> <td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=windows-10-store,PLUGIN=cordova-plugin-console/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=windows-10-store,PLUGIN=cordova-plugin-console" alt="Build Status"></a></td> <td style="text-align: center"><a href="https://travis-ci.org/apache/cordova-plugin-console"><img src="https://travis-ci.org/apache/cordova-plugin-console.svg?branch=master" alt="Build Status"></a></td> </tr> Modified: cordova/site/public/docs/en/dev/reference/cordova-plugin-contacts/index.html URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/reference/cordova-plugin-contacts/index.html?rev=1810045&r1=1810044&r2=1810045&view=diff ============================================================================== --- cordova/site/public/docs/en/dev/reference/cordova-plugin-contacts/index.html (original) +++ cordova/site/public/docs/en/dev/reference/cordova-plugin-contacts/index.html Thu Sep 28 21:54:09 2017 @@ -2738,21 +2738,19 @@ <table><thead> <tr> -<th style="text-align: center">Android 4.4</th> -<th style="text-align: center">Android 5.1</th> -<th style="text-align: center">Android 6.0</th> -<th style="text-align: center">iOS 9.3</th> -<th style="text-align: center">iOS 10.0</th> +<th style="text-align: center">Android</th> +<th style="text-align: center">iOS</th> +<th style="text-align: center">Windows 8.1 Store</th> +<th style="text-align: center">Windows 8.1 Phone</th> <th style="text-align: center">Windows 10 Store</th> <th style="text-align: center">Travis CI</th> </tr> </thead><tbody> <tr> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android-4.4,PLUGIN=cordova-plugin-contacts/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android-4.4,PLUGIN=cordova-plugin-contacts" alt="Build Status"></a></td> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android-5.1,PLUGIN=cordova-plugin-contacts/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android-5.1,PLUGIN=cordova-plugin-contacts" alt="Build Status"></a></td> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android-6.0,PLUGIN=cordova-plugin-contacts/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android-6.0,PLUGIN=cordova-plugin-contacts" alt="Build Status"></a></td> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=ios-9.3,PLUGIN=cordova-plugin-contacts/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=ios-9.3,PLUGIN=cordova-plugin-contacts" alt="Build Status"></a></td> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=ios-10.0,PLUGIN=cordova-plugin-contacts/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=ios-10.0,PLUGIN=cordova-plugin-contacts" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android,PLUGIN=cordova-plugin-contacts/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android,PLUGIN=cordova-plugin-contacts" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=ios,PLUGIN=cordova-plugin-contacts/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=ios,PLUGIN=cordova-plugin-contacts" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=windows-8.1-store,PLUGIN=cordova-plugin-contacts/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=windows-8.1-store,PLUGIN=cordova-plugin-contacts" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=windows-8.1-phone,PLUGIN=cordova-plugin-contacts/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=windows-8.1-phone,PLUGIN=cordova-plugin-contacts" alt="Build Status"></a></td> <td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=windows-10-store,PLUGIN=cordova-plugin-contacts/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=windows-10-store,PLUGIN=cordova-plugin-contacts" alt="Build Status"></a></td> <td style="text-align: center"><a href="https://travis-ci.org/apache/cordova-plugin-contacts"><img src="https://travis-ci.org/apache/cordova-plugin-contacts.svg?branch=master" alt="Build Status"></a></td> </tr> Modified: cordova/site/public/docs/en/dev/reference/cordova-plugin-device-motion/index.html URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/reference/cordova-plugin-device-motion/index.html?rev=1810045&r1=1810044&r2=1810045&view=diff ============================================================================== --- cordova/site/public/docs/en/dev/reference/cordova-plugin-device-motion/index.html (original) +++ cordova/site/public/docs/en/dev/reference/cordova-plugin-device-motion/index.html Thu Sep 28 21:54:09 2017 @@ -2738,21 +2738,19 @@ <table><thead> <tr> -<th style="text-align: center">Android 4.4</th> -<th style="text-align: center">Android 5.1</th> -<th style="text-align: center">Android 6.0</th> -<th style="text-align: center">iOS 9.3</th> -<th style="text-align: center">iOS 10.0</th> +<th style="text-align: center">Android</th> +<th style="text-align: center">iOS</th> +<th style="text-align: center">Windows 8.1 Store</th> +<th style="text-align: center">Windows 8.1 Phone</th> <th style="text-align: center">Windows 10 Store</th> <th style="text-align: center">Travis CI</th> </tr> </thead><tbody> <tr> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android-4.4,PLUGIN=cordova-plugin-device-motion/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android-4.4,PLUGIN=cordova-plugin-device-motion" alt="Build Status"></a></td> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android-5.1,PLUGIN=cordova-plugin-device-motion/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android-5.1,PLUGIN=cordova-plugin-device-motion" alt="Build Status"></a></td> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android-6.0,PLUGIN=cordova-plugin-device-motion/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android-6.0,PLUGIN=cordova-plugin-device-motion" alt="Build Status"></a></td> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=ios-9.3,PLUGIN=cordova-plugin-device-motion/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=ios-9.3,PLUGIN=cordova-plugin-device-motion" alt="Build Status"></a></td> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=ios-10.0,PLUGIN=cordova-plugin-device-motion/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=ios-10.0,PLUGIN=cordova-plugin-device-motion" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android,PLUGIN=cordova-plugin-device-motion/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android,PLUGIN=cordova-plugin-device-motion" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=ios,PLUGIN=cordova-plugin-device-motion/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=ios,PLUGIN=cordova-plugin-device-motion" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=windows-8.1-store,PLUGIN=cordova-plugin-device-motion/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=windows-8.1-store,PLUGIN=cordova-plugin-device-motion" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=windows-8.1-phone,PLUGIN=cordova-plugin-device-motion/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=windows-8.1-phone,PLUGIN=cordova-plugin-device-motion" alt="Build Status"></a></td> <td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=windows-10-store,PLUGIN=cordova-plugin-device-motion/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=windows-10-store,PLUGIN=cordova-plugin-device-motion" alt="Build Status"></a></td> <td style="text-align: center"><a href="https://travis-ci.org/apache/cordova-plugin-device-motion"><img src="https://travis-ci.org/apache/cordova-plugin-device-motion.svg?branch=master" alt="Build Status"></a></td> </tr> Modified: cordova/site/public/docs/en/dev/reference/cordova-plugin-device-orientation/index.html URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/reference/cordova-plugin-device-orientation/index.html?rev=1810045&r1=1810044&r2=1810045&view=diff ============================================================================== --- cordova/site/public/docs/en/dev/reference/cordova-plugin-device-orientation/index.html (original) +++ cordova/site/public/docs/en/dev/reference/cordova-plugin-device-orientation/index.html Thu Sep 28 21:54:09 2017 @@ -2738,21 +2738,19 @@ <table><thead> <tr> -<th style="text-align: center">Android 4.4</th> -<th style="text-align: center">Android 5.1</th> -<th style="text-align: center">Android 6.0</th> -<th style="text-align: center">iOS 9.3</th> -<th style="text-align: center">iOS 10.0</th> +<th style="text-align: center">Android</th> +<th style="text-align: center">iOS</th> +<th style="text-align: center">Windows 8.1 Store</th> +<th style="text-align: center">Windows 8.1 Phone</th> <th style="text-align: center">Windows 10 Store</th> <th style="text-align: center">Travis CI</th> </tr> </thead><tbody> <tr> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android-4.4,PLUGIN=cordova-plugin-device-orientation/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android-4.4,PLUGIN=cordova-plugin-device-orientation" alt="Build Status"></a></td> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android-5.1,PLUGIN=cordova-plugin-device-orientation/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android-5.1,PLUGIN=cordova-plugin-device-orientation" alt="Build Status"></a></td> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android-6.0,PLUGIN=cordova-plugin-device-orientation/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android-6.0,PLUGIN=cordova-plugin-device-orientation" alt="Build Status"></a></td> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=ios-9.3,PLUGIN=cordova-plugin-device-orientation/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=ios-9.3,PLUGIN=cordova-plugin-device-orientation" alt="Build Status"></a></td> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=ios-10.0,PLUGIN=cordova-plugin-device-orientation/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=ios-10.0,PLUGIN=cordova-plugin-device-orientation" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android,PLUGIN=cordova-plugin-device-orientation/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android,PLUGIN=cordova-plugin-device-orientation" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=ios,PLUGIN=cordova-plugin-device-orientation/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=ios,PLUGIN=cordova-plugin-device-orientation" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=windows-8.1-store,PLUGIN=cordova-plugin-device-orientation/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=windows-8.1-store,PLUGIN=cordova-plugin-device-orientation" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=windows-8.1-phone,PLUGIN=cordova-plugin-device-orientation/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=windows-8.1-phone,PLUGIN=cordova-plugin-device-orientation" alt="Build Status"></a></td> <td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=windows-10-store,PLUGIN=cordova-plugin-device-orientation/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=windows-10-store,PLUGIN=cordova-plugin-device-orientation" alt="Build Status"></a></td> <td style="text-align: center"><a href="https://travis-ci.org/apache/cordova-plugin-device-orientation"><img src="https://travis-ci.org/apache/cordova-plugin-device-orientation.svg?branch=master" alt="Build Status"></a></td> </tr> Modified: cordova/site/public/docs/en/dev/reference/cordova-plugin-device/index.html URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/reference/cordova-plugin-device/index.html?rev=1810045&r1=1810044&r2=1810045&view=diff ============================================================================== --- cordova/site/public/docs/en/dev/reference/cordova-plugin-device/index.html (original) +++ cordova/site/public/docs/en/dev/reference/cordova-plugin-device/index.html Thu Sep 28 21:54:09 2017 @@ -2738,21 +2738,19 @@ <table><thead> <tr> -<th style="text-align: center">Android 4.4</th> -<th style="text-align: center">Android 5.1</th> -<th style="text-align: center">Android 6.0</th> -<th style="text-align: center">iOS 9.3</th> -<th style="text-align: center">iOS 10.0</th> +<th style="text-align: center">Android</th> +<th style="text-align: center">iOS</th> +<th style="text-align: center">Windows 8.1 Store</th> +<th style="text-align: center">Windows 8.1 Phone</th> <th style="text-align: center">Windows 10 Store</th> <th style="text-align: center">Travis CI</th> </tr> </thead><tbody> <tr> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android-4.4,PLUGIN=cordova-plugin-device/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android-4.4,PLUGIN=cordova-plugin-device" alt="Build Status"></a></td> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android-5.1,PLUGIN=cordova-plugin-device/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android-5.1,PLUGIN=cordova-plugin-device" alt="Build Status"></a></td> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android-6.0,PLUGIN=cordova-plugin-device/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android-6.0,PLUGIN=cordova-plugin-device" alt="Build Status"></a></td> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=ios-9.3,PLUGIN=cordova-plugin-device/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=ios-9.3,PLUGIN=cordova-plugin-device" alt="Build Status"></a></td> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=ios-10.0,PLUGIN=cordova-plugin-device/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=ios-10.0,PLUGIN=cordova-plugin-device" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android,PLUGIN=cordova-plugin-device/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android,PLUGIN=cordova-plugin-device" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=ios,PLUGIN=cordova-plugin-device/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=ios,PLUGIN=cordova-plugin-device" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=windows-8.1-store,PLUGIN=cordova-plugin-device/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=windows-8.1-store,PLUGIN=cordova-plugin-device" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=windows-8.1-phone,PLUGIN=cordova-plugin-device/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=windows-8.1-phone,PLUGIN=cordova-plugin-device" alt="Build Status"></a></td> <td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=windows-10-store,PLUGIN=cordova-plugin-device/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=windows-10-store,PLUGIN=cordova-plugin-device" alt="Build Status"></a></td> <td style="text-align: center"><a href="https://travis-ci.org/apache/cordova-plugin-device"><img src="https://travis-ci.org/apache/cordova-plugin-device.svg?branch=master" alt="Build Status"></a></td> </tr> Modified: cordova/site/public/docs/en/dev/reference/cordova-plugin-dialogs/index.html URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/reference/cordova-plugin-dialogs/index.html?rev=1810045&r1=1810044&r2=1810045&view=diff ============================================================================== --- cordova/site/public/docs/en/dev/reference/cordova-plugin-dialogs/index.html (original) +++ cordova/site/public/docs/en/dev/reference/cordova-plugin-dialogs/index.html Thu Sep 28 21:54:09 2017 @@ -2738,21 +2738,19 @@ <table><thead> <tr> -<th style="text-align: center">Android 4.4</th> -<th style="text-align: center">Android 5.1</th> -<th style="text-align: center">Android 6.0</th> -<th style="text-align: center">iOS 9.3</th> -<th style="text-align: center">iOS 10.0</th> +<th style="text-align: center">Android</th> +<th style="text-align: center">iOS</th> +<th style="text-align: center">Windows 8.1 Store</th> +<th style="text-align: center">Windows 8.1 Phone</th> <th style="text-align: center">Windows 10 Store</th> <th style="text-align: center">Travis CI</th> </tr> </thead><tbody> <tr> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android-4.4,PLUGIN=cordova-plugin-dialogs/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android-4.4,PLUGIN=cordova-plugin-dialogs" alt="Build Status"></a></td> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android-5.1,PLUGIN=cordova-plugin-dialogs/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android-5.1,PLUGIN=cordova-plugin-dialogs" alt="Build Status"></a></td> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android-6.0,PLUGIN=cordova-plugin-dialogs/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android-6.0,PLUGIN=cordova-plugin-dialogs" alt="Build Status"></a></td> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=ios-9.3,PLUGIN=cordova-plugin-dialogs/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=ios-9.3,PLUGIN=cordova-plugin-dialogs" alt="Build Status"></a></td> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=ios-10.0,PLUGIN=cordova-plugin-dialogs/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=ios-10.0,PLUGIN=cordova-plugin-dialogs" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android,PLUGIN=cordova-plugin-dialogs/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android,PLUGIN=cordova-plugin-dialogs" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=ios,PLUGIN=cordova-plugin-dialogs/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=ios,PLUGIN=cordova-plugin-dialogs" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=windows-8.1-store,PLUGIN=cordova-plugin-dialogs/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=windows-8.1-store,PLUGIN=cordova-plugin-dialogs" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=windows-8.1-phone,PLUGIN=cordova-plugin-dialogs/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=windows-8.1-phone,PLUGIN=cordova-plugin-dialogs" alt="Build Status"></a></td> <td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=windows-10-store,PLUGIN=cordova-plugin-dialogs/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=windows-10-store,PLUGIN=cordova-plugin-dialogs" alt="Build Status"></a></td> <td style="text-align: center"><a href="https://travis-ci.org/apache/cordova-plugin-dialogs"><img src="https://travis-ci.org/apache/cordova-plugin-dialogs.svg?branch=master" alt="Build Status"></a></td> </tr> Modified: cordova/site/public/docs/en/dev/reference/cordova-plugin-file-transfer/index.html URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/reference/cordova-plugin-file-transfer/index.html?rev=1810045&r1=1810044&r2=1810045&view=diff ============================================================================== --- cordova/site/public/docs/en/dev/reference/cordova-plugin-file-transfer/index.html (original) +++ cordova/site/public/docs/en/dev/reference/cordova-plugin-file-transfer/index.html Thu Sep 28 21:54:09 2017 @@ -2738,21 +2738,19 @@ <table><thead> <tr> -<th style="text-align: center">Android 4.4</th> -<th style="text-align: center">Android 5.1</th> -<th style="text-align: center">Android 6.0</th> -<th style="text-align: center">iOS 9.3</th> -<th style="text-align: center">iOS 10.0</th> +<th style="text-align: center">Android</th> +<th style="text-align: center">iOS</th> +<th style="text-align: center">Windows 8.1 Store</th> +<th style="text-align: center">Windows 8.1 Phone</th> <th style="text-align: center">Windows 10 Store</th> <th style="text-align: center">Travis CI</th> </tr> </thead><tbody> <tr> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android-4.4,PLUGIN=cordova-plugin-file-transfer/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android-4.4,PLUGIN=cordova-plugin-file-transfer" alt="Build Status"></a></td> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android-5.1,PLUGIN=cordova-plugin-file-transfer/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android-5.1,PLUGIN=cordova-plugin-file-transfer" alt="Build Status"></a></td> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android-6.0,PLUGIN=cordova-plugin-file-transfer/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android-6.0,PLUGIN=cordova-plugin-file-transfer" alt="Build Status"></a></td> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=ios-9.3,PLUGIN=cordova-plugin-file-transfer/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=ios-9.3,PLUGIN=cordova-plugin-file-transfer" alt="Build Status"></a></td> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=ios-10.0,PLUGIN=cordova-plugin-file-transfer/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=ios-10.0,PLUGIN=cordova-plugin-file-transfer" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android,PLUGIN=cordova-plugin-file-transfer/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android,PLUGIN=cordova-plugin-file-transfer" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=ios,PLUGIN=cordova-plugin-file-transfer/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=ios,PLUGIN=cordova-plugin-file-transfer" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=windows-8.1-store,PLUGIN=cordova-plugin-file-transfer/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=windows-8.1-store,PLUGIN=cordova-plugin-file-transfer" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=windows-8.1-phone,PLUGIN=cordova-plugin-file-transfer/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=windows-8.1-phone,PLUGIN=cordova-plugin-file-transfer" alt="Build Status"></a></td> <td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=windows-10-store,PLUGIN=cordova-plugin-file-transfer/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=windows-10-store,PLUGIN=cordova-plugin-file-transfer" alt="Build Status"></a></td> <td style="text-align: center"><a href="https://travis-ci.org/apache/cordova-plugin-file-transfer"><img src="https://travis-ci.org/apache/cordova-plugin-file-transfer.svg?branch=master" alt="Build Status"></a></td> </tr> Modified: cordova/site/public/docs/en/dev/reference/cordova-plugin-file/index.html URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/reference/cordova-plugin-file/index.html?rev=1810045&r1=1810044&r2=1810045&view=diff ============================================================================== --- cordova/site/public/docs/en/dev/reference/cordova-plugin-file/index.html (original) +++ cordova/site/public/docs/en/dev/reference/cordova-plugin-file/index.html Thu Sep 28 21:54:09 2017 @@ -2738,21 +2738,19 @@ <table><thead> <tr> -<th style="text-align: center">Android 4.4</th> -<th style="text-align: center">Android 5.1</th> -<th style="text-align: center">Android 6.0</th> -<th style="text-align: center">iOS 9.3</th> -<th style="text-align: center">iOS 10.0</th> +<th style="text-align: center">Android</th> +<th style="text-align: center">iOS</th> +<th style="text-align: center">Windows 8.1 Store</th> +<th style="text-align: center">Windows 8.1 Phone</th> <th style="text-align: center">Windows 10 Store</th> <th style="text-align: center">Travis CI</th> </tr> </thead><tbody> <tr> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android-4.4,PLUGIN=cordova-plugin-file/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android-4.4,PLUGIN=cordova-plugin-file" alt="Build Status"></a></td> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android-5.1,PLUGIN=cordova-plugin-file/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android-5.1,PLUGIN=cordova-plugin-file" alt="Build Status"></a></td> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android-6.0,PLUGIN=cordova-plugin-file/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android-6.0,PLUGIN=cordova-plugin-file" alt="Build Status"></a></td> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=ios-9.3,PLUGIN=cordova-plugin-file/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=ios-9.3,PLUGIN=cordova-plugin-file" alt="Build Status"></a></td> -<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=ios-10.0,PLUGIN=cordova-plugin-file/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=ios-10.0,PLUGIN=cordova-plugin-file" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=android,PLUGIN=cordova-plugin-file/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=android,PLUGIN=cordova-plugin-file" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=ios,PLUGIN=cordova-plugin-file/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=ios,PLUGIN=cordova-plugin-file" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=windows-8.1-store,PLUGIN=cordova-plugin-file/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=windows-8.1-store,PLUGIN=cordova-plugin-file" alt="Build Status"></a></td> +<td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=windows-8.1-phone,PLUGIN=cordova-plugin-file/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=windows-8.1-phone,PLUGIN=cordova-plugin-file" alt="Build Status"></a></td> <td style="text-align: center"><a href="http://cordova-ci.cloudapp.net:8080/job/cordova-periodic-build/PLATFORM=windows-10-store,PLUGIN=cordova-plugin-file/"><img src="http://cordova-ci.cloudapp.net:8080/buildStatus/icon?job=cordova-periodic-build/PLATFORM=windows-10-store,PLUGIN=cordova-plugin-file" alt="Build Status"></a></td> <td style="text-align: center"><a href="https://travis-ci.org/apache/cordova-plugin-file"><img src="https://travis-ci.org/apache/cordova-plugin-file.svg?branch=master" alt="Build Status"></a></td> </tr> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
