Repository: cordova-docs Updated Branches: refs/heads/master 732ca1ecf -> c9175990c
CB-10018 - Add <allow-intent> doc for iOS Project: http://git-wip-us.apache.org/repos/asf/cordova-docs/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-docs/commit/c9175990 Tree: http://git-wip-us.apache.org/repos/asf/cordova-docs/tree/c9175990 Diff: http://git-wip-us.apache.org/repos/asf/cordova-docs/diff/c9175990 Branch: refs/heads/master Commit: c9175990c313220219d002ee19435d1cccda2284 Parents: 732ca1e Author: Shazron Abdullah <[email protected]> Authored: Wed Nov 18 03:39:59 2015 -0800 Committer: Shazron Abdullah <[email protected]> Committed: Wed Nov 18 03:40:20 2015 -0800 ---------------------------------------------------------------------- www/docs/en/edge/guide/appdev/whitelist/index.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c9175990/www/docs/en/edge/guide/appdev/whitelist/index.md ---------------------------------------------------------------------- diff --git a/www/docs/en/edge/guide/appdev/whitelist/index.md b/www/docs/en/edge/guide/appdev/whitelist/index.md index 0b6b155..16c65a0 100644 --- a/www/docs/en/edge/guide/appdev/whitelist/index.md +++ b/www/docs/en/edge/guide/appdev/whitelist/index.md @@ -94,19 +94,19 @@ prior to 4.0.0, see older versions of this documentation. ## iOS Whitelisting -As above, see [cordova-plugin-whitelist][wlp] for details. For cordova-ios -prior to 4.0.0, see older versions of this documentation. +The `<allow-intent>` and `<allow-navigation>` tags are _new_ for cordova-ios 4.x and greater, see the [cordova-plugin-whitelist][wlp] documentation for details. cordova-ios version 4.0 and greater does **not** require the [cordova-plugin-whitelist][wlp] plugin to be installed. + +For cordova-ios versions prior to 4.0.0, see the older versions of this documentation. -[Application Transport Security (ATS)](https://developer.apple.com/library/prerelease/ios/documentation/General/Reference/InfoPlistKeyReference/Articles/CocoaKeys.html#//apple_ref/doc/uid/TP40009251-SW33) is new in iOS 9 (Xcode 7). This new feature acts as a whitelist for your app. The cli will automatically convert <access> and <allow-navigation> tags to the appropriate ATS directives. +[Application Transport Security (ATS)](https://developer.apple.com/library/prerelease/ios/documentation/General/Reference/InfoPlistKeyReference/Articles/CocoaKeys.html#//apple_ref/doc/uid/TP40009251-SW33) is new in iOS 9 (Xcode 7). This new feature acts as a whitelist for your app. The cordova cli will automatically convert `<access>` and `<allow-navigation>` tags to the appropriate ATS directives. -The two tags mentioned above support these two new attributes below, which have their equivalents in ATS: +The `<access>` and `<allow-navigation>` tags support these two new attributes below, which have their equivalents in ATS: 1. minimum-tls-version (String, defaults to 'TLSv1.2') - 2. requires-forward-secrecy (Boolean, defaults to 'true') + 2. requires-forward-secrecy (Boolean, defaults to 'true') See the [ATS Technote](https://developer.apple.com/library/prerelease/ios/documentation/General/Reference/InfoPlistKeyReference/Articles/CocoaKeys.html#//apple_ref/doc/uid/TP40009251-SW33) for details. - ## BlackBerry 10 Whitelisting The whitelisting rules are found in `www/config.xml`. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
