You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by mw...@apache.org on 2013/06/17 20:33:25 UTC

docs commit: [CB-3811 CB-3815] Add overview guide and compatibility table.

Updated Branches:
  refs/heads/master 3d1bddcb4 -> 840d41701


[CB-3811 CB-3815] Add overview guide and compatibility table.


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

Branch: refs/heads/master
Commit: 840d41701f87bcca95740160690ee377bd709975
Parents: 3d1bddc
Author: Mike Sierra <le...@gmail.com>
Authored: Mon Jun 17 12:52:12 2013 -0400
Committer: Michael Brooks <mi...@michaelbrooks.ca>
Committed: Mon Jun 17 11:30:17 2013 -0700

----------------------------------------------------------------------
 docs/en/edge/guide/overview/apis.md    |  25 --
 docs/en/edge/guide/overview/index.md   | 475 +++++++++++++++++++++++++++-
 docs/en/edge/guide/overview/primer.md  |  22 --
 docs/en/edge/guide/overview/support.md | 324 -------------------
 4 files changed, 459 insertions(+), 387 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/840d4170/docs/en/edge/guide/overview/apis.md
----------------------------------------------------------------------
diff --git a/docs/en/edge/guide/overview/apis.md b/docs/en/edge/guide/overview/apis.md
deleted file mode 100644
index a2c5d89..0000000
--- a/docs/en/edge/guide/overview/apis.md
+++ /dev/null
@@ -1,25 +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.
----
-
-API Primer
-==========
-
-This section introduces the Cordova APIs and shows how you might use
-them in your application.
-

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/840d4170/docs/en/edge/guide/overview/index.md
----------------------------------------------------------------------
diff --git a/docs/en/edge/guide/overview/index.md b/docs/en/edge/guide/overview/index.md
index d7a46ff..fd05dc1 100644
--- a/docs/en/edge/guide/overview/index.md
+++ b/docs/en/edge/guide/overview/index.md
@@ -15,23 +15,17 @@ license: Licensed to the Apache Software Foundation (ASF) under one
          KIND, either express or implied.  See the License for the
          specific language governing permissions and limitations
          under the License.
+
 ---
 
-Overview
-========
+# Overview
 
 Cordova is an open-source mobile development framework. It allows you
 to use standard web technologies such as HTML5, CSS3, and JavaScript
 for cross-platform development, avoiding each mobile platforms' native
-development language.  Applications execute as a WebView within a
-native wrapper, and rely on standards-compliant Cordova API bindings
-to access the device's sensors, data, and network status.
-
-Cordova also offers features
-
-PhoneGap is a product offering that relies on the Cordova framework.
-Its PhoneGap Build service provides a way to build applications
-remotely without having to run local tools.
+development language.  Applications execute within wrappers targeted
+to each platform, and rely on standards-compliant API bindings to
+access each device's sensors, data, and network status.
 
 Use Cordova if you are:
 
@@ -40,11 +34,460 @@ Use Cordova if you are:
   platform's language and tool set.
 
 * a web developer and want to deploy a web app that's packaged for
