Return-Path: X-Original-To: apmail-cordova-commits-archive@www.apache.org Delivered-To: apmail-cordova-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 8F378108B6 for ; Thu, 2 Jan 2014 18:13:22 +0000 (UTC) Received: (qmail 27589 invoked by uid 500); 2 Jan 2014 18:09:51 -0000 Delivered-To: apmail-cordova-commits-archive@cordova.apache.org Received: (qmail 27486 invoked by uid 500); 2 Jan 2014 18:09:41 -0000 Mailing-List: contact commits-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cordova.apache.org Delivered-To: mailing list commits@cordova.apache.org Received: (qmail 27045 invoked by uid 99); 2 Jan 2014 18:09:09 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 02 Jan 2014 18:09:09 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 978409143D6; Thu, 2 Jan 2014 18:09:09 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: agrieve@apache.org To: commits@cordova.apache.org Date: Thu, 02 Jan 2014 18:09:10 -0000 Message-Id: In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [2/5] git commit: CB-5658 Delete stale snapshot of plugin docs CB-5658 Delete stale snapshot of plugin docs Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-network-information/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-network-information/commit/d71b83e2 Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-network-information/tree/d71b83e2 Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-network-information/diff/d71b83e2 Branch: refs/heads/master Commit: d71b83e20c8476b83dbaa618536efd056cc1744b Parents: 28a3290 Author: Andrew Grieve Authored: Tue Dec 17 20:49:39 2013 -0500 Committer: Andrew Grieve Committed: Tue Dec 17 20:49:39 2013 -0500 ---------------------------------------------------------------------- docs/connection.md | 97 ----------------------------- docs/connection.type.md | 143 ------------------------------------------- 2 files changed, 240 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-plugin-network-information/blob/d71b83e2/docs/connection.md ---------------------------------------------------------------------- diff --git a/docs/connection.md b/docs/connection.md deleted file mode 100644 index ebecd12..0000000 --- a/docs/connection.md +++ /dev/null @@ -1,97 +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. ---- - -Connection -========== - -> The `connection` object gives access to the device's cellular and wifi connection information. - -This object is exposed as `navigator.connection`. - -Properties ----------- - -- connection.type - -Constants ---------- - -- Connection.UNKNOWN -- Connection.ETHERNET -- Connection.WIFI -- Connection.CELL_2G -- Connection.CELL_3G -- Connection.CELL_4G -- Connection.CELL -- Connection.NONE - -Permissions ------------ - -### Android - -#### app/res/xml/config.xml - - - -#### app/AndroidManifest.xml - - - - - -### Bada - - - SYSTEM_SERVICE - - -### BlackBerry WebWorks - -#### www/plugins.xml - - - -### iOS - -#### config.xml - - - -### webOS - - No permissions are required. - -### Windows Phone - -#### Properties/WPAppManifest.xml - - - - - -Reference: [Application Manifest for Windows Phone](http://msdn.microsoft.com/en-us/library/ff769509%28v=vs.92%29.aspx) - -### Tizen - -#### config.xml - - - -Reference: [Application Manifest for Tizen Web Application](https://developer.tizen.org/help/topic/org.tizen.help.gs/Creating%20a%20Project.html?path=0_1_1_3#8814682_CreatingaProject-EditingconfigxmlFeatures) http://git-wip-us.apache.org/repos/asf/cordova-plugin-network-information/blob/d71b83e2/docs/connection.type.md ---------------------------------------------------------------------- diff --git a/docs/connection.type.md b/docs/connection.type.md deleted file mode 100644 index c18e58b..0000000 --- a/docs/connection.type.md +++ /dev/null @@ -1,143 +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. ---- - -connection.type -=================== - -Checks the active network connection that is being used. - -Description ------------ - -This property is a fast way to determine the device's network connection state, and type of connection. - -Supported Platforms -------------------- - -- iOS -- Android -- BlackBerry WebWorks (OS 5.0 and higher) -- Windows Phone 7 and 8 -- Bada 2.x -- webOS -- Tizen -- Windows 8 - -Quick Example -------------- - - function checkConnection() { - var networkState = navigator.connection.type; - - var states = {}; - states[Connection.UNKNOWN] = 'Unknown connection'; - states[Connection.ETHERNET] = 'Ethernet connection'; - states[Connection.WIFI] = 'WiFi connection'; - states[Connection.CELL_2G] = 'Cell 2G connection'; - states[Connection.CELL_3G] = 'Cell 3G connection'; - states[Connection.CELL_4G] = 'Cell 4G connection'; - states[Connection.CELL] = 'Cell generic connection'; - states[Connection.NONE] = 'No network connection'; - - alert('Connection type: ' + states[networkState]); - } - - checkConnection(); - -Full Example ------------- - - - - - navigator.connection.type Example - - - - - -

A dialog box will report the network state.

- - - -API Change ----------- -Before Cordova 2.3.0, the Connection object existed at: `navigator.network.connection`. - -To match the spec, this was changed to `navigator.connection` in 2.3.0. - -`navigator.network.connection` still exists, but is now deprecated and will be removed in a future release. - -iOS Quirks ----------- - -- iOS cannot detect the type of cellular network connection. - - `navigator.connection.type` is set to `Connection.CELL_2G` for all cellular data. This is deprecated as of 2.6.0 and will be changed to return `Connection.CELL` in a future release. - -Bada Quirks ------------ - -- Bada can only detect a WiFi or cellular connection. - - `navigator.connection.type` is set to `Connection.CELL_2G` for all cellular data. - -webOS Quirks ------------- - -- Only shows that a connection is available, but not which type. - -Windows Phone Quirks --------------------- - -- When running in the emulator, always detects `navigator.connection.type` as `Connection.UNKNOWN`. -- Windows Phone cannot detect the type of cellular network connection. - - `navigator.connection.type` is set to `Connection.CELL` for all cellular data. - -Tizen Quirks --------------------- - -- Tizen can only detect a WiFi or cellular connection. - - `navigator.connection.type` is set to `Connection.CELL_2G` for all cellular data.