CB-10560: Removing all mention of firefoxos in dev

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

Branch: refs/heads/master
Commit: 5f783205739e312d0a41bf9471e8f1305300ba29
Parents: 0de190a
Author: riknoll <[email protected]>
Authored: Mon Feb 8 11:24:25 2016 -0800
Committer: riknoll <[email protected]>
Committed: Mon Feb 8 11:24:25 2016 -0800

----------------------------------------------------------------------
 www/docs/en/dev/config_ref/images.md            |  6 --
 www/docs/en/dev/cordova/storage/storage.md      |  1 -
 www/docs/en/dev/guide/appdev/whitelist/index.md | 20 -----
 www/docs/en/dev/guide/cli/index.md              |  3 -
 www/docs/en/dev/guide/next/index.md             | 28 ++++---
 .../en/dev/guide/platforms/firefoxos/index.md   | 79 --------------------
 www/docs/en/dev/guide/platforms/index.md        |  4 -
 www/docs/en/dev/guide/support/index.md          | 24 ------
 8 files changed, 13 insertions(+), 152 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/5f783205/www/docs/en/dev/config_ref/images.md
----------------------------------------------------------------------
diff --git a/www/docs/en/dev/config_ref/images.md 
b/www/docs/en/dev/config_ref/images.md
index db01681..bd5022c 100644
--- a/www/docs/en/dev/config_ref/images.md
+++ b/www/docs/en/dev/config_ref/images.md
@@ -71,12 +71,6 @@ BlackBerry10
 See BlackBerry's documentation for targeting multiple sizes and locales.
 [http://developer.blackberry.com/html5/documentation/icon_element.html]
 
-Firefox OS
-
-         <platform name="firefoxos">
-                  <icon src="res/ff/logo.png" width="60" height="60" />
-         </platform>
-
 iOS
 
          <platform name="ios">

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/5f783205/www/docs/en/dev/cordova/storage/storage.md
----------------------------------------------------------------------
diff --git a/www/docs/en/dev/cordova/storage/storage.md 
b/www/docs/en/dev/cordova/storage/storage.md
index 729032c..384f46a 100644
--- a/www/docs/en/dev/cordova/storage/storage.md
+++ b/www/docs/en/dev/cordova/storage/storage.md
@@ -55,7 +55,6 @@ than LocalStorage but fewer than WebSQL.
 The following platforms support IndexedDB:
 
 - BlackBerry 10
-- Firefox OS
 - Windows Phone 8
 - Windows 8
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/5f783205/www/docs/en/dev/guide/appdev/whitelist/index.md
----------------------------------------------------------------------
diff --git a/www/docs/en/dev/guide/appdev/whitelist/index.md 
b/www/docs/en/dev/guide/appdev/whitelist/index.md
index f18525c..752107c 100644
--- a/www/docs/en/dev/guide/appdev/whitelist/index.md
+++ b/www/docs/en/dev/guide/appdev/whitelist/index.md
@@ -135,26 +135,6 @@ ways:
 (For more information on support, see BlackBerry's documentation on the
 [access element][8].)
 
-## Firefox OS
-
-In Firefox OS there is no concept of whitelisting a specific domain. Instead
-there is a special permission called
-[SystemXHR](https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest#Permissions).
-There is a need to add this permission to `config.xml`:
-
-       <platform name="firefoxos">
-               <permission name="systemXHR" privileged="true" 
description="load data from server" />
-       </platform>
-
-The `XMLHttpRequest` object needs to be instantiated with two parameters
-`mozAnon` and `mozSystem`:
-
-       var request = new XMLHttpRequest({
-               mozAnon: true,
-               mozSystem: true});
-
-This solution is transparent so there is no difference for other platforms.
-
 ## Windows Phone Whitelisting
 
 The whitelisting rules for Windows Phone 8 are found in the

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/5f783205/www/docs/en/dev/guide/cli/index.md
----------------------------------------------------------------------
diff --git a/www/docs/en/dev/guide/cli/index.md 
b/www/docs/en/dev/guide/cli/index.md
index 81d3b5c..c2f7031 100644
--- a/www/docs/en/dev/guide/cli/index.md
+++ b/www/docs/en/dev/guide/cli/index.md
@@ -46,7 +46,6 @@ platform's SDK. The CLI supports the following combinations:
 * BlackBerry 10   (Mac, Linux, Windows)
 * Windows Phone 8 (Windows)
 * Windows         (Windows)
-* Firefox OS      (Mac, Linux, Windows)
 
 On the Mac, the command-line is available via the _Terminal_
 application. On the PC, it's available as _Command Prompt_ under
@@ -170,7 +169,6 @@ SDK.  Run any of these from a Mac:
         $ cordova platform add ios
         $ cordova platform add android
         $ cordova platform add blackberry10
-        $ cordova platform add firefoxos
 
 Run any of these from a Windows machine, where _wp_ refers to
 different versions of the Windows Phone operating system:
@@ -179,7 +177,6 @@ different versions of the Windows Phone operating system:
         $ cordova platform add windows
         $ cordova platform add android
         $ cordova platform add blackberry10
-        $ cordova platform add firefoxos
 
 Run this to check your current set of platforms:
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/5f783205/www/docs/en/dev/guide/next/index.md
----------------------------------------------------------------------
diff --git a/www/docs/en/dev/guide/next/index.md 
b/www/docs/en/dev/guide/next/index.md
index 359127d..8a987ed 100644
--- a/www/docs/en/dev/guide/next/index.md
+++ b/www/docs/en/dev/guide/next/index.md
@@ -33,17 +33,17 @@ This guide contains the following topics:
 * User Interface
 * Special Considerations
 * Keeping Up
-* Getting Help 
+* Getting Help
 
 # Best Practices Cordova app development
 
 ## 1) SPA Is Your Friend
 
-First and foremost - your Cordova applications should adopt the SPA (Single 
Page Application) design. Loosely defined, a SPA is a client-side application 
that is run from one request of a web page. The user loads an initial set of 
resources (HTML, CSS, and JavaScript) and further updates (showing a new view, 
loading data) is done via AJAX. SPAs are commonly used for more complex 
client-side applications. GMail is a great example of this. After you load 
GMail, mail views, editing, and organization are all done by updating the DOM 
instead of actually leaving the current page to load a completely new one. 
+First and foremost - your Cordova applications should adopt the SPA (Single 
Page Application) design. Loosely defined, a SPA is a client-side application 
that is run from one request of a web page. The user loads an initial set of 
resources (HTML, CSS, and JavaScript) and further updates (showing a new view, 
loading data) is done via AJAX. SPAs are commonly used for more complex 
client-side applications. GMail is a great example of this. After you load 
GMail, mail views, editing, and organization are all done by updating the DOM 
instead of actually leaving the current page to load a completely new one.
 
-Using a SPA can help you organize your application in a more efficient manner, 
but it also has specific benefits for Cordova applications. A Cordova 
application must wait for the [deviceready][DeviceReadyEvent] event to fire 
before any plugins may be used. If you do not use a SPA, and your user clicks 
to go from one page to another, you will have to wait for 
[deviceready][DeviceReadyEvent] to fire again before you make use of a plugin. 
This is easy to forget as your application gets larger. 
+Using a SPA can help you organize your application in a more efficient manner, 
but it also has specific benefits for Cordova applications. A Cordova 
application must wait for the [deviceready][DeviceReadyEvent] event to fire 
before any plugins may be used. If you do not use a SPA, and your user clicks 
to go from one page to another, you will have to wait for 
[deviceready][DeviceReadyEvent] to fire again before you make use of a plugin. 
This is easy to forget as your application gets larger.
 
-Even if you choose not to use Cordova, creating a mobile application without 
using a single page architecture will have serious performance implications. 
This is because navigating between pages will require scripts, assets, etc., to 
be reloaded. Even if these assets are cached, there will still be performance 
issues. 
+Even if you choose not to use Cordova, creating a mobile application without 
using a single page architecture will have serious performance implications. 
This is because navigating between pages will require scripts, assets, etc., to 
be reloaded. Even if these assets are cached, there will still be performance 
issues.
 
 Examples of SPA libraries you can use in your Cordova applications are:
 
@@ -80,9 +80,9 @@ One of the biggest mistakes a new Cordova developer can make 
is to assume that t
 
 See the previous tip about networks. Not only can you be on a slow network, it 
is entirely possible for your application to be completely offline. Your 
application should handle this in an intelligent manner. If your application 
does not, people will think your application is broken. Given how easy it is to 
handle (Cordova supports listening for both an offline and online event), there 
is absolutely no reason for your application to not respond well when run 
offline. Be sure to test (see the Testing section below) your application and 
be sure to test how your application handles when you start in one state and 
then switch to another.
 
-Note that the online and offline events, as well as the Network Connection API 
is not perfect. You may need to rely on using an XHR request to see if the 
device is truly offline or online. At the end of the day, be sure add some form 
of support for network issues - in fact, the Apple store (and probably other 
stores) will reject apps that don’t properly handle offline/online states. 
For more discussion on this topic, see 
+Note that the online and offline events, as well as the Network Connection API 
is not perfect. You may need to rely on using an XHR request to see if the 
device is truly offline or online. At the end of the day, be sure add some form 
of support for network issues - in fact, the Apple store (and probably other 
stores) will reject apps that don’t properly handle offline/online states. 
For more discussion on this topic, see
 ["Is This Thing 
On?"](http://blogs.telerik.com/appbuilder/posts/13-04-23/is-this-thing-on-%28part-1%29)
- 
+
 # Handling Upgrades
 
 ## Upgrading Cordova Projects
@@ -114,17 +114,17 @@ Be sure to check the updated plugin's documentation, as 
you may need to adjust y
 
 Always test your apps to ensure that installing the new plugin has not broken 
something that you did not anticipate.
 
-If your project has a lot of plugins that you need updated, it might save time 
to create a shell or batch script that removes and adds the plugins with one 
command. 
+If your project has a lot of plugins that you need updated, it might save time 
to create a shell or batch script that removes and adds the plugins with one 
command.
 
 # Testing Cordova apps
 
-Testing your applications is super important. The Cordova team uses Jasmine 
but any web friendly unit testing solution will do. 
+Testing your applications is super important. The Cordova team uses Jasmine 
but any web friendly unit testing solution will do.
 
 ## Testing on a simulator vs. on a real device
 
 It’s not uncommon to use desktop browsers and device simulators/emulators 
when developing a Cordova application. However, it is incredibly important that 
you test your app on as many physical devices as you possibly can:
 
-* Simulators are just that: simulators. For example, your app may work in the 
iOS simulator without a problem, but it may fail on a real device (especially 
in certain circumstances, such as a low memory state). Or, your app may 
actually fail on the simulator while it works just fine on a real device. 
+* Simulators are just that: simulators. For example, your app may work in the 
iOS simulator without a problem, but it may fail on a real device (especially 
in certain circumstances, such as a low memory state). Or, your app may 
actually fail on the simulator while it works just fine on a real device.
 * Emulators are just that: emulators. They do not represent how well your app 
will run on a physical device. For example, some emulators may render your app 
with a garbled display, while a real device has no problem. (If you do 
encounter this problem, disable the host GPU in the emulator.)
 * Simulators are generally faster than your physical device. Emulators, on the 
other hand, are generally slower. Do not judge the performance of your app by 
how it performs in a simulator or an emulator. Do judge the performance of your 
app by how it runs on a spectrum of real devices.
 * It's impossible to get a good feel for how your app responds to your touch 
by using a simulator or an emulator. Instead, running the app on a real device 
can point out problems with the sizes of user interface elements, 
responsiveness, etc.
@@ -160,8 +160,6 @@ Weinre creates a local server that can host a remote debug 
client for your Cordo
 ## Other Options
 
 * BlackBerry 10 supports debugging as well: [Documentation]( 
https://developer.blackberry.com/html5/documentation/v2_0/debugging_using_web_inspector.html)
-* You can debug using Firefox App Manager as well, see [this blog 
post](https://hacks.mozilla.org/2014/02/building-cordova-apps-for-firefox-os/) 
and this 
-[MDN 
article](https://developer.mozilla.org/en-US/Apps/Tools_and_frameworks/Cordova_support_for_Firefox_OS#Testing_and_debugging).
 * For more examples and explanation of the above debugging tips, see: 
[http://developer.telerik.com/featured/a-concise-guide-to-remote-debugging-on-ios-android-and-windows-phone/](http://developer.telerik.com/featured/a-concise-guide-to-remote-debugging-on-ios-android-and-windows-phone/)
 
 # User Interface
@@ -169,13 +167,13 @@ Weinre creates a local server that can host a remote 
debug client for your Cordo
 Building a Cordova application that looks nice on mobile can be a challenge, 
especially for developers. Many people chose to use a UI framework to make this 
easier. Here is a short list of options you may want to consider.
 
 * [jQuery Mobile](http://jquerymobile.com) - jQuery Mobile automatically 
enhances your layout for mobile optimization. It also handles creating a SPA 
for you automatically.
-* [ionic](http://ionicframework.com/) - This powerful UI framework actually 
has its own CLI to handle project creation. 
-* [Ratchet](http://goratchet.com/) - Brought to you by the people who created 
Bootstrap. 
+* [ionic](http://ionicframework.com/) - This powerful UI framework actually 
has its own CLI to handle project creation.
+* [Ratchet](http://goratchet.com/) - Brought to you by the people who created 
Bootstrap.
 * [Kendo UI](http://www.telerik.com/kendo-ui) - Open source UI and application 
framework from Telerik.
 * [Topcoat](http://topcoat.io)
 * [ReactJS](http://facebook.github.io/react/)
 
-When building your user interface, it is important to think about all 
platforms that you are targeting and the differences between the user’s 
expectations. For example, an Android application that has an iOS-style UI will 
probably not go over well with users. This sometimes is even enforced by the 
various application stores. Because of this, it is important that you respect 
the conventions of each platform and therefore are familiar with the various 
Human Interface Guidelines: 
+When building your user interface, it is important to think about all 
platforms that you are targeting and the differences between the user’s 
expectations. For example, an Android application that has an iOS-style UI will 
probably not go over well with users. This sometimes is even enforced by the 
various application stores. Because of this, it is important that you respect 
the conventions of each platform and therefore are familiar with the various 
Human Interface Guidelines:
 
 * 
[iOS](https://developer.apple.com/library/ios/documentation/userexperience/conceptual/MobileHIG/index.html)
 * [Android](https://developer.android.com/designWP8)
@@ -214,7 +212,7 @@ The following links are the best places to get help for 
Cordova:
 By using the Cordova tag, you can view and browse all Cordova questions. Note 
that StackOverflow automatically converts the "Phonegap" tag to "Cordova", so 
this way you will be able to access historical questions as well
 * PhoneGap Google Group: 
[https://groups.google.com/forum/#!forum/phonegap](https://groups.google.com/forum/#!forum/phonegap)
 This Google Group was the old support forum when Cordova was still called 
PhoneGap. While there are still a lot of Cordova users that frequently visit 
this group, the Cordova community has expressed an interest in focusing less on 
this group and instead using StackOverflow for support
-* Meetup: [http://phonegap.meetup.com](http://phonegap.meetup.com) - 
+* Meetup: [http://phonegap.meetup.com](http://phonegap.meetup.com) -
 Consider finding a local Cordova/PhoneGap meetup group
 
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/5f783205/www/docs/en/dev/guide/platforms/firefoxos/index.md
----------------------------------------------------------------------
diff --git a/www/docs/en/dev/guide/platforms/firefoxos/index.md 
b/www/docs/en/dev/guide/platforms/firefoxos/index.md
deleted file mode 100644
index d7d7b1d..0000000
--- a/www/docs/en/dev/guide/platforms/firefoxos/index.md
+++ /dev/null
@@ -1,79 +0,0 @@
----
-license: >
-    Licensed to the Apache Software Foundation (ASF) under one
-    or more contributor license agreements.  See the NOTICE file
-    distributed with this work for additional information
-    regarding copyright ownership.  The ASF licenses this file
-    to you under the Apache License, Version 2.0 (the
-    "License"); you may not use this file except in compliance
-    with the License.  You may obtain a copy of the License at
-
-        http://www.apache.org/licenses/LICENSE-2.0
-
-    Unless required by applicable law or agreed to in writing,
-    software distributed under the License is distributed on an
-    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-    KIND, either express or implied.  See the License for the
-    specific language governing permissions and limitations
-    under the License.
-
-title: Firefox OS Platform Guide
----
-
-# Firefox OS Platform Guide
-
-This guide describes how to set up your development environment to
-create Cordova apps for Firefox OS devices, then test and publish those apps.
-
-## Requirements and Support
-
-Firefox OS apps are basically just web apps, with the addition of a 
manifest.webapp file that defines metadata about the app and allows it to be 
installed on Firefox OS devices. Any platform that Cordova supports can be 
used.To find out more about building web apps, consult the [App 
Center](https://developer.mozilla.org/en-US/Apps) on 
[MDN](https://developer.mozilla.org/en-US/).
-
-## Installation and Environment Setup
-
-First install [Node.js](http://nodejs.org/), then install the Cordova package 
like so:
-
-       $ npm install -g cordova
-
-Next, create a sample Cordova app then navigate into the newly created 
directory:
-
-       $ cordova create test-app
-       $ cd test-app
-
-Add Firefox OS as a supported platform to the app with the following:
-
-       $ cordova platform add firefoxos
-
-This creates a Firefox OS app in platforms/firefoxos/www directory, which 
currently looks the same except that it has a Firefox manifest file 
(manifest.webapp) inside the www directory.
-
-## Developing your app
-
-At this point you are ready to go — change the code inside test-app/www to 
whatever you want your app to be. You can add [supported plugins]() to the app 
using "cordova plugin add", for example:
-
-       cordova plugin add cordova-plugin-device
-       cordova plugin add cordova-plugin-vibration
-
-When your app code is written, deploy your changes to the Firefox OS app 
you've added to your project with
-
-       $ cordova prepare firefoxos
-       
-To create a packaged app one can zip the platforms/firefoxos/www directory. 
You can also simply build it using 
-
-    $ cordova build firefoxos
-
-The Firefox OS packaged app will be built in 
platforms/firefoxos/build/package.zip
-
-## Testing and Debugging
-
-The app can be tested using the Firefox OS [Web 
IDE](https://developer.mozilla.org/en-US/docs/Tools/WebIDE).
-
-When you have connected the Web IDE to your test device/simulator, select the 
"Open Packaged App" option, then make sure you point to the 
test-app/platforms/firefoxos/www/ directory to include the App in the Manager 
interface.
-
-For here you can install the app on your test device/simulator (with the 
"Play" button). Using the "Pause" button you can then debug the app and edit 
its code live. 
-
-Note: Before attempting to publish your app you should consider validating it 
using the [App validator](https://marketplace.firefox.com/developers/validator).
-
-## Publishing your app on the Firefox Marketplace
-
-You can submit your app to the Firefox Marketplace, or publish it yourself. 
Visit the [Firefox Marketplace 
Zone](https://developer.mozilla.org/en-US/Marketplace) on MDN to find out more 
about how to do this; [App publishing 
options](https://developer.mozilla.org/en-US/Marketplace/Publishing/Publish_options)
 is the best place to start.
-

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/5f783205/www/docs/en/dev/guide/platforms/index.md
----------------------------------------------------------------------
diff --git a/www/docs/en/dev/guide/platforms/index.md 
b/www/docs/en/dev/guide/platforms/index.md
index ca7388b..e88a6fe 100644
--- a/www/docs/en/dev/guide/platforms/index.md
+++ b/www/docs/en/dev/guide/platforms/index.md
@@ -58,10 +58,6 @@ a lower-level alternative to the `cordova` command-line 
utility.
 * [BlackBerry 10 Plugins](blackberry10/plugin.html)
 * [Upgrading BlackBerry](blackberry/upgrade.html) 10
 
-## Firefox OS
-
-* [Firefox OS Platform Guide](firefoxos/index.html)
-
 ## iOS
 
 * [iOS Platform Guide](ios/index.html)

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/5f783205/www/docs/en/dev/guide/support/index.md
----------------------------------------------------------------------
diff --git a/www/docs/en/dev/guide/support/index.md 
b/www/docs/en/dev/guide/support/index.md
index c914e4d..24dc32b 100644
--- a/www/docs/en/dev/guide/support/index.md
+++ b/www/docs/en/dev/guide/support/index.md
@@ -37,7 +37,6 @@ CLI's shorthand names.
         <th></td>
         <th>android</th>
         <th>blackberry10</th>
-        <th>Firefox OS</th>
         <th>ios</th>
         <th>Ubuntu</th>
         <th>wp8<br/>(Windows Phone 8)</th>
@@ -51,7 +50,6 @@ CLI's shorthand names.
         <th><a href="../cli/index.html">cordova<br/>CLI</a></th>
         <td data-col="android"    class="y">Mac, Windows, Linux</td>
         <td data-col="blackberry10" class="y">Mac, Windows</td>
-        <td data-col="firefoxos" class="y">Mac, Windows, Linux</td>
         <td data-col="ios"        class="y">Mac</td>
         <td data-col="ubuntu"        class="y">Ubuntu</td>
         <td data-col="winphone8"  class="y">Windows</td>
@@ -62,7 +60,6 @@ CLI's shorthand names.
         <th><a 
href="../hybrid/webviews/index.html">Embedded<br/>WebView</a></th>
         <td data-col="android"    class="y"><a 
href="../platforms/android/webview.html">(see details)</a></td>
         <td data-col="blackberry10" class="n"></td>
-        <td data-col="firefoxos" class="n"></td>
         <td data-col="ios"        class="y"><a 
href="../platforms/ios/webview.html">(see details)</a></td>
         <td data-col="ubuntu"        class="y"></td>
         <td data-col="winphone8"  class="n"></td>
@@ -73,7 +70,6 @@ CLI's shorthand names.
         <th><a 
href="../hybrid/plugins/index.html">Plug-in<br/>Interface</a></th>
         <td data-col="android"    class="y"><a 
href="../platforms/android/plugin.html">(see details)</a></td>
         <td data-col="blackberry10" class="y"><a 
href="../platforms/blackberry10/plugin.html">(see details)</a></td>
-        <td data-col="firefoxos" class="n"></td>
         <td data-col="ios"        class="y"><a 
href="../platforms/ios/plugin.html">(see details)</a></td>
         <td data-col="ubuntu"        class="y"></td>
         <td data-col="winphone8"  class="y"><a 
href="../platforms/wp8/plugin.html">(see details)</a></td>
@@ -89,7 +85,6 @@ CLI's shorthand names.
         <th><a 
href="https://www.npmjs.com/package/cordova-plugin-device-motion";>Accelerometer</a></th>
         <td data-col="android"    class="y"></td>
         <td data-col="blackberry10" class="y"></td>
-        <td data-col="firefoxos" class="y"></td>
         <td data-col="ios"        class="y"></td>
         <td data-col="ubuntu"        class="y"></td>
         <td data-col="winphone8"  class="y"></td>
@@ -100,7 +95,6 @@ CLI's shorthand names.
         <th><a 
href="https://www.npmjs.com/package/cordova-plugin-battery-status";>BatteryStatus</a></th>
         <td data-col="android"    class="y"></td>
         <td data-col="blackberry10" class="y"></td>
-        <td data-col="firefoxos" class="y"></td>
         <td data-col="ios"        class="y"></td>
         <td data-col="ubuntu"        class="n"></td>
         <td data-col="winphone8"  class="y"></td>
@@ -111,7 +105,6 @@ CLI's shorthand names.
         <th><a 
href="https://www.npmjs.com/package/cordova-plugin-camera";>Camera</a></th>
         <td data-col="android"    class="y"></td>
         <td data-col="blackberry10" class="y"></td>
-        <td data-col="firefoxos" class="y"></td>
         <td data-col="ios"        class="y"></td>
         <td data-col="ubuntu"        class="y"></td>
         <td data-col="winphone8"  class="y"></td>
@@ -122,7 +115,6 @@ CLI's shorthand names.
         <th><a 
href="https://www.npmjs.com/package/cordova-plugin-media-capture";>Capture</a></th>
         <td data-col="android"    class="y"></td>
         <td data-col="blackberry10" class="y"></td>
-        <td data-col="firefoxos" class="n"></td>
         <td data-col="ios"        class="y"></td>
         <td data-col="ubuntu"        class="y"></td>
         <td data-col="winphone8"  class="y"></td>
@@ -133,7 +125,6 @@ CLI's shorthand names.
         <th><a 
href="https://www.npmjs.com/package/cordova-plugin-device-orientation";>Compass</a></th>
         <td data-col="android"    class="y"></td>
         <td data-col="blackberry10" class="y"></td>
-        <td data-col="firefoxos" class="n"></td>
         <td data-col="ios"        class="y">(3GS+)</td>
         <td data-col="ubuntu"        class="y"></td>
         <td data-col="winphone8"  class="y"></td>
@@ -144,7 +135,6 @@ CLI's shorthand names.
         <th><a 
href="https://www.npmjs.com/package/cordova-plugin-network-information";>Connection</a></th>
         <td data-col="android"    class="y"></td>
         <td data-col="blackberry10" class="y"></td>
-        <td data-col="firefoxos" class="n"></td>
         <td data-col="ios"        class="y"></td>
         <td data-col="ubuntu"        class="y"></td>
         <td data-col="winphone8"  class="y"></td>
@@ -155,7 +145,6 @@ CLI's shorthand names.
         <th><a 
href="https://www.npmjs.com/package/cordova-plugin-contacts";>Contacts</a></th>
         <td data-col="android"    class="y"></td>
         <td data-col="blackberry10" class="y"></td>
-        <td data-col="firefoxos" class="y"></td>
         <td data-col="ios"        class="y"></td>
         <td data-col="ubuntu"        class="y"></td>
         <td data-col="winphone8"  class="y"></td>
@@ -166,7 +155,6 @@ CLI's shorthand names.
         <th><a 
href="https://www.npmjs.com/package/cordova-plugin-device";>Device</a></th>
         <td data-col="android"    class="y"></td>
         <td data-col="blackberry10" class="y"></td>
-        <td data-col="firefoxos" class="y"></td>
         <td data-col="ios"        class="y"></td>
         <td data-col="ubuntu"        class="y"></td>
         <td data-col="winphone8"  class="y"></td>
@@ -177,7 +165,6 @@ CLI's shorthand names.
         <th><a href="../../cordova/events/events.html">Events</a></th>
         <td data-col="android"    class="y"></td>
         <td data-col="blackberry10" class="y"></td>
-        <td data-col="firefoxos" class="n"></td>
         <td data-col="ios"        class="y"></td>
         <td data-col="ubuntu"        class="y"></td>
         <td data-col="winphone8"  class="y"></td>
@@ -188,7 +175,6 @@ CLI's shorthand names.
         <th><a 
href="https://www.npmjs.com/package/cordova-plugin-file";>File</a></th>
         <td data-col="android"    class="y"></td>
         <td data-col="blackberry10" class="y"></td>
-        <td data-col="firefoxos" class="n"></td>
         <td data-col="ios"        class="y"></td>
         <td data-col="ubuntu"        class="y"></td>
         <td data-col="winphone8"  class="y"></td>
@@ -199,7 +185,6 @@ CLI's shorthand names.
         <th><a 
href="https://www.npmjs.com/package/cordova-plugin-file-transfer";>File 
Transfer</a></th>
         <td data-col="android"    class="y"></td>
         <td data-col="blackberry10" class="y">* Do not support onprogress nor 
abort</td>
-        <td data-col="firefoxos" class="n"></td>
         <td data-col="ios"        class="y"></td>
         <td data-col="ubuntu"        class="n"></td>
         <td data-col="winphone8"  class="y">* Do not support onprogress nor 
abort</td>
@@ -210,7 +195,6 @@ CLI's shorthand names.
         <th><a 
href="https://www.npmjs.com/package/cordova-plugin-geolocation";>Geolocation</a></th>
         <td data-col="android"    class="y"></td>
         <td data-col="blackberry10" class="y"></td>
-        <td data-col="firefoxos" class="y"></td>
         <td data-col="ios"        class="y"></td>
         <td data-col="ubuntu"        class="y"></td>
         <td data-col="winphone8"  class="y"></td>
@@ -221,7 +205,6 @@ CLI's shorthand names.
         <th><a 
href="https://www.npmjs.com/package/cordova-plugin-globalization";>Globalization</a></th>
         <td data-col="android"    class="y"></td>
         <td data-col="blackberry10" class="y"></td>
-        <td data-col="firefoxos" class="n"></td>
         <td data-col="ios"        class="y"></td>
         <td data-col="ubuntu"        class="y"></td>
         <td data-col="winphone8"  class="y"></td>
@@ -232,7 +215,6 @@ CLI's shorthand names.
         <th><a 
href="https://www.npmjs.com/package/cordova-plugin-inappbrowser";>InAppBrowser</a></th>
         <td data-col="android"    class="y"></td>
         <td data-col="blackberry10" class="y"></td>
-        <td data-col="firefoxos" class="n"></td>
         <td data-col="ios"        class="y"></td>
         <td data-col="ubuntu"        class="y"></td>
         <td data-col="winphone8"  class="y"></td>
@@ -243,7 +225,6 @@ CLI's shorthand names.
         <th><a 
href="https://www.npmjs.com/package/cordova-plugin-media";>Media</a></th>
         <td data-col="android"    class="y"></td>
         <td data-col="blackberry10" class="y"></td>
-        <td data-col="firefoxos" class="n"></td>
         <td data-col="ios"        class="y"></td>
         <td data-col="ubuntu"        class="y"></td>
         <td data-col="winphone8"  class="y"></td>
@@ -254,7 +235,6 @@ CLI's shorthand names.
         <th><a 
href="https://www.npmjs.com/package/cordova-plugin-dialogs";>Notification</a></th>
         <td data-col="android"    class="y"></td>
         <td data-col="blackberry10" class="y"></td>
-        <td data-col="firefoxos" class="n"></td>
         <td data-col="ios"        class="y"></td>
         <td data-col="ubuntu"        class="y"></td>
         <td data-col="winphone8"  class="y"></td>
@@ -265,7 +245,6 @@ CLI's shorthand names.
         <th><a 
href="https://www.npmjs.com/package/cordova-plugin-splashscreen";>Splashscreen</a></th>
         <td data-col="android"    class="y"></td>
         <td data-col="blackberry10" class="y"></td>
-        <td data-col="firefoxos" class="n"></td>
         <td data-col="ios"        class="y"></td>
         <td data-col="ubuntu"        class="y"></td>
         <td data-col="winphone8"  class="y"></td>
@@ -276,7 +255,6 @@ CLI's shorthand names.
         <th><a 
href="https://www.npmjs.com/package/cordova-plugin-statusbar";>Status 
Bar</a></th>
         <td data-col="android"    class="y"></td>
         <td data-col="blackberry10" class="n"></td>
-        <td data-col="firefoxos" class="n"></td>
         <td data-col="ios"        class="y"></td>
         <td data-col="ubuntu"        class="n"></td>
         <td data-col="winphone8"  class="y"></td>
@@ -287,7 +265,6 @@ CLI's shorthand names.
         <th><a href="../../cordova/storage/storage.html">Storage</a></th>
         <td data-col="android"    class="y"></td>
         <td data-col="blackberry10" class="y"></td>
-        <td data-col="firefoxos" class="n"></td>
         <td data-col="ios"        class="y"></td>
         <td data-col="ubuntu"        class="y"></td>
         <td data-col="winphone8"  class="y">localStorage &amp; indexedDB</td>
@@ -298,7 +275,6 @@ CLI's shorthand names.
         <th><a 
href="https://www.npmjs.com/package/cordova-plugin-vibration";>Vibration</a></th>
         <td data-col="android"    class="y"></td>
         <td data-col="blackberry10" class="y"></td>
-        <td data-col="firefoxos" class="y"></td>
         <td data-col="ios"        class="y"></td>
         <td data-col="ubuntu"        class="n"></td>
         <td data-col="winphone8"  class="y"></td>


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to