-  distribution in app store portals.
+  distribution in various app store portals.
+
+* a mobile developer interested in mixing native application
+  components with a _WebView_ (browser window) that can access
+  device-level APIs, or if you want to develop a plug-in interface
+  between native and WebView components.
+
+## Basic Components
+
+Cordova applications rely on a common `config.xml` file that provides
+information about the app and specifies parameters affecting how it
+works, such as whether it responds to orientation shifts. This file
+adheres to the W3C's
+[Packaged Web App](http://www.w3.org/TR/widgets/),
+or _widget_, specification.
+
+The application itself is implemented as a web page, named
+_index.html_ by default, that references whatever CSS, JavaScript,
+images, media files, or other resources are necessary for it to run.
+The app executes as a _WebView_ within the native application wrapper,
+which you distribute to app stores.  For the web app to interact with
+various device features the way native apps do, it must also reference
+a `cordova.js` file, which provides API bindings.
+<!-- XREF
+(See the API Reference for an overview, and the API and Configuration
+Guide for examples of how to use them.)
+XREF -->
+
+The Cordova-enabled WebView may provide the application with its
+entire user interface. It can also be a component within a larger,
+hybrid application that mixes the WebView with native application
+components.  Cordova provides a _plug-in_ interface for these
+components to communicate with each other.
+
+## Development Paths
+
+The easiest way to set up an application is to run the `cordova`
+command-line utility, also known as the _command-line interface_
+(CLI). (To install the CLI, see The Cordova Command-line Interface.)
+Depending on the set of platforms you wish to target, you can rely on
+the CLI for progressively greater shares of the development cycle:
+
+* In the most basic scenario, you can use the CLI simply to create a
+  new project that is populated with default configuration for you to
+  modify.
+
+* For many mobile platforms, you can also use the CLI to set up
+  additional project files required to compile within each SDK.  For
+  this to work, you must install each targeted platform's SDK.
+  <!-- XREF
+  (See Installing Platform SDKs for instructions.)
+  XREF -->
+  As indicated in the Platform Support table below, you may need to
+  run the CLI on different operating systems depending on the targeted
+  platform.
+
+* For supporting platforms, the CLI can compile executible
+  applications and run them in an SDK- or browser-based device
+  emulator, depending on the device feature you want to test.
+  <!-- XREF
+  (See API and Configuration Guide for details.)
+  XREF -->
+  For comprehensive testing, you can also generate application files
+  and install them directly on a device.
+
+At any point in the development cycle, you can also rely on
+platform-specific SDK tools, which may provide a richer set of
+options. 
+<!-- XREF
+(See Platform Development Guide for details about each platform's SDK tool set.)
+XREF -->
+An SDK environment is more appropriate if you want implement a hybrid
+app that mixes web-based and native application components.
+<!-- XREF
+(See Extended Hybrid Applications for more information.)
+XREF -->
+You may use the command-line utility to initially generate the app, or
+iteratively thereafter to feed updated code to SDK tools.  You may
+also build the app's configuration file yourself.
+<!-- XREF
+(See Configuration Reference for details.)
+XREF -->
+
+<!-- XREF
+To build projects on some platforms, you may need to apply digital signatures.
+See Distributing Applications for information on how to upload your app to various store portals.
+XREF -->
+
+## Platform Support
+
+The following shows the set of development tools and device APIs
+available for each mobile platform:
+
+<!-- START HTML -->
+
+<style>
+
+.p { background-color: gold; }
+.p::before { content: "(partial)";  }
+.u { background-color: #dddddd; }
+/* .u::before { content: "";  } */
+.y { background-color: lightgreen; }
+.y::before { content: "\2714";     margin-right: 6px;  }
+tr> th:first-of-type { text-align: right }
+td , th[colspan]:first-of-type { text-align: center } 
+.n { background-color: pink; }
+.n::before { content: "\2718"; margin-right: 6px;  }
+
+/* each cell is classed one of: y=yes; n=no; p=partial; u=unknown */
+
+</style>
+
+<table class="compat" width="100%">
+
+<thead>
+    <tr>
+        <th></td>
+        <th>Android</th>
+        <th>Blackberry</th>
+        <th>Blackberry 10</th>
+        <th>iOS</th>
+        <th>Symbian</th>
+        <th>WebOS</th>
+        <th>Windows<br/>Phone 7</th>
+        <th>Windows<br/>Phone 8</th>
+        <th>Windows<br/>8</th>
+        <th>Bada</th>
+        <th>Tizen</th>
+    </tr>
+
+</thead>
+
+<tbody>
+    <tr>
+        <th><a href="#">cordova<br/>CLI</a></th>
+        <td data-col="android"    class="y">Mac, Windows, Linux</td>
+        <td data-col="blackberry" class="y">Mac, Windows</td>
+        <td data-col="blackberry10" class="y">Mac, Windows</td>
+        <td data-col="ios"        class="y">Mac</td>
+        <td data-col="symbian"    class="u"></td>
+        <td data-col="webos"      class="u"></td>
+        <td data-col="winphone7"  class="y">Windows</td>
+        <td data-col="winphone8"  class="y">Windows</td>
+        <td data-col="win8"       class="u"></td>
+        <td data-col="bada"       class="u"></td>
+        <td data-col="tizen"      class="u"></td>
+    </tr>
+
+    <tr>
+        <th><a href="#">PhoneGap<br/>Build</a></th>
+        <td data-col="android"    class="y"></td>
+        <td data-col="blackberry" class="y"></td>
+        <td data-col="blackberry10" class="y"></td>
+        <td data-col="ios"        class="y"></td>
+        <td data-col="symbian"    class="y"></td>
+        <td data-col="webos"      class="y"></td>
+        <td data-col="winphone7"  class="u"></td>
+        <td data-col="winphone8"  class="y"></td>
+        <td data-col="win8"       class="u"></td>
+        <td data-col="bada"       class="u"></td>
+        <td data-col="tizen"      class="u"></td>
+    </tr>
+
+    <tr>
+        <th><a href="guide_getting-started_index.md.html">IDE platform support</a></th>
+        <td data-col="android"    class="y"><a href="guide_getting-started_android_index.md.html">         </a></td>
+        <td data-col="blackberry" class="y"><a href="guide_getting-started_blackberry_index.md.html">      </a></td>
+        <td data-col="blackberry10" class="y"><a href="guide_getting-started_blackberry10_index.md.html">      </a></td>
+        <td data-col="ios"        class="y"><a href="guide_getting-started_ios_index.md.html">             </a></td>
+        <td data-col="symbian"    class="y"><a href="guide_getting-started_symbian_index.md.html">         </a></td>
+        <td data-col="webos"      class="y"><a href="guide_getting-started_webos_index.md.html">           </a></td>
+        <td data-col="winphone7"  class="y"><a href="guide_getting-started_windows-phone-7_index.md.html"> </a></td>
+        <td data-col="winphone8"  class="y"><a href="guide_getting-started_windows-phone-8_index.md.html"> </a></td>
+        <td data-col="win8"       class="y"><a href="guide_getting-started_windows-8_index.md.html">       </a></td>
+        <td data-col="bada"       class="y"><a href="guide_getting-started_bada_index.md.html">            </a></td>
+        <td data-col="tizen"      class="y"><a href="guide_getting-started_tizen_index.md.html">           </a></td>
+    </tr>
+
+    <tr>
+        <th><a href="#">Embedded<br/>WebView</a></th>
+        <td data-col="android"    class="y"><a href="guide_cordova-webview_android.md.html"></a></td>
+        <td data-col="blackberry" class="n"></td>
+        <td data-col="blackberry10" class="n"></td>
+        <td data-col="ios"        class="y"><a href="guide_cordova-webview_ios.md.html"></a></td>
+        <td data-col="symbian"    class="n"></td>
+        <td data-col="webos"      class="n"></td>
+        <td data-col="winphone7"  class="n"></td>
+        <td data-col="winphone8"  class="n"></td>
+        <td data-col="win8"       class="n"></td>
+        <td data-col="bada"       class="n"></td>
+        <td data-col="tizen"      class="n"></td>
+    </tr>
+
+    <tr>
+        <th><a href="guide_plugin-development_index.md.html">Plug-in<br/>Interface</a></th>
+        <td data-col="android"    class="y"><a href="guide_plugin-development_android_index.md.html"></a></td>
+        <td data-col="blackberry" class="y"><a href="guide_plugin-development_blackberry_index.md.html"></a></td>
+        <td data-col="blackberry10" class="y"><a href="guide_plugin-development_blackberry10_index.md.html"></a></td>
+        <td data-col="ios"        class="y"><a href="guide_plugin-development_ios_index.md.html"></a></td>
+        <td data-col="symbian"    class="n"></td>
+        <td data-col="webos"      class="n"></td>
+        <td data-col="winphone7"  class="y"><a href="guide_plugin-development_windows-phone_index.md.html"></a></td>
+        <td data-col="winphone8"  class="n"></td>
+        <td data-col="win8"       class="n"></td>
+        <td data-col="bada"       class="y"><a href="guide_plugin-development_bada_index.md.html"></a></td>
+        <td data-col="tizen"      class="n"></td>
+    </tr>
+
+    <tr>
+        <th></th>
+        <th colspan="20">Platform APIs</th>
+    </tr>
+
+    <tr>
+        <th><a href="cordova_accelerometer_accelerometer.md.html">Accelerometer</a></th>
+        <td data-col="android"    class="y"></td>
+        <td data-col="blackberry" class="y"></td>
+        <td data-col="blackberry10" class="y"></td>
+        <td data-col="ios"        class="y"></td>
+        <td data-col="symbian"    class="y"></td>
+        <td data-col="webos"      class="y"></td>
+        <td data-col="winphone7"  class="y"></td>
+        <td data-col="winphone8"  class="y"></td>
+        <td data-col="win8"       class="y"></td>
+        <td data-col="bada"       class="y"></td>
+        <td data-col="tizen"      class="y"></td>
+    </tr>
+
+    <tr>
+        <th><a href="cordova_camera_camera.md.html">Camera</a></th>
+        <td data-col="android"    class="y"></td>
+        <td data-col="blackberry" class="y"></td>
+        <td data-col="blackberry10" class="y"></td>
+        <td data-col="ios"        class="y"></td>
+        <td data-col="symbian"    class="y"></td>
+        <td data-col="webos"      class="y"></td>
+        <td data-col="winphone7"  class="y"></td>
+        <td data-col="winphone8"  class="y"></td>
+        <td data-col="win8"       class="y"></td>
+        <td data-col="bada"       class="y"></td>
+        <td data-col="tizen"      class="y"></td>
+    </tr>
+
+    <tr>
+        <th><a href="cordova_media_capture_capture.md.html">Capture</a></th>
+        <td data-col="android"    class="y"></td>
+        <td data-col="blackberry" class="y"></td>
+        <td data-col="blackberry10" class="y"></td>
+        <td data-col="ios"        class="y"></td>
+        <td data-col="symbian"    class="n"></td>
+        <td data-col="webos"      class="n"></td>
+        <td data-col="winphone7"  class="y"></td>
+        <td data-col="winphone8"  class="y"></td>
+        <td data-col="win8"       class="n"></td>
+        <td data-col="bada"       class="n"></td>
+        <td data-col="tizen"      class="n"></td>
+    </tr>
+
+    <tr>
+        <th><a href="cordova_compass_compass.md.html">Compass</a></th>
+        <td data-col="android"    class="y"></td>
+        <td data-col="blackberry" class="n"></td>
+        <td data-col="blackberry10" class="n"></td>
+        <td data-col="ios"        class="y">(3GS+)</td>
+        <td data-col="symbian"    class="n"></td>
+        <td data-col="webos"      class="y"></td>
+        <td data-col="winphone7"  class="y"></td>
+        <td data-col="winphone8"  class="y"></td>
+        <td data-col="win8"       class="y"></td>
+        <td data-col="bada"       class="y"></td>
+        <td data-col="tizen"      class="y"></td>
+    </tr>
+
+    <tr>
+        <th><a href="cordova_connection_connection.md.html">Connection</a></th>
+        <td data-col="android"    class="y"></td>
+        <td data-col="blackberry" class="y"></td>
+        <td data-col="blackberry10" class="y"></td>
+        <td data-col="ios"        class="y"></td>
+        <td data-col="symbian"    class="y"></td>
+        <td data-col="webos"      class="y"></td>
+        <td data-col="winphone7"  class="y"></td>
+        <td data-col="winphone8"  class="y"></td>
+        <td data-col="win8"       class="y"></td>
+        <td data-col="bada"       class="y"></td>
+        <td data-col="tizen"      class="y"></td>
+    </tr>
+
+    <tr>
+        <th><a href="cordova_contacts_contacts.md.html">Contacts</a></th>
+        <td data-col="android"    class="y"></td>
+        <td data-col="blackberry" class="y"></td>
+        <td data-col="blackberry10" class="y"></td>
+        <td data-col="ios"        class="y"></td>
+        <td data-col="symbian"    class="y"></td>
+        <td data-col="webos"      class="n"></td>
+        <td data-col="winphone7"  class="y"></td>
+        <td data-col="winphone8"  class="y"></td>
+        <td data-col="win8"       class="y"></td>
+        <td data-col="bada"       class="y"></td>
+        <td data-col="tizen"      class="y"></td>
+    </tr>
+
+    <tr>
+        <th><a href="cordova_device_device.md.html">Device</a></th>
+        <td data-col="android"    class="y"></td>
+        <td data-col="blackberry" class="y"></td>
+        <td data-col="blackberry10" class="y"></td>
+        <td data-col="ios"        class="y"></td>
+        <td data-col="symbian"    class="y"></td>
+        <td data-col="webos"      class="y"></td>
+        <td data-col="winphone7"  class="y"></td>
+        <td data-col="winphone8"  class="y"></td>
+        <td data-col="win8"       class="y"></td>
+        <td data-col="bada"       class="y"></td>
+        <td data-col="tizen"      class="y"></td>
+    </tr>
+
+    <tr>
+        <th><a href="cordova_events_events.md.html">Events</a></th>
+        <td data-col="android"    class="y"></td>
+        <td data-col="blackberry" class="y"></td>
+        <td data-col="blackberry10" class="y"></td>
+        <td data-col="ios"        class="y"></td>
+        <td data-col="symbian"    class="y"></td>
+        <td data-col="webos"      class="y"></td>
+        <td data-col="winphone7"  class="y"></td>
+        <td data-col="winphone8"  class="y"></td>
+        <td data-col="win8"       class="y"></td>
+        <td data-col="bada"       class="y"></td>
+        <td data-col="tizen"      class="y"></td>
+    </tr>
+
+    <tr>
+        <th><a href="cordova_file_file.md.html">File</a></th>
+        <td data-col="android"    class="y"></td>
+        <td data-col="blackberry" class="y"></td>
+        <td data-col="blackberry10" class="y"></td>
+        <td data-col="ios"        class="y"></td>
+        <td data-col="symbian"    class="n"></td>
+        <td data-col="webos"      class="n"></td>
+        <td data-col="winphone7"  class="y"></td>
+        <td data-col="winphone8"  class="y"></td>
+        <td data-col="win8"       class="y"></td>
+        <td data-col="bada"       class="n"></td>
+        <td data-col="tizen"      class="y"></td>
+    </tr>
+
+    <tr>
+        <th><a href="cordova_geolocation_geolocation.md.html">Geolocation</a></th>
+        <td data-col="android"    class="y"></td>
+        <td data-col="blackberry" class="y"></td>
+        <td data-col="blackberry10" class="y"></td>
+        <td data-col="ios"        class="y"></td>
+        <td data-col="symbian"    class="y"></td>
+        <td data-col="webos"      class="y"></td>
+        <td data-col="winphone7"  class="y"></td>
+        <td data-col="winphone8"  class="y"></td>
+        <td data-col="win8"       class="y"></td>
+        <td data-col="bada"       class="y"></td>
+        <td data-col="tizen"      class="y"></td>
+    </tr>
+
+    <tr>
+        <th><a href="cordova_globalization_globalization.md.html">Globalization</a></th>
+        <td data-col="android"    class="y"></td>
+        <td data-col="blackberry" class="y"></td>
+        <td data-col="blackberry10" class="y"></td>
+        <td data-col="ios"        class="y"></td>
+        <td data-col="symbian"    class="n"></td>
+        <td data-col="webos"      class="y"></td>
+        <td data-col="winphone7"  class="n"></td>
+        <td data-col="winphone8"  class="y"></td>
+        <td data-col="win8"       class="n"></td>
+        <td data-col="bada"       class="n"></td>
+        <td data-col="tizen"      class="n"></td>
+    </tr>
+
+    <tr>
+        <th><a href="cordova_inappbrowser_inappbrowser.md.html">InAppBrowser</a></th>
+        <td data-col="android"    class="y"></td>
+        <td data-col="blackberry" class="y"></td>
+        <td data-col="blackberry10" class="y"></td>
+        <td data-col="ios"        class="y"></td>
+        <td data-col="symbian"    class="y"></td>
+        <td data-col="webos"      class="y"></td>
+        <td data-col="winphone7"  class="y"></td>
+        <td data-col="winphone8"  class="y"></td>
+        <td data-col="win8"       class="y"></td>
+        <td data-col="bada"       class="y"></td>
+        <td data-col="tizen"      class="y"></td>
+    </tr>
+
+    <tr>
+        <th><a href="cordova_media_media.md.html">Media</a></th>
+        <td data-col="android"    class="y"></td>
+        <td data-col="blackberry" class="n"></td>
+        <td data-col="blackberry10" class="n"></td>
+        <td data-col="ios"        class="y"></td>
+        <td data-col="symbian"    class="n"></td>
+        <td data-col="webos"      class="n"></td>
+        <td data-col="winphone7"  class="y"></td>
+        <td data-col="winphone8"  class="y"></td>
+        <td data-col="win8"       class="y"></td>
+        <td data-col="bada"       class="n"></td>
+        <td data-col="tizen"      class="y"></td>
+    </tr>
+
+    <tr>
+        <th><a href="cordova_notification_notification.md.html">Notification</a></th>
+        <td data-col="android"    class="y"></td>
+        <td data-col="blackberry" class="y"></td>
+        <td data-col="blackberry10" class="y"></td>
+        <td data-col="ios"        class="y"></td>
+        <td data-col="symbian"    class="y"></td>
+        <td data-col="webos"      class="y"></td>
+        <td data-col="winphone7"  class="y"></td>
+        <td data-col="winphone8"  class="y"></td>
+        <td data-col="win8"       class="y"></td>
+        <td data-col="bada"       class="y"></td>
+        <td data-col="tizen"      class="y"></td>
+    </tr>
+
+    <tr>
+        <th><a href="cordova_splashscreen_splashscreen.md.html">Splashscreen</a></th>
+        <td data-col="android"    class="y"></td>
+        <td data-col="blackberry" class="n"></td>
+        <td data-col="blackberry10" class="n"></td>
+        <td data-col="ios"        class="y"></td>
+        <td data-col="symbian"    class="n"></td>
+        <td data-col="webos"      class="n"></td>
+        <td data-col="winphone7"  class="n"></td>
+        <td data-col="winphone8"  class="n"></td>
+        <td data-col="win8"       class="n"></td>
+        <td data-col="bada"       class="n"></td>
+        <td data-col="tizen"      class="n"></td>
+    </tr>
 
-* a developer who wants to blend
+    <tr>
+        <th><a href="cordova_storage_storage.md.html">Storage</a></th>
+        <td data-col="android"    class="y"></td>
+        <td data-col="blackberry" class="y"></td>
+        <td data-col="blackberry10" class="y"></td>
+        <td data-col="ios"        class="y"></td>
+        <td data-col="symbian"    class="y"></td>
+        <td data-col="webos"      class="y"></td>
+        <td data-col="winphone7"  class="y"></td>
+        <td data-col="winphone8"  class="y"></td>
+        <td data-col="win8"       class="y"></td>
+        <td data-col="bada"       class="n"></td>
+        <td data-col="tizen"      class="y"></td>
+    </tr>
 
-How Do You Use It?
----------------------
+</tbody>
+</table>
 
-There are several ways to build
+<!-- END HTML -->

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/840d4170/docs/en/edge/guide/overview/primer.md
----------------------------------------------------------------------
diff --git a/docs/en/edge/guide/overview/primer.md b/docs/en/edge/guide/overview/primer.md
deleted file mode 100644
index 053572b..0000000
--- a/docs/en/edge/guide/overview/primer.md
+++ /dev/null
@@ -1,22 +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.
----
-
-Command-line Deployment Primer
-==============================
-

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/840d4170/docs/en/edge/guide/overview/support.md
----------------------------------------------------------------------
diff --git a/docs/en/edge/guide/overview/support.md b/docs/en/edge/guide/overview/support.md
deleted file mode 100644
index b5dfa72..0000000
--- a/docs/en/edge/guide/overview/support.md
+++ /dev/null
@@ -1,324 +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.
----
-
-Supported Features
-==================
-
-<style>
-[data-support=y] { background-color: lightgreen }
-[data-support=p] { background-color: gold }
-[data-support=n] { background-color: pink }
-[data-support=u] { background-color: #ddd }
-</style>
-
-<table width="100%">
-    <tr>
-        <th></th>
-        <th>Android</th>
-        <th>Blackberry</th>
-        <th>iOS</th>
-        <th>Symbian</th>
-        <th>WebOS</th>
-        <th>Windows<br/>Phone 7</th>
-        <th>Windows<br/>Phone 8</th>
-        <th>Windows<br/>8</th>
-        <th>Bada</th>
-        <th>Tizen</th>
-    </tr>
-
-    <tr>
-        <th>Accelerometer</th>
-        <th class="android" data-support="y">&#10004;</th>
-        <th class="blackberry" data-support="y">&#10004; (5.x+)</th>
-        <th class="ios" data-support="y">&#10004;</th>
-        <th class="symbian" data-support="y">&#10004;</th>
-        <th class="webos" data-support="y">&#10004;</th>
-        <th class="winphone7" data-support="y">&#10004;</th>
-        <th class="winphone8" data-support="y">&#10004;</th>
-        <th class="win8" data-support="y">&#10004;</th>
-        <th class="bada" data-support="y">&#10004;</th>
-        <th class="tizen" data-support="y">&#10004;</th>
-    </tr>
-
-    <tr>
-        <th>Camera</th>
-        <th class="android" data-support="y">&#10004;</th>
-        <th class="blackberry" data-support="y">&#10004; (5.x+)</th>
-        <th class="ios" data-support="y">&#10004;</th>
-        <th class="symbian" data-support="y">&#10004;</th>
-        <th class="webos" data-support="y">&#10004;</th>
-        <th class="winphone7" data-support="y">&#10004;</th>
-        <th class="winphone8" data-support="y">&#10004;</th>
-        <th class="win8" data-support="y">&#10004;</th>
-        <th class="bada" data-support="y">&#10004;</th>
-        <th class="tizen" data-support="p">&#10013;</th>
-    </tr>
-
-    <tr>
-        <th>Capture</th>
-        <th class="android" data-support="y">&#10004;</th>
-        <th class="blackberry" data-support="y">&#10004;</th>
-        <th class="ios" data-support="y">&#10004;</th>
-        <th class="symbian" data-support="y">&#10004;</th>
-        <th class="webos" data-support="y">&#10004;</th>
-        <th class="winphone7" data-support="y">&#10004;</th>
-        <th class="winphone8" data-support="y">&#10004;</th>
-        <th class="win8" data-support="y">&#10004;</th>
-        <th class="bada" data-support="y">&#10004;</th>
-        <th class="tizen" data-support="y">&#10004;</th>
-    </tr>
-
-    <tr>
-        <th>Compass</th>
-        <th class="android" data-support="y">&#10004;</th>
-        <th class="blackberry" data-support="n">&#10008;</th>
-        <th class="ios" data-support="y">&#10004; (3GS+)</th>
-        <th class="symbian" data-support="y">&#10004;</th>
-        <th class="webos" data-support="y">&#10004;</th>
-        <th class="winphone7" data-support="y">&#10004;</th>
-        <th class="winphone8" data-support="y">&#10004;</th>
-        <th class="win8" data-support="y">&#10004;</th>
-        <th class="bada" data-support="y">&#10004;</th>
-        <th class="tizen" data-support="y">&#10004;</th>
-    </tr>
-
-    <tr>
-        <th>Connection</th>
-        <th class="android" data-support="y">&#10004;</th>
-        <th class="blackberry" data-support="y">&#10004;</th>
-        <th class="ios" data-support="y">&#10004;</th>
-        <th class="symbian" data-support="y">&#10004;</th>
-        <th class="webos" data-support="y">&#10004;</th>
-        <th class="winphone7" data-support="y">&#10004;</th>
-        <th class="winphone8" data-support="y">&#10004;</th>
-        <th class="win8" data-support="y">&#10004;</th>
-        <th class="bada" data-support="y">&#10004;</th>
-        <th class="tizen" data-support="y">&#10004;</th>
-    </tr>
-
-    <tr>
-        <th>Contacts</th>
-        <th class="android" data-support="y">&#10004;</th>
-        <th class="blackberry" data-support="y">&#10004;</th>
-        <th class="ios" data-support="y">&#10004;</th>
-        <th class="symbian" data-support="y">&#10004;</th>
-        <th class="webos" data-support="n">&#10008;</th>
-        <th class="winphone7" data-support="y">&#10004;</th>
-        <th class="winphone8" data-support="y">&#10004;</th>
-        <th class="win8" data-support="y">&#10004;</th>
-        <th class="bada" data-support="y">&#10004;</th>
-        <th class="tizen" data-support="y">&#10004;</th>
-    </tr>
-
-    <tr>
-        <th>Device</th>
-        <th class="android" data-support="y">&#10004;</th>
-        <th class="blackberry" data-support="y">&#10004;</th>
-        <th class="ios" data-support="y">&#10004;</th>
-        <th class="symbian" data-support="y">&#10004;</th>
-        <th class="webos" data-support="y">&#10004;</th>
-        <th class="winphone7" data-support="y">&#10004;</th>
-        <th class="winphone8" data-support="y">&#10004;</th>
-        <th class="win8" data-support="y">&#10004;</th>
-        <th class="bada" data-support="y">&#10004;</th>
-        <th class="tizen" data-support="y">&#10004;</th>
-    </tr>
-
-    <tr>
-        <th>Events</th>
-        <th class="android" data-support="y">&#10004;</th>
-        <th class="blackberry" data-support="y">&#10004;</th>
-        <th class="ios" data-support="y">&#10004;</th>
-        <th class="symbian" data-support="y">&#10004;</th>
-        <th class="webos" data-support="y">&#10004;</th>
-        <th class="winphone7" data-support="y">&#10004;</th>
-        <th class="winphone8" data-support="y">&#10004;</th>
-        <th class="win8" data-support="y">&#10004;</th>
-        <th class="bada" data-support="y">&#10004;</th>
-        <th class="tizen" data-support="y">&#10004;</th>
-    </tr>
-
-    <tr>
-        <th>File</th>
-        <th class="android" data-support="y">&#10004;</th>
-        <th class="blackberry" data-support="y">&#10004;</th>
-        <th class="ios" data-support="y">&#10004;</th>
-        <th class="symbian" data-support="n">&#10008;</th>
-        <th class="webos" data-support="n">&#10008;</th>
-        <th class="winphone7" data-support="y">&#10004;</th>
-        <th class="winphone8" data-support="y">&#10004;</th>
-        <th class="win8" data-support="y">&#10004;</th>
-        <th class="bada" data-support="n">&#10008;</th>
-        <th class="tizen" data-support="y">&#10004;</th>
-    </tr>
-
-    <tr>
-        <th>Geolocation</th>
-        <th class="android" data-support="y">&#10004;</th>
-        <th class="blackberry" data-support="y">&#10004;</th>
-        <th class="ios" data-support="y">&#10004;</th>
-        <th class="symbian" data-support="y">&#10004;</th>
-        <th class="webos" data-support="y">&#10004;</th>
-        <th class="winphone7" data-support="y">&#10004;</th>
-        <th class="winphone8" data-support="y">&#10004;</th>
-        <th class="win8" data-support="y">&#10004;</th>
-        <th class="bada" data-support="y">&#10004;</th>
-        <th class="tizen" data-support="y">&#10004;</th>
-    </tr>
-
-    <tr>
-        <th>Globalization</th>
-        <th class="android" data-support="y">&#10004;</th>
-        <th class="blackberry" data-support="y">&#10004;</th>
-        <th class="ios" data-support="y">&#10004;</th>
-        <th class="symbian" data-support="y">&#10004;</th>
-        <th class="webos" data-support="y">&#10004;</th>
-        <th class="winphone7" data-support="y">&#10004;</th>
-        <th class="winphone8" data-support="y">&#10004;</th>
-        <th class="win8" data-support="y">&#10004;</th>
-        <th class="bada" data-support="y">&#10004;</th>
-        <th class="tizen" data-support="y">&#10004;</th>
-    </tr>
-
-    <tr>
-        <th>InAppBrowser</th>
-        <th class="android" data-support="y">&#10004;</th>
-        <th class="blackberry" data-support="y">&#10004;</th>
-        <th class="ios" data-support="y">&#10004;</th>
-        <th class="symbian" data-support="y">&#10004;</th>
-        <th class="webos" data-support="y">&#10004;</th>
-        <th class="winphone7" data-support="y">&#10004;</th>
-        <th class="winphone8" data-support="y">&#10004;</th>
-        <th class="win8" data-support="y">&#10004;</th>
-        <th class="bada" data-support="y">&#10004;</th>
-        <th class="tizen" data-support="y">&#10004;</th>
-    </tr>
-
-    <tr>
-        <th>Media</th>
-        <th class="android" data-support="y">&#10004;</th>
-        <th class="blackberry" data-support="n">&#10008;</th>
-        <th class="ios" data-support="y">&#10004;</th>
-        <th class="symbian" data-support="n">&#10008;</th>
-        <th class="webos" data-support="n">&#10008;</th>
-        <th class="winphone7" data-support="y">&#10004;</th>
-        <th class="winphone8" data-support="y">&#10004;</th>
-        <th class="win8" data-support="y">&#10004;</th>
-        <th class="bada" data-support="n">&#10008;</th>
-        <th class="tizen" data-support="p">&#10013;</th>
-    </tr>
-
-    <tr>
-        <th>Notification</th>
-        <th class="android" data-support="y">&#10004;</th>
-        <th class="blackberry" data-support="y">&#10004;</th>
-        <th class="ios" data-support="y">&#10004;</th>
-        <th class="symbian" data-support="y">&#10004;</th>
-        <th class="webos" data-support="y">&#10004;</th>
-        <th class="winphone7" data-support="y">&#10004;</th>
-        <th class="winphone8" data-support="y">&#10004;</th>
-        <th class="win8" data-support="y">&#10004;</th>
-        <th class="bada" data-support="y">&#10004;</th>
-        <th class="tizen" data-support="y">&#10004;</th>
-    </tr>
-
-    <tr>
-        <th>Splashscreen</th>
-        <th class="android" data-support="y">&#10004;</th>
-        <th class="blackberry" data-support="y">&#10004;</th>
-        <th class="ios" data-support="y">&#10004;</th>
-        <th class="symbian" data-support="y">&#10004;</th>
-        <th class="webos" data-support="y">&#10004;</th>
-        <th class="winphone7" data-support="y">&#10004;</th>
-        <th class="winphone8" data-support="y">&#10004;</th>
-        <th class="win8" data-support="y">&#10004;</th>
-        <th class="bada" data-support="y">&#10004;</th>
-        <th class="tizen" data-support="y">&#10004;</th>
-    </tr>
-
-    <tr>
-        <th>Storage</th>
-        <th class="android" data-support="y">&#10004;</th>
-        <th class="blackberry" data-support="y">&#10004; (5.x+)</th>
-        <th class="ios" data-support="y">&#10004;</th>
-        <th class="symbian" data-support="y">&#10004;</th>
-        <th class="webos" data-support="y">&#10004;</th>
-        <th class="winphone7" data-support="y">&#10004;</th>
-        <th class="winphone8" data-support="y">&#10004;</th>
-        <th class="win8" data-support="y">&#10004;</th>
-        <th class="bada" data-support="n">&#10008;</th>
-        <th class="tizen" data-support="y">&#10004;</th>
-    </tr>
-
-    <tr>
-        <th colspan="20">Other Features</th>
-    </tr>
-    <tr>
-        <th>Command-line<br/>Interface</th>
-        <th class="android" data-support="y">&#10004;</th>
-        <th class="blackberry" data-support="y">&#10004;</th>
-        <th class="ios" data-support="y">&#10004;</th>
-        <th class="symbian" data-support="u">&#10013;</th>
-        <th class="webos" data-support="u">&#10013;</th>
-        <th class="winphone7" data-support="u">&#10013;</th>
-        <th class="winphone8" data-support="y">&#10004;</th>
-        <th class="win8" data-support="u">&#10013;</th>
-        <th class="bada" data-support="u">&#10013;</th>
-        <th class="tizen" data-support="u">&#10013;</th>
-    </tr>
-    <tr>
-        <th>PhoneGap<br/>Build</th>
-        <th class="android" data-support="y">&#10004;</th>
-        <th class="blackberry" data-support="y">&#10004;</th>
-        <th class="ios" data-support="y">&#10004;</th>
-        <th class="symbian" data-support="y">&#10004;</th>
-        <th class="webos" data-support="y">&#10004;</th>
-        <th class="winphone7" data-support="u">&#10013;</th>
-        <th class="winphone8" data-support="y">&#10004;</th>
-        <th class="win8" data-support="u">&#10013;</th>
-        <th class="bada" data-support="u">&#10013;</th>
-        <th class="tizen" data-support="u">&#10013;</th>
-    </tr>
-    <tr>
-        <th>Embedded<br/>WebView</th>
-        <th class="android" data-support="y">&#10004;</th>
-        <th class="blackberry" data-support="u">&#10013;</th>
-        <th class="ios" data-support="y">&#10004;</th>
-        <th class="symbian" data-support="u">&#10013;</th>
-        <th class="webos" data-support="u">&#10013;</th>
-        <th class="winphone7" data-support="u">&#10013;</th>
-        <th class="winphone8" data-support="u">&#10013;</th>
-        <th class="win8" data-support="u">&#10013;</th>
-        <th class="bada" data-support="u">&#10013;</th>
-        <th class="tizen" data-support="u">&#10013;</th>
-    </tr>
-    <tr>
-        <th>Plug-in<br/>Interface</th>
-        <th class="android" data-support="y">&#10004;</th>
-        <th class="blackberry" data-support="y">&#10004;</th>
-        <th class="ios" data-support="y">&#10004;</th>
-        <th class="symbian" data-support="u">&#10013;</th>
-        <th class="webos" data-support="y">&#10004;</th>
-        <th class="winphone7" data-support="u">&#10013;</th>
-        <th class="winphone8" data-support="u">&#10013;</th>
-        <th class="win8" data-support="u">&#10013;</th>
-        <th class="bada" data-support="y">&#10004;</th>
-        <th class="tizen" data-support="y">&#10004;</th>
-    </tr>
-</table>