You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ja...@apache.org on 2020/12/02 09:23:55 UTC

svn commit: r1884020 [3/4] - in /cordova/site/public: ./ docs/en/3.0.0/guide/appdev/whitelist/ docs/en/3.1.0/guide/appdev/whitelist/ docs/en/3.2.0/guide/appdev/whitelist/ docs/en/3.3.0/guide/appdev/whitelist/ docs/en/3.4.0/guide/appdev/whitelist/ docs/...

Modified: cordova/site/public/docs/en/dev/guide/hybrid/plugins/index.html
URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/guide/hybrid/plugins/index.html?rev=1884020&r1=1884019&r2=1884020&view=diff
==============================================================================
--- cordova/site/public/docs/en/dev/guide/hybrid/plugins/index.html (original)
+++ cordova/site/public/docs/en/dev/guide/hybrid/plugins/index.html Wed Dec  2 09:23:53 2020
@@ -418,8 +418,8 @@
 
     <li>
         
-            <a class="" href="../../../guide/appdev/whitelist/index.html">
-                Whitelisting
+            <a class="" href="../../../guide/appdev/allowlist/index.html">
+                Allow List
             </a>
             
         
@@ -912,21 +912,6 @@
         
     </li>
     
-
-    <li>
-        
-            <a class="" href="../../../reference/cordova-plugin-whitelist/index.html">
-                Whitelist
-            </a>
-            
-        
-
-        
-        
-
-        
-    </li>
-    
 </ul>
 
         
@@ -1106,8 +1091,8 @@
 
 
 <li>
-    <a class="" href="../../../guide/appdev/whitelist/index.html">
-        Whitelisting
+    <a class="" href="../../../guide/appdev/allowlist/index.html">
+        Allow List
     </a>
 </li>
 
@@ -1375,15 +1360,6 @@
 
 
 
-<li>
-    <a class="" href="../../../reference/cordova-plugin-whitelist/index.html">
-        Whitelist
-    </a>
-</li>
-
-
-
-
 
 
 
@@ -2560,13 +2536,18 @@ for guidance.</p>
 <h2>Building a Plugin</h2>
 
 <p>Application developers use the CLI&#39;s <a href="../../../reference/cordova-cli/index.html#cordova-plugin-command">plugin add command</a> to add a plugin to a project. The
-argument to that command is the URL for a <em>git</em> repository containing
-the plugin code.  This example implements Cordova&#39;s Device API:</p>
-<div class="highlight"><pre><code class="language-bash" data-lang="bash">cordova plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-device.git
+command takes the URL for a <em>git</em> repository containing
+the plugin code as an argument.  This example implements Cordova&#39;s Device API:</p>
+<div class="highlight"><pre><code class="language-bash" data-lang="bash">cordova plugin add https://github.com/apache/cordova-plugin-device
+</code></pre></div>
+<p>If the plugin is published to <em>npm</em>, the command can also receive the package name as the argument:</p>
+<div class="highlight"><pre><code class="language-bash" data-lang="bash">cordova plugin add cordova-plugin-device
 </code></pre></div>
 <p>The plugin repository must feature a top-level <code>plugin.xml</code> manifest
 file. There are many ways to configure this file, details for which
-are available in the <a href="../../../plugin_ref/spec.html">Plugin Specification</a>. This abbreviated version of the <code>Device</code> plugin provides a simple example to use as a model:</p>
+are available in the <a href="../../../plugin_ref/spec.html">Plugin Specification</a>. </p>
+
+<p>This abbreviated version of the <code>Device</code> plugin provides a simple example to use as a model:</p>
 <div class="highlight"><pre><code class="language-xml" data-lang="xml"><span class="cp">&lt;?xml version="1.0" encoding="UTF-8"?&gt;</span>
 <span class="nt">&lt;plugin</span> <span class="na">xmlns=</span><span class="s">"http://apache.org/cordova/ns/plugins/1.0"</span>
         <span class="na">id=</span><span class="s">"cordova-plugin-device"</span> <span class="na">version=</span><span class="s">"0.2.3"</span><span class="nt">&gt;</span>
@@ -2588,32 +2569,18 @@ are available in the <a href="../../../p
     <span class="nt">&lt;/platform&gt;</span>
 <span class="nt">&lt;/plugin&gt;</span>
 </code></pre></div>
-<p>The top-level <code>plugin</code> tag&#39;s <code>id</code> attribute uses the same
-reverse domain format to identify the plugin package as the apps
-they&#39;re added to.  The <code>js-module</code> tag specifies the path to the common
-JavaScript interface.  The <code>platform</code> tag specifies a corresponding
-set of native code, for the <code>ios</code> platform in this case.  The
-<code>config-file</code> tag encapsulates a <code>feature</code> tag that is injected into
+<ul>
+<li>The top-level <code>plugin</code> tag&#39;s <code>id</code> attribute usually follows the <code>cordova-plugin-{plugin name}</code> schema and matches the plugin&#39;s npm package name.</li>
+<li>The <code>js-module</code> tag specifies the path to the <a href="#the-javascript-interface">common
+JavaScript interface</a>.</li>
+<li>The <code>platform</code> tag specifies a corresponding
+set of native code, for the <code>ios</code> platform in this case.</li>
+<li>The <code>config-file</code> tag encapsulates a <code>feature</code> tag that is injected into
 the platform-specific <code>config.xml</code> file to make the platform aware of
-the additional code library.  The <code>header-file</code> and <code>source-file</code> tags
-specify the path to the library&#39;s component files.</p>
-
-<h2>Validating a Plugin using Plugman</h2>
-
-<p>You can use the <code>plugman</code> utility to check whether the plugin installs
-correctly for each platform.  Install <code>plugman</code> with the following
-<a href="http://nodejs.org/">node</a> command:</p>
-<div class="highlight"><pre><code class="language-bash" data-lang="bash">npm install <span class="nt">-g</span> plugman
-</code></pre></div>
-<p>You need a valid app source directory, such as the top-level <code>www</code>
-directory included in a default CLI-generated project, as described in the
-<a href="../../cli/index.html">Create your first app</a> guide.</p>
-
-<p>Then run a command such as the following to test whether iOS
-dependencies load properly:</p>
-<div class="highlight"><pre><code class="language-bash" data-lang="bash">plugman install <span class="nt">--platform</span> ios <span class="nt">--project</span> /path/to/my/project/www <span class="nt">--plugin</span> /path/to/my/plugin
-</code></pre></div>
-<p>For details on <code>plugman</code> options, see <a href="../../../plugin_ref/plugman.html">Using Plugman to Manage Plugins</a>. For information on how to actually <em>debug</em> plugins, see each platform&#39;s native interface listed at the bottom of this page.</p>
+the additional code library. </li>
+<li>The <code>header-file</code> and <code>source-file</code> tags
+specify the path to the library&#39;s component files.</li>
+</ul>
 
 <h2>The JavaScript Interface</h2>
 
@@ -2686,6 +2653,32 @@ listed below, and each builds on the sim
 <li><a href="../../platforms/windows/plugin.html">Windows Plugins</a></li>
 </ul>
 
+<h2>Testing a Plugin during development</h2>
+
+<p>The simplest way to manually test a plugin during development is to create a 
+Cordova app as usual and add the plugin with the <code>--link</code> option:</p>
+<div class="highlight"><pre><code class="language-bash" data-lang="bash">cordova plugin add ../path/to/my/plugin/relative/to/project <span class="nt">--link</span>
+</code></pre></div>
+<p>This creates a symbolic link instead of copying the plugin files, which enables you 
+to work on your plugin and then simply rebuild the app to use your changes.</p>
+
+<h2>Validating a Plugin using Plugman</h2>
+
+<p>You can use the <code>plugman</code> utility to check whether the plugin installs
+correctly for each platform.  Install <code>plugman</code> with the following
+<a href="http://nodejs.org/">node</a> command:</p>
+<div class="highlight"><pre><code class="language-bash" data-lang="bash">npm install <span class="nt">-g</span> plugman
+</code></pre></div>
+<p>You need a valid app source directory, such as the top-level <code>www</code>
+directory included in a default CLI-generated project, as described in the
+<a href="../../cli/index.html">Create your first app</a> guide.</p>
+
+<p>Then run a command such as the following to test whether iOS
+dependencies load properly:</p>
+<div class="highlight"><pre><code class="language-bash" data-lang="bash">plugman install <span class="nt">--platform</span> ios <span class="nt">--project</span> /path/to/my/project/www <span class="nt">--plugin</span> /path/to/my/plugin
+</code></pre></div>
+<p>For details on <code>plugman</code> options, see <a href="../../../plugin_ref/plugman.html">Using Plugman to Manage Plugins</a>. For information on how to actually <em>debug</em> plugins, see <a href="#native-interfaces">each platform&#39;s native interface listed above</a>.</p>
+
 <h2>Publishing Plugins</h2>
 
 <p>You can publish your plugin to any <code>npmjs</code>-based registry, but the recommended one is the <a href="https://www.npmjs.com">npm registry</a>. Other developers can install your plugin automatically using either <code>plugman</code> or the Cordova CLI.</p>
@@ -2711,7 +2704,7 @@ listed below, and each builds on the sim
 
 <p>To surface the plugin in <a href="/plugins/">Cordova Plugin Search</a>, add the <code>ecosystem:cordova</code> keyword to the <code>package.json</code> file of your plugin before publishing.</p>
 
-<p>To indicate support for a particular platform, add a keyword in the format <code>**cordova-&lt;platformName&gt;**</code> to the list of keywords in package.json.
+<p>To indicate support for a particular platform, add a keyword in the format <code>cordova-&lt;platformName&gt;</code> to the list of keywords in <code>package.json</code>.
 Plugman&#39;s <code>createpackagejson</code> command does this for you, but if you did not use it to generate your <code>package.json</code>, you should manually edit it as shown below.</p>
 
 <p>For example, for a plugin that supports Android, iOS &amp; Windows, the keywords in <code>package.json</code> should include:</p>

Modified: cordova/site/public/docs/en/dev/guide/hybrid/webviews/index.html
URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/guide/hybrid/webviews/index.html?rev=1884020&r1=1884019&r2=1884020&view=diff
==============================================================================
--- cordova/site/public/docs/en/dev/guide/hybrid/webviews/index.html (original)
+++ cordova/site/public/docs/en/dev/guide/hybrid/webviews/index.html Wed Dec  2 09:23:53 2020
@@ -418,8 +418,8 @@
 
     <li>
         
-            <a class="" href="../../../guide/appdev/whitelist/index.html">
-                Whitelisting
+            <a class="" href="../../../guide/appdev/allowlist/index.html">
+                Allow List
             </a>
             
         
@@ -912,21 +912,6 @@
         
     </li>
     
-
-    <li>
-        
-            <a class="" href="../../../reference/cordova-plugin-whitelist/index.html">
-                Whitelist
-            </a>
-            
-        
-
-        
-        
-
-        
-    </li>
-    
 </ul>
 
         
@@ -1106,8 +1091,8 @@
 
 
 <li>
-    <a class="" href="../../../guide/appdev/whitelist/index.html">
-        Whitelisting
+    <a class="" href="../../../guide/appdev/allowlist/index.html">
+        Allow List
     </a>
 </li>
 
@@ -1372,15 +1357,6 @@
     </a>
 </li>
 
-
-
-
-<li>
-    <a class="" href="../../../reference/cordova-plugin-whitelist/index.html">
-        Whitelist
-    </a>
-</li>
-
 
 
 

Modified: cordova/site/public/docs/en/dev/guide/next/index.html
URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/guide/next/index.html?rev=1884020&r1=1884019&r2=1884020&view=diff
==============================================================================
--- cordova/site/public/docs/en/dev/guide/next/index.html (original)
+++ cordova/site/public/docs/en/dev/guide/next/index.html Wed Dec  2 09:23:53 2020
@@ -418,8 +418,8 @@
 
     <li>
         
-            <a class="" href="../../guide/appdev/whitelist/index.html">
-                Whitelisting
+            <a class="" href="../../guide/appdev/allowlist/index.html">
+                Allow List
             </a>
             
         
@@ -912,21 +912,6 @@
         
     </li>
     
-
-    <li>
-        
-            <a class="" href="../../reference/cordova-plugin-whitelist/index.html">
-                Whitelist
-            </a>
-            
-        
-
-        
-        
-
-        
-    </li>
-    
 </ul>
 
         
@@ -1106,8 +1091,8 @@
 
 
 <li>
-    <a class="" href="../../guide/appdev/whitelist/index.html">
-        Whitelisting
+    <a class="" href="../../guide/appdev/allowlist/index.html">
+        Allow List
     </a>
 </li>
 
@@ -1372,15 +1357,6 @@
     </a>
 </li>
 
-
-
-
-<li>
-    <a class="" href="../../reference/cordova-plugin-whitelist/index.html">
-        Whitelist
-    </a>
-</li>
-
 
 
 

Modified: cordova/site/public/docs/en/dev/guide/overview/index.html
URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/guide/overview/index.html?rev=1884020&r1=1884019&r2=1884020&view=diff
==============================================================================
--- cordova/site/public/docs/en/dev/guide/overview/index.html (original)
+++ cordova/site/public/docs/en/dev/guide/overview/index.html Wed Dec  2 09:23:53 2020
@@ -420,8 +420,8 @@
 
     <li>
         
-            <a class="" href="../../guide/appdev/whitelist/index.html">
-                Whitelisting
+            <a class="" href="../../guide/appdev/allowlist/index.html">
+                Allow List
             </a>
             
         
@@ -912,21 +912,6 @@
         
     </li>
     
-
-    <li>
-        
-            <a class="" href="../../reference/cordova-plugin-whitelist/index.html">
-                Whitelist
-            </a>
-            
-        
-
-        
-        
-
-        
-    </li>
-    
 </ul>
 
         
@@ -1106,8 +1091,8 @@
 
 
 <li>
-    <a class="" href="../../guide/appdev/whitelist/index.html">
-        Whitelisting
+    <a class="" href="../../guide/appdev/allowlist/index.html">
+        Allow List
     </a>
 </li>
 
@@ -1372,15 +1357,6 @@
     </a>
 </li>
 
-
-
-
-<li>
-    <a class="" href="../../reference/cordova-plugin-whitelist/index.html">
-        Whitelist
-    </a>
-</li>
-
 
 
 

Modified: cordova/site/public/docs/en/dev/guide/platforms/android/index.html
URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/guide/platforms/android/index.html?rev=1884020&r1=1884019&r2=1884020&view=diff
==============================================================================
--- cordova/site/public/docs/en/dev/guide/platforms/android/index.html (original)
+++ cordova/site/public/docs/en/dev/guide/platforms/android/index.html Wed Dec  2 09:23:53 2020
@@ -420,8 +420,8 @@
 
     <li>
         
-            <a class="" href="../../../guide/appdev/whitelist/index.html">
-                Whitelisting
+            <a class="" href="../../../guide/appdev/allowlist/index.html">
+                Allow List
             </a>
             
         
@@ -912,21 +912,6 @@
         
     </li>
     
-
-    <li>
-        
-            <a class="" href="../../../reference/cordova-plugin-whitelist/index.html">
-                Whitelist
-            </a>
-            
-        
-
-        
-        
-
-        
-    </li>
-    
 </ul>
 
         
@@ -1106,8 +1091,8 @@
 
 
 <li>
-    <a class="" href="../../../guide/appdev/whitelist/index.html">
-        Whitelisting
+    <a class="" href="../../../guide/appdev/allowlist/index.html">
+        Allow List
     </a>
 </li>
 
@@ -1372,15 +1357,6 @@
     </a>
 </li>
 
-
-
-
-<li>
-    <a class="" href="../../../reference/cordova-plugin-whitelist/index.html">
-        Whitelist
-    </a>
-</li>
-
 
 
 

Modified: cordova/site/public/docs/en/dev/guide/platforms/android/plugin.html
URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/guide/platforms/android/plugin.html?rev=1884020&r1=1884019&r2=1884020&view=diff
==============================================================================
--- cordova/site/public/docs/en/dev/guide/platforms/android/plugin.html (original)
+++ cordova/site/public/docs/en/dev/guide/platforms/android/plugin.html Wed Dec  2 09:23:53 2020
@@ -418,8 +418,8 @@
 
     <li>
         
-            <a class="" href="../../../guide/appdev/whitelist/index.html">
-                Whitelisting
+            <a class="" href="../../../guide/appdev/allowlist/index.html">
+                Allow List
             </a>
             
         
@@ -912,21 +912,6 @@
         
     </li>
     
-
-    <li>
-        
-            <a class="" href="../../../reference/cordova-plugin-whitelist/index.html">
-                Whitelist
-            </a>
-            
-        
-
-        
-        
-
-        
-    </li>
-    
 </ul>
 
         
@@ -1106,8 +1091,8 @@
 
 
 <li>
-    <a class="" href="../../../guide/appdev/whitelist/index.html">
-        Whitelisting
+    <a class="" href="../../../guide/appdev/allowlist/index.html">
+        Allow List
     </a>
 </li>
 
@@ -1375,15 +1360,6 @@
 
 
 
-<li>
-    <a class="" href="../../../reference/cordova-plugin-whitelist/index.html">
-        Whitelist
-    </a>
-</li>
-
-
-
-
 
 
 
@@ -2533,15 +2509,18 @@
                 <h1>Android Plugin Development Guide</h1>
 
 <p>This section provides details for how to implement native plugin code
-on the Android platform. Before reading this, see the <a href="../../hybrid/plugins/index.html">Plugin Development Guide</a>
+on the Android platform.  </p>
+
+<p>Before reading this, see the <a href="../../hybrid/plugins/index.html">Plugin Development Guide</a>
 for an overview of the plugin&#39;s structure and its common JavaScript
 interface. This section continues to demonstrate the sample <em>echo</em>
 plugin that communicates from the Cordova webview to the native
 platform and back.  For another sample, see also the comments in
 <a href="https://github.com/apache/cordova-android/blob/master/framework/src/org/apache/cordova/CordovaPlugin.java">CordovaPlugin.java</a>.</p>
 
-<p>Android plugins are based on Cordova-Android, which is built from an
-Android WebView with a native bridge. The native portion of an Android plugin
+<p>Android plugins are based on Cordova-Android, 
+which is built from an Android WebView with a native bridge.
+The native portion of an Android plugin
 consists of at least one Java class that extends the <code>CordovaPlugin</code> class and
 overrides one of its <code>execute</code> methods.</p>
 
@@ -2710,24 +2689,24 @@ specification to the local platform&#39;
 */</span>
 <span class="kd">public</span> <span class="kd">class</span> <span class="nc">Echo</span> <span class="kd">extends</span> <span class="n">CordovaPlugin</span> <span class="o">{</span>
 
-<span class="nd">@Override</span>
-<span class="kd">public</span> <span class="kt">boolean</span> <span class="nf">execute</span><span class="o">(</span><span class="n">String</span> <span class="n">action</span><span class="o">,</span> <span class="n">JSONArray</span> <span class="n">args</span><span class="o">,</span> <span class="n">CallbackContext</span> <span class="n">callbackContext</span><span class="o">)</span> <span class="kd">throws</span> <span class="n">JSONException</span> <span class="o">{</span>
-    <span class="k">if</span> <span class="o">(</span><span class="n">action</span><span class="o">.</span><span class="na">equals</span><span class="o">(</span><span class="s">"echo"</span><span class="o">))</span> <span class="o">{</span>
-        <span class="n">String</span> <span class="n">message</span> <span class="o">=</span> <span class="n">args</span><span class="o">.</span><span class="na">getString</span><span class="o">(</span><span class="mi">0</span><span class="o">);</span>
-        <span class="k">this</span><span class="o">.</span><span class="na">echo</span><span class="o">(</span><span class="n">message</span><span class="o">,</span> <span class="n">callbackContext</span><span class="o">);</span>
-        <span class="k">return</span> <span class="kc">true</span><span class="o">;</span>
+    <span class="nd">@Override</span>
+    <span class="kd">public</span> <span class="kt">boolean</span> <span class="nf">execute</span><span class="o">(</span><span class="n">String</span> <span class="n">action</span><span class="o">,</span> <span class="n">JSONArray</span> <span class="n">args</span><span class="o">,</span> <span class="n">CallbackContext</span> <span class="n">callbackContext</span><span class="o">)</span> <span class="kd">throws</span> <span class="n">JSONException</span> <span class="o">{</span>
+        <span class="k">if</span> <span class="o">(</span><span class="n">action</span><span class="o">.</span><span class="na">equals</span><span class="o">(</span><span class="s">"echo"</span><span class="o">))</span> <span class="o">{</span>
+            <span class="n">String</span> <span class="n">message</span> <span class="o">=</span> <span class="n">args</span><span class="o">.</span><span class="na">getString</span><span class="o">(</span><span class="mi">0</span><span class="o">);</span>
+            <span class="k">this</span><span class="o">.</span><span class="na">echo</span><span class="o">(</span><span class="n">message</span><span class="o">,</span> <span class="n">callbackContext</span><span class="o">);</span>
+            <span class="k">return</span> <span class="kc">true</span><span class="o">;</span>
+        <span class="o">}</span>
+        <span class="k">return</span> <span class="kc">false</span><span class="o">;</span>
     <span class="o">}</span>
-    <span class="k">return</span> <span class="kc">false</span><span class="o">;</span>
-<span class="o">}</span>
 
-<span class="kd">private</span> <span class="kt">void</span> <span class="nf">echo</span><span class="o">(</span><span class="n">String</span> <span class="n">message</span><span class="o">,</span> <span class="n">CallbackContext</span> <span class="n">callbackContext</span><span class="o">)</span> <span class="o">{</span>
-    <span class="k">if</span> <span class="o">(</span><span class="n">message</span> <span class="o">!=</span> <span class="kc">null</span> <span class="o">&amp;&amp;</span> <span class="n">message</span><span class="o">.</span><span class="na">length</span><span class="o">()</span> <span class="o">&gt;</span> <span class="mi">0</span><span class="o">)</span> <span class="o">{</span>
-        <span class="n">callbackContext</span><span class="o">.</span><span class="na">success</span><span class="o">(</span><span class="n">message</span><span class="o">);</span>
-    <span class="o">}</span> <span class="k">else</span> <span class="o">{</span>
-        <span class="n">callbackContext</span><span class="o">.</span><span class="na">error</span><span class="o">(</span><span class="s">"Expected one non-empty string argument."</span><span class="o">);</span>
+    <span class="kd">private</span> <span class="kt">void</span> <span class="nf">echo</span><span class="o">(</span><span class="n">String</span> <span class="n">message</span><span class="o">,</span> <span class="n">CallbackContext</span> <span class="n">callbackContext</span><span class="o">)</span> <span class="o">{</span>
+        <span class="k">if</span> <span class="o">(</span><span class="n">message</span> <span class="o">!=</span> <span class="kc">null</span> <span class="o">&amp;&amp;</span> <span class="n">message</span><span class="o">.</span><span class="na">length</span><span class="o">()</span> <span class="o">&gt;</span> <span class="mi">0</span><span class="o">)</span> <span class="o">{</span>
+            <span class="n">callbackContext</span><span class="o">.</span><span class="na">success</span><span class="o">(</span><span class="n">message</span><span class="o">);</span>
+        <span class="o">}</span> <span class="k">else</span> <span class="o">{</span>
+            <span class="n">callbackContext</span><span class="o">.</span><span class="na">error</span><span class="o">(</span><span class="s">"Expected one non-empty string argument."</span><span class="o">);</span>
+        <span class="o">}</span>
     <span class="o">}</span>
 <span class="o">}</span>
-<span class="o">}</span>
 </code></pre></div>
 <p>The necessary imports at the top of the file extends the class from
 <code>CordovaPlugin</code>, whose <code>execute()</code> method it overrides to receive
@@ -2834,21 +2813,21 @@ every plugin should override.  An exampl
     <span class="o">}</span>
 <span class="o">}</span>
 </code></pre></div>
-<p>The switch statement above would return from the prompt and, depending on the requestCode that was passed in, would call the respective method.  It should be noted that permission prompts may stack if the execution is not handled correctly, and that this should be avoided.</p>
+<p>The switch statement above would return from the prompt and, depending on the <code>requestCode</code> that was passed in, would call the respective method.  It should be noted that permission prompts may stack if the execution is not handled correctly, and that this should be avoided.</p>
 
-<p>In addition to asking for permission for a single permission, it is also possible to request permissions for an entire group by defining the permissions array, as what is done with the Geolocation plugin:</p>
+<p>In addition to asking for permission for a single permission, it is also possible to request permissions for an entire group by defining the <code>permissions</code> array, as what is done with the Geolocation plugin:</p>
 <div class="highlight"><pre><code class="language-java" data-lang="java"><span class="n">String</span> <span class="o">[]</span> <span class="n">permissions</span> <span class="o">=</span> <span class="o">{</span> <span class="n">Manifest</span><span class="o">.</span><span class="na">permission</span><span class="o">.</span><span class="na">ACCESS_COARSE_LOCATION</span><span class="o">,</span> <span class="n">Manifest</span><span class="o">.</span><span class="na">permission</span><span class="o">.</span><span class="na">ACCESS_FINE_LOCATION</span> <span class="o">};</span>
 </code></pre></div>
 <p>Then when requesting the permission, all that needs to be done is the following:</p>
 <div class="highlight"><pre><code class="language-java" data-lang="java"><span class="n">cordova</span><span class="o">.</span><span class="na">requestPermissions</span><span class="o">(</span><span class="k">this</span><span class="o">,</span> <span class="mi">0</span><span class="o">,</span> <span class="n">permissions</span><span class="o">);</span>
 </code></pre></div>
-<p>This requests the permissions specified in the array.  It&#39;s a good idea to provide a publicly accessible permissions array since this can be used by plugins that use your plugin as a
+<p>This requests the permissions specified in the array.  It&#39;s a good idea to provide a publicly accessible <code>permissions</code> array since this can be used by plugins that use your plugin as a
 dependency, although this is not required.</p>
 
 <h2>Debugging Android Plugins</h2>
 
 <p>Android debugging can be done with either Eclipse or Android Studio, although Android
-studio is recommended.  Since Cordova-Android is currently used as a library project,
+Studio is recommended.  Since Cordova-Android is currently used as a library project,
 and plugins are supported as source code, it is possible to debug the Java code inside
 a Cordova application just like a native Android application.</p>
 

Modified: cordova/site/public/docs/en/dev/guide/platforms/android/upgrade.html
URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/guide/platforms/android/upgrade.html?rev=1884020&r1=1884019&r2=1884020&view=diff
==============================================================================
--- cordova/site/public/docs/en/dev/guide/platforms/android/upgrade.html (original)
+++ cordova/site/public/docs/en/dev/guide/platforms/android/upgrade.html Wed Dec  2 09:23:53 2020
@@ -418,8 +418,8 @@
 
     <li>
         
-            <a class="" href="../../../guide/appdev/whitelist/index.html">
-                Whitelisting
+            <a class="" href="../../../guide/appdev/allowlist/index.html">
+                Allow List
             </a>
             
         
@@ -910,21 +910,6 @@
         
     </li>
     
-
-    <li>
-        
-            <a class="" href="../../../reference/cordova-plugin-whitelist/index.html">
-                Whitelist
-            </a>
-            
-        
-
-        
-        
-
-        
-    </li>
-    
 </ul>
 
         
@@ -1104,8 +1089,8 @@
 
 
 <li>
-    <a class="" href="../../../guide/appdev/whitelist/index.html">
-        Whitelisting
+    <a class="" href="../../../guide/appdev/allowlist/index.html">
+        Allow List
     </a>
 </li>
 
@@ -1370,15 +1355,6 @@
     </a>
 </li>
 
-
-
-
-<li>
-    <a class="" href="../../../reference/cordova-plugin-whitelist/index.html">
-        Whitelist
-    </a>
-</li>
-
 
 
 

Modified: cordova/site/public/docs/en/dev/guide/platforms/android/webview.html
URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/guide/platforms/android/webview.html?rev=1884020&r1=1884019&r2=1884020&view=diff
==============================================================================
--- cordova/site/public/docs/en/dev/guide/platforms/android/webview.html (original)
+++ cordova/site/public/docs/en/dev/guide/platforms/android/webview.html Wed Dec  2 09:23:53 2020
@@ -418,8 +418,8 @@
 
     <li>
         
-            <a class="" href="../../../guide/appdev/whitelist/index.html">
-                Whitelisting
+            <a class="" href="../../../guide/appdev/allowlist/index.html">
+                Allow List
             </a>
             
         
@@ -910,21 +910,6 @@
         
     </li>
     
-
-    <li>
-        
-            <a class="" href="../../../reference/cordova-plugin-whitelist/index.html">
-                Whitelist
-            </a>
-            
-        
-
-        
-        
-
-        
-    </li>
-    
 </ul>
 
         
@@ -1104,8 +1089,8 @@
 
 
 <li>
-    <a class="" href="../../../guide/appdev/whitelist/index.html">
-        Whitelisting
+    <a class="" href="../../../guide/appdev/allowlist/index.html">
+        Allow List
     </a>
 </li>
 
@@ -1370,15 +1355,6 @@
     </a>
 </li>
 
-
-
-
-<li>
-    <a class="" href="../../../reference/cordova-plugin-whitelist/index.html">
-        Whitelist
-    </a>
-</li>
-
 
 
 

Modified: cordova/site/public/docs/en/dev/guide/platforms/electron/index.html
URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/guide/platforms/electron/index.html?rev=1884020&r1=1884019&r2=1884020&view=diff
==============================================================================
--- cordova/site/public/docs/en/dev/guide/platforms/electron/index.html (original)
+++ cordova/site/public/docs/en/dev/guide/platforms/electron/index.html Wed Dec  2 09:23:53 2020
@@ -420,8 +420,8 @@
 
     <li>
         
-            <a class="" href="../../../guide/appdev/whitelist/index.html">
-                Whitelisting
+            <a class="" href="../../../guide/appdev/allowlist/index.html">
+                Allow List
             </a>
             
         
@@ -912,21 +912,6 @@
         
     </li>
     
-
-    <li>
-        
-            <a class="" href="../../../reference/cordova-plugin-whitelist/index.html">
-                Whitelist
-            </a>
-            
-        
-
-        
-        
-
-        
-    </li>
-    
 </ul>
 
         
@@ -1106,8 +1091,8 @@
 
 
 <li>
-    <a class="" href="../../../guide/appdev/whitelist/index.html">
-        Whitelisting
+    <a class="" href="../../../guide/appdev/allowlist/index.html">
+        Allow List
     </a>
 </li>
 
@@ -1372,15 +1357,6 @@
     </a>
 </li>
 
-
-
-
-<li>
-    <a class="" href="../../../reference/cordova-plugin-whitelist/index.html">
-        Whitelist
-    </a>
-</li>
-
 
 
 

Modified: cordova/site/public/docs/en/dev/guide/platforms/ios/index.html
URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/guide/platforms/ios/index.html?rev=1884020&r1=1884019&r2=1884020&view=diff
==============================================================================
--- cordova/site/public/docs/en/dev/guide/platforms/ios/index.html (original)
+++ cordova/site/public/docs/en/dev/guide/platforms/ios/index.html Wed Dec  2 09:23:53 2020
@@ -420,8 +420,8 @@
 
     <li>
         
-            <a class="" href="../../../guide/appdev/whitelist/index.html">
-                Whitelisting
+            <a class="" href="../../../guide/appdev/allowlist/index.html">
+                Allow List
             </a>
             
         
@@ -912,21 +912,6 @@
         
     </li>
     
-
-    <li>
-        
-            <a class="" href="../../../reference/cordova-plugin-whitelist/index.html">
-                Whitelist
-            </a>
-            
-        
-
-        
-        
-
-        
-    </li>
-    
 </ul>
 
         
@@ -1106,8 +1091,8 @@
 
 
 <li>
-    <a class="" href="../../../guide/appdev/whitelist/index.html">
-        Whitelisting
+    <a class="" href="../../../guide/appdev/allowlist/index.html">
+        Allow List
     </a>
 </li>
 
@@ -1372,15 +1357,6 @@
     </a>
 </li>
 
-
-
-
-<li>
-    <a class="" href="../../../reference/cordova-plugin-whitelist/index.html">
-        Whitelist
-    </a>
-</li>
-
 
 
 

Modified: cordova/site/public/docs/en/dev/guide/platforms/ios/plugin.html
URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/guide/platforms/ios/plugin.html?rev=1884020&r1=1884019&r2=1884020&view=diff
==============================================================================
--- cordova/site/public/docs/en/dev/guide/platforms/ios/plugin.html (original)
+++ cordova/site/public/docs/en/dev/guide/platforms/ios/plugin.html Wed Dec  2 09:23:53 2020
@@ -418,8 +418,8 @@
 
     <li>
         
-            <a class="" href="../../../guide/appdev/whitelist/index.html">
-                Whitelisting
+            <a class="" href="../../../guide/appdev/allowlist/index.html">
+                Allow List
             </a>
             
         
@@ -912,21 +912,6 @@
         
     </li>
     
-
-    <li>
-        
-            <a class="" href="../../../reference/cordova-plugin-whitelist/index.html">
-                Whitelist
-            </a>
-            
-        
-
-        
-        
-
-        
-    </li>
-    
 </ul>
 
         
@@ -1106,8 +1091,8 @@
 
 
 <li>
-    <a class="" href="../../../guide/appdev/whitelist/index.html">
-        Whitelisting
+    <a class="" href="../../../guide/appdev/allowlist/index.html">
+        Allow List
     </a>
 </li>
 
@@ -1375,15 +1360,6 @@
 
 
 
-<li>
-    <a class="" href="../../../reference/cordova-plugin-whitelist/index.html">
-        Whitelist
-    </a>
-</li>
-
-
-
-
 
 
 
@@ -2533,7 +2509,9 @@
                 <h1>iOS Plugin Development Guide</h1>
 
 <p>This section provides details for how to implement native plugin code
-on the iOS platform. Before reading this, see [Plugin Development Guide][plugin-dev] for
+on the iOS platform. </p>
+
+<p>Before reading this, see <a href="../../hybrid/plugins/index.html">Plugin Development Guide</a> for
 an overview of the plugin&#39;s structure and its common JavaScript
 interface. This section continues to demonstrate the sample <em>echo</em>
 plugin that communicates from the Cordova webview to the native
@@ -2557,7 +2535,7 @@ the arguments passed in the <code>args</
 
 <p>Specify the plugin as a <code>&lt;feature&gt;</code> tag in your Cordova-iOS
 application&#39;s project&#39;s <code>config.xml</code> file, using the <code>plugin.xml</code> file
-to inject this markup automatically, as described in [Plugin Development Guide][plugin-dev]:</p>
+to inject this markup automatically, as described in <a href="../../hybrid/plugins/index.html">Plugin Development Guide</a>:</p>
 <div class="highlight"><pre><code class="language-xml" data-lang="xml"><span class="nt">&lt;feature</span> <span class="na">name=</span><span class="s">"LocalStorage"</span><span class="nt">&gt;</span>
     <span class="nt">&lt;param</span> <span class="na">name=</span><span class="s">"ios-package"</span> <span class="na">value=</span><span class="s">"CDVLocalStorage"</span> <span class="nt">/&gt;</span>
 <span class="nt">&lt;/feature&gt;</span>

Modified: cordova/site/public/docs/en/dev/guide/platforms/ios/upgrade.html
URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/guide/platforms/ios/upgrade.html?rev=1884020&r1=1884019&r2=1884020&view=diff
==============================================================================
--- cordova/site/public/docs/en/dev/guide/platforms/ios/upgrade.html (original)
+++ cordova/site/public/docs/en/dev/guide/platforms/ios/upgrade.html Wed Dec  2 09:23:53 2020
@@ -418,8 +418,8 @@
 
     <li>
         
-            <a class="" href="../../../guide/appdev/whitelist/index.html">
-                Whitelisting
+            <a class="" href="../../../guide/appdev/allowlist/index.html">
+                Allow List
             </a>
             
         
@@ -910,21 +910,6 @@
         
     </li>
     
-
-    <li>
-        
-            <a class="" href="../../../reference/cordova-plugin-whitelist/index.html">
-                Whitelist
-            </a>
-            
-        
-
-        
-        
-
-        
-    </li>
-    
 </ul>
 
         
@@ -1104,8 +1089,8 @@
 
 
 <li>
-    <a class="" href="../../../guide/appdev/whitelist/index.html">
-        Whitelisting
+    <a class="" href="../../../guide/appdev/allowlist/index.html">
+        Allow List
     </a>
 </li>
 
@@ -1370,15 +1355,6 @@
     </a>
 </li>
 
-
-
-
-<li>
-    <a class="" href="../../../reference/cordova-plugin-whitelist/index.html">
-        Whitelist
-    </a>
-</li>
-
 
 
 

Modified: cordova/site/public/docs/en/dev/guide/platforms/ios/webview.html
URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/guide/platforms/ios/webview.html?rev=1884020&r1=1884019&r2=1884020&view=diff
==============================================================================
--- cordova/site/public/docs/en/dev/guide/platforms/ios/webview.html (original)
+++ cordova/site/public/docs/en/dev/guide/platforms/ios/webview.html Wed Dec  2 09:23:53 2020
@@ -418,8 +418,8 @@
 
     <li>
         
-            <a class="" href="../../../guide/appdev/whitelist/index.html">
-                Whitelisting
+            <a class="" href="../../../guide/appdev/allowlist/index.html">
+                Allow List
             </a>
             
         
@@ -910,21 +910,6 @@
         
     </li>
     
-
-    <li>
-        
-            <a class="" href="../../../reference/cordova-plugin-whitelist/index.html">
-                Whitelist
-            </a>
-            
-        
-
-        
-        
-
-        
-    </li>
-    
 </ul>
 
         
@@ -1104,8 +1089,8 @@
 
 
 <li>
-    <a class="" href="../../../guide/appdev/whitelist/index.html">
-        Whitelisting
+    <a class="" href="../../../guide/appdev/allowlist/index.html">
+        Allow List
     </a>
 </li>
 
@@ -1370,15 +1355,6 @@
     </a>
 </li>
 
-
-
-
-<li>
-    <a class="" href="../../../reference/cordova-plugin-whitelist/index.html">
-        Whitelist
-    </a>
-</li>
-
 
 
 

Modified: cordova/site/public/docs/en/dev/guide/platforms/osx/config.html
URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/guide/platforms/osx/config.html?rev=1884020&r1=1884019&r2=1884020&view=diff
==============================================================================
--- cordova/site/public/docs/en/dev/guide/platforms/osx/config.html (original)
+++ cordova/site/public/docs/en/dev/guide/platforms/osx/config.html Wed Dec  2 09:23:53 2020
@@ -418,8 +418,8 @@
 
     <li>
         
-            <a class="" href="../../../guide/appdev/whitelist/index.html">
-                Whitelisting
+            <a class="" href="../../../guide/appdev/allowlist/index.html">
+                Allow List
             </a>
             
         
@@ -910,21 +910,6 @@
         
     </li>
     
-
-    <li>
-        
-            <a class="" href="../../../reference/cordova-plugin-whitelist/index.html">
-                Whitelist
-            </a>
-            
-        
-
-        
-        
-
-        
-    </li>
-    
 </ul>
 
         
@@ -1104,8 +1089,8 @@
 
 
 <li>
-    <a class="" href="../../../guide/appdev/whitelist/index.html">
-        Whitelisting
+    <a class="" href="../../../guide/appdev/allowlist/index.html">
+        Allow List
     </a>
 </li>
 
@@ -1370,15 +1355,6 @@
     </a>
 </li>
 
-
-
-
-<li>
-    <a class="" href="../../../reference/cordova-plugin-whitelist/index.html">
-        Whitelist
-    </a>
-</li>
-
 
 
 

Modified: cordova/site/public/docs/en/dev/guide/platforms/osx/index.html
URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/guide/platforms/osx/index.html?rev=1884020&r1=1884019&r2=1884020&view=diff
==============================================================================
--- cordova/site/public/docs/en/dev/guide/platforms/osx/index.html (original)
+++ cordova/site/public/docs/en/dev/guide/platforms/osx/index.html Wed Dec  2 09:23:53 2020
@@ -420,8 +420,8 @@
 
     <li>
         
-            <a class="" href="../../../guide/appdev/whitelist/index.html">
-                Whitelisting
+            <a class="" href="../../../guide/appdev/allowlist/index.html">
+                Allow List
             </a>
             
         
@@ -912,21 +912,6 @@
         
     </li>
     
-
-    <li>
-        
-            <a class="" href="../../../reference/cordova-plugin-whitelist/index.html">
-                Whitelist
-            </a>
-            
-        
-
-        
-        
-
-        
-    </li>
-    
 </ul>
 
         
@@ -1106,8 +1091,8 @@
 
 
 <li>
-    <a class="" href="../../../guide/appdev/whitelist/index.html">
-        Whitelisting
+    <a class="" href="../../../guide/appdev/allowlist/index.html">
+        Allow List
     </a>
 </li>
 
@@ -1372,15 +1357,6 @@
     </a>
 </li>
 
-
-
-
-<li>
-    <a class="" href="../../../reference/cordova-plugin-whitelist/index.html">
-        Whitelist
-    </a>
-</li>
-
 
 
 

Modified: cordova/site/public/docs/en/dev/guide/platforms/osx/plugin.html
URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/guide/platforms/osx/plugin.html?rev=1884020&r1=1884019&r2=1884020&view=diff
==============================================================================
--- cordova/site/public/docs/en/dev/guide/platforms/osx/plugin.html (original)
+++ cordova/site/public/docs/en/dev/guide/platforms/osx/plugin.html Wed Dec  2 09:23:53 2020
@@ -418,8 +418,8 @@
 
     <li>
         
-            <a class="" href="../../../guide/appdev/whitelist/index.html">
-                Whitelisting
+            <a class="" href="../../../guide/appdev/allowlist/index.html">
+                Allow List
             </a>
             
         
@@ -910,21 +910,6 @@
         
     </li>
     
-
-    <li>
-        
-            <a class="" href="../../../reference/cordova-plugin-whitelist/index.html">
-                Whitelist
-            </a>
-            
-        
-
-        
-        
-
-        
-    </li>
-    
 </ul>
 
         
@@ -1104,8 +1089,8 @@
 
 
 <li>
-    <a class="" href="../../../guide/appdev/whitelist/index.html">
-        Whitelisting
+    <a class="" href="../../../guide/appdev/allowlist/index.html">
+        Allow List
     </a>
 </li>
 
@@ -1370,15 +1355,6 @@
     </a>
 </li>
 
-
-
-
-<li>
-    <a class="" href="../../../reference/cordova-plugin-whitelist/index.html">
-        Whitelist
-    </a>
-</li>
-
 
 
 

Modified: cordova/site/public/docs/en/dev/guide/platforms/windows/index.html
URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/guide/platforms/windows/index.html?rev=1884020&r1=1884019&r2=1884020&view=diff
==============================================================================
--- cordova/site/public/docs/en/dev/guide/platforms/windows/index.html (original)
+++ cordova/site/public/docs/en/dev/guide/platforms/windows/index.html Wed Dec  2 09:23:53 2020
@@ -420,8 +420,8 @@
 
     <li>
         
-            <a class="" href="../../../guide/appdev/whitelist/index.html">
-                Whitelisting
+            <a class="" href="../../../guide/appdev/allowlist/index.html">
+                Allow List
             </a>
             
         
@@ -912,21 +912,6 @@
         
     </li>
     
-
-    <li>
-        
-            <a class="" href="../../../reference/cordova-plugin-whitelist/index.html">
-                Whitelist
-            </a>
-            
-        
-
-        
-        
-
-        
-    </li>
-    
 </ul>
 
         
@@ -1106,8 +1091,8 @@
 
 
 <li>
-    <a class="" href="../../../guide/appdev/whitelist/index.html">
-        Whitelisting
+    <a class="" href="../../../guide/appdev/allowlist/index.html">
+        Allow List
     </a>
 </li>
 
@@ -1372,15 +1357,6 @@
     </a>
 </li>
 
-
-
-
-<li>
-    <a class="" href="../../../reference/cordova-plugin-whitelist/index.html">
-        Whitelist
-    </a>
-</li>
-
 
 
 

Modified: cordova/site/public/docs/en/dev/guide/platforms/windows/plugin.html
URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/guide/platforms/windows/plugin.html?rev=1884020&r1=1884019&r2=1884020&view=diff
==============================================================================
--- cordova/site/public/docs/en/dev/guide/platforms/windows/plugin.html (original)
+++ cordova/site/public/docs/en/dev/guide/platforms/windows/plugin.html Wed Dec  2 09:23:53 2020
@@ -418,8 +418,8 @@
 
     <li>
         
-            <a class="" href="../../../guide/appdev/whitelist/index.html">
-                Whitelisting
+            <a class="" href="../../../guide/appdev/allowlist/index.html">
+                Allow List
             </a>
             
         
@@ -912,21 +912,6 @@
         
     </li>
     
-
-    <li>
-        
-            <a class="" href="../../../reference/cordova-plugin-whitelist/index.html">
-                Whitelist
-            </a>
-            
-        
-
-        
-        
-
-        
-    </li>
-    
 </ul>
 
         
@@ -1106,8 +1091,8 @@
 
 
 <li>
-    <a class="" href="../../../guide/appdev/whitelist/index.html">
-        Whitelisting
+    <a class="" href="../../../guide/appdev/allowlist/index.html">
+        Allow List
     </a>
 </li>
 
@@ -1375,15 +1360,6 @@
 
 
 
-<li>
-    <a class="" href="../../../reference/cordova-plugin-whitelist/index.html">
-        Whitelist
-    </a>
-</li>
-
-
-
-
 
 
 
@@ -2564,7 +2540,7 @@ a Windows Store app for Windows 8.1 phon
 <h2>Creating a Windows Plugin in JavaScript</h2>
 
 <p>Windows Cordova plugins are essentially a thin wrapper around existing WinJS provided functions, but assuming you will want to define your JS common interface for multiple devices, you will typically have one JS file that provides the API:</p>
-<div class="highlight"><pre><code class="language-js" data-lang="js"><span class="c1">// inside file echoplugin.js</span>
+<div class="highlight"><pre><code class="language-js" data-lang="js"><span class="c1">// inside file www/echoplugin.js</span>
 <span class="kd">var</span> <span class="nx">EchoPlugin</span> <span class="o">=</span> <span class="p">{</span>
     <span class="c1">// the echo function calls successCallback with the provided text in strInput</span>
     <span class="c1">// if strInput is empty, it will call the errorCallback</span>
@@ -2575,14 +2551,16 @@ a Windows Store app for Windows 8.1 phon
 </code></pre></div>
 <p>The <code>cordova.exec</code> function is defined differently on every platform, this is because each platform has it&#39;s own way of communicating between the application js code, and the native wrapper code. But in the case of Windows, there is no native wrapper, so the exec call is there for consistency. So even though you could write the Windows specific code as a part of plugin&#39;s common JS code directly, this is not recommended and plugin authors should use the same exec API for Windows as for other platforms. This way the plugin API becomes consistent and you can also take advantage of any parameter checking, or other common code provided by developers who were working on other platforms.</p>
 
-<p>On Windows, cordova provides a proxy that you can use to register an object that will handle all cordova.exec calls to an API. So in our case, we will assume that the code in <code>echoplugin.js</code> is handling cross platform relevant JavaScript, and we can simply write a proxy for Windows.</p>
-<div class="highlight"><pre><code class="language-js" data-lang="js"><span class="c1">// in file echoplugin.js</span>
+<h3>Plugin Exec Proxy</h3>
+
+<p>On Windows, Cordova provides a proxy that you can use to register an object that will handle all <code>cordova.exec</code> calls to an API. So in our case, we will assume that the code in <code>echoplugin.js</code> is handling cross platform relevant JavaScript, and we can simply write a proxy for Windows.</p>
+<div class="highlight"><pre><code class="language-js" data-lang="js"><span class="c1">// in file www/echoplugin.js</span>
 <span class="nb">window</span><span class="p">.</span><span class="nx">echo</span> <span class="o">=</span> <span class="kd">function</span><span class="p">(</span><span class="nx">str</span><span class="p">,</span> <span class="nx">callback</span><span class="p">)</span> <span class="p">{</span>
     <span class="nx">cordova</span><span class="p">.</span><span class="nx">exec</span><span class="p">(</span><span class="nx">callback</span><span class="p">,</span> <span class="kd">function</span><span class="p">(</span><span class="nx">err</span><span class="p">)</span> <span class="p">{</span>
         <span class="nx">callback</span><span class="p">(</span><span class="s1">'Nothing to echo.'</span><span class="p">);</span>
     <span class="p">},</span> <span class="s2">"Echo"</span><span class="p">,</span> <span class="s2">"echo"</span><span class="p">,</span> <span class="p">[</span><span class="nx">str</span><span class="p">]);</span>
 <span class="p">};</span>
-</code></pre></div><div class="highlight"><pre><code class="language-js" data-lang="js"><span class="c1">// in file echopluginProxy.js</span>
+</code></pre></div><div class="highlight"><pre><code class="language-js" data-lang="js"><span class="c1">// in file src/windows/echopluginProxy.js</span>
 <span class="nx">cordova</span><span class="p">.</span><span class="nx">commandProxy</span><span class="p">.</span><span class="nx">add</span><span class="p">(</span><span class="s2">"Echo"</span><span class="p">,{</span>
     <span class="na">echo</span><span class="p">:</span><span class="kd">function</span><span class="p">(</span><span class="nx">successCallback</span><span class="p">,</span><span class="nx">errorCallback</span><span class="p">,</span><span class="nx">strInput</span><span class="p">)</span> <span class="p">{</span>
         <span class="k">if</span><span class="p">(</span><span class="o">!</span><span class="nx">strInput</span> <span class="o">||</span> <span class="o">!</span><span class="nx">strInput</span><span class="p">.</span><span class="nx">length</span><span class="p">)</span> <span class="p">{</span>
@@ -2593,10 +2571,25 @@ a Windows Store app for Windows 8.1 phon
         <span class="p">}</span>
     <span class="p">}</span>
 <span class="p">});</span>
+
+<span class="c1">// or alternative syntax</span>
+
+<span class="nx">module</span><span class="p">.</span><span class="nx">exports</span> <span class="o">=</span> <span class="p">{</span>
+    <span class="na">echo</span><span class="p">:</span> <span class="kd">function</span><span class="p">(</span><span class="nx">successCallback</span><span class="p">,</span> <span class="nx">errorCallback</span><span class="p">,</span> <span class="nx">strInput</span><span class="p">)</span> <span class="p">{</span>
+        <span class="k">if</span><span class="p">(</span><span class="o">!</span><span class="nx">strInput</span> <span class="o">||</span> <span class="o">!</span><span class="nx">strInput</span><span class="p">.</span><span class="nx">length</span><span class="p">)</span> <span class="p">{</span>
+            <span class="nx">errorCallback</span><span class="p">(</span><span class="s2">"Error, something was wrong with the input string. =&gt;"</span> <span class="o">+</span> <span class="nx">strInput</span><span class="p">);</span>
+        <span class="p">}</span>
+        <span class="k">else</span> <span class="p">{</span>
+            <span class="nx">successCallback</span><span class="p">(</span><span class="nx">strInput</span> <span class="o">+</span> <span class="s2">"echo"</span><span class="p">);</span>
+        <span class="p">}</span>
+    <span class="p">}</span>
+<span class="p">};</span>
+
+<span class="nx">require</span><span class="p">(</span><span class="s1">'cordova/exec/proxy'</span><span class="p">).</span><span class="nx">add</span><span class="p">(</span><span class="s1">'Echo'</span><span class="p">,</span> <span class="nx">module</span><span class="p">.</span><span class="nx">exports</span><span class="p">);</span>
 </code></pre></div>
-<p>The <code>echoplugin.js</code> file will forward the <code>echo</code> function call to this proxy through the <code>cordova.exec</code> command and execute this implementation.</p>
+<p>The <code>www/echoplugin.js</code> file will forward the <code>echo</code> function call to this proxy through the <code>cordova.exec</code> command and execute this implementation in <code>src/windows/echopluginProxy.js</code>.</p>
 
-<p>The plugin.xml file will have the settings required for our plugin. In this case, we want to add our <code>echoplugin.js</code> file in the <code>www</code> directory and the <code>echopluginProxy.js</code> file inside the <code>windows</code> source code of our application. Details of these elements can be found in the <a href="../../../plugin_ref/spec.html">Plugin.xml</a> reference.</p>
+<p>The <code>plugin.xml</code> file will have the settings required for our plugin. In this case, we want to add our <code>echoplugin.js</code> file in the <code>www</code> directory and the <code>echopluginProxy.js</code> file inside the <code>windows</code> source code of our application. Details of these elements can be found in the <a href="../../../plugin_ref/spec.html">Plugin.xml</a> reference.</p>
 <div class="highlight"><pre><code class="language-xml" data-lang="xml"><span class="cp">&lt;?xml version="1.0" encoding="UTF-8"?&gt;</span>
 <span class="nt">&lt;plugin</span> <span class="na">xmlns=</span><span class="s">"http://apache.org/cordova/ns/plugins/1.0"</span>
     <span class="na">id=</span><span class="s">"echoplugin"</span>
@@ -2617,7 +2610,7 @@ a Windows Store app for Windows 8.1 phon
 
 <span class="nt">&lt;/plugin&gt;</span>
 </code></pre></div>
-<p>This gives us a working Windows JavaScript plugin that uses a common file ( echoplugin.js ) and uses a proxy to provide the Windows only portion of implementation ( echopluginProxy.js ). So how do we add native/managed code to this? Well we are going to start the same, the only difference will be what we do inside in echopluginProxy methods.</p>
+<p>This gives us a working Windows JavaScript plugin that uses a common file (<code>www/echoplugin.js</code>) and uses a proxy to provide the Windows only portion of implementation (<code>src/windows/echopluginProxy.js</code>). So how do we add native/managed code to this? Well we are going to start the same, the only difference will be what we do inside in echopluginProxy methods.</p>
 
 <h2>Creating a Windows Plugin in C++ or managed code.</h2>
 

Modified: cordova/site/public/docs/en/dev/guide/platforms/windows/upgrade.html
URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/guide/platforms/windows/upgrade.html?rev=1884020&r1=1884019&r2=1884020&view=diff
==============================================================================
--- cordova/site/public/docs/en/dev/guide/platforms/windows/upgrade.html (original)
+++ cordova/site/public/docs/en/dev/guide/platforms/windows/upgrade.html Wed Dec  2 09:23:53 2020
@@ -418,8 +418,8 @@
 
     <li>
         
-            <a class="" href="../../../guide/appdev/whitelist/index.html">
-                Whitelisting
+            <a class="" href="../../../guide/appdev/allowlist/index.html">
+                Allow List
             </a>
             
         
@@ -910,21 +910,6 @@
         
     </li>
     
-
-    <li>
-        
-            <a class="" href="../../../reference/cordova-plugin-whitelist/index.html">
-                Whitelist
-            </a>
-            
-        
-
-        
-        
-
-        
-    </li>
-    
 </ul>
 
         
@@ -1104,8 +1089,8 @@
 
 
 <li>
-    <a class="" href="../../../guide/appdev/whitelist/index.html">
-        Whitelisting
+    <a class="" href="../../../guide/appdev/allowlist/index.html">
+        Allow List
     </a>
 </li>
 
@@ -1370,15 +1355,6 @@
     </a>
 </li>
 
-
-
-
-<li>
-    <a class="" href="../../../reference/cordova-plugin-whitelist/index.html">
-        Whitelist
-    </a>
-</li>
-
 
 
 

Modified: cordova/site/public/docs/en/dev/guide/support/index.html
URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/guide/support/index.html?rev=1884020&r1=1884019&r2=1884020&view=diff
==============================================================================
--- cordova/site/public/docs/en/dev/guide/support/index.html (original)
+++ cordova/site/public/docs/en/dev/guide/support/index.html Wed Dec  2 09:23:53 2020
@@ -420,8 +420,8 @@
 
     <li>
         
-            <a class="" href="../../guide/appdev/whitelist/index.html">
-                Whitelisting
+            <a class="" href="../../guide/appdev/allowlist/index.html">
+                Allow List
             </a>
             
         
@@ -912,21 +912,6 @@
         
     </li>
     
-
-    <li>
-        
-            <a class="" href="../../reference/cordova-plugin-whitelist/index.html">
-                Whitelist
-            </a>
-            
-        
-
-        
-        
-
-        
-    </li>
-    
 </ul>
 
         
@@ -1106,8 +1091,8 @@
 
 
 <li>
-    <a class="" href="../../guide/appdev/whitelist/index.html">
-        Whitelisting
+    <a class="" href="../../guide/appdev/allowlist/index.html">
+        Allow List
     </a>
 </li>
 
@@ -1372,15 +1357,6 @@
     </a>
 </li>
 
-
-
-
-<li>
-    <a class="" href="../../reference/cordova-plugin-whitelist/index.html">
-        Whitelist
-    </a>
-</li>
-
 
 
 

Modified: cordova/site/public/docs/en/dev/index.html
URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/index.html?rev=1884020&r1=1884019&r2=1884020&view=diff
==============================================================================
--- cordova/site/public/docs/en/dev/index.html (original)
+++ cordova/site/public/docs/en/dev/index.html Wed Dec  2 09:23:53 2020
@@ -418,8 +418,8 @@
 
     <li>
         
-            <a class="" href="guide/appdev/whitelist/index.html">
-                Whitelisting
+            <a class="" href="guide/appdev/allowlist/index.html">
+                Allow List
             </a>
             
         
@@ -910,21 +910,6 @@
         
     </li>
     
-
-    <li>
-        
-            <a class="" href="reference/cordova-plugin-whitelist/index.html">
-                Whitelist
-            </a>
-            
-        
-
-        
-        
-
-        
-    </li>
-    
 </ul>
 
         
@@ -1104,8 +1089,8 @@
 
 
 <li>
-    <a class="" href="guide/appdev/whitelist/index.html">
-        Whitelisting
+    <a class="" href="guide/appdev/allowlist/index.html">
+        Allow List
     </a>
 </li>
 
@@ -1373,15 +1358,6 @@
 
 
 
-<li>
-    <a class="" href="reference/cordova-plugin-whitelist/index.html">
-        Whitelist
-    </a>
-</li>
-
-
-
-
 
 
 
@@ -2607,7 +2583,7 @@
             
 
             <li>
-                <h2><a href="guide/appdev/whitelist/index.html">Whitelisting</a></h2>
+                <h2><a href="guide/appdev/allowlist/index.html">Allow List</a></h2>
                 <span class="summary">Securely grant an application access to external resources.</span>
             </li>
             
@@ -2892,11 +2868,6 @@
                     <span class="summary">Vibrate the device.</span>
                 </li>
                 
-                <li>
-                    <h2><a href="reference/cordova-plugin-whitelist/index.html">Whitelist</a></h2>
-                    <span class="summary">Whitelist external content accessible by your app.</span>
-                </li>
-                
                 </ul>
             
         

Modified: cordova/site/public/docs/en/dev/platform_pinning/index.html
URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/platform_pinning/index.html?rev=1884020&r1=1884019&r2=1884020&view=diff
==============================================================================
--- cordova/site/public/docs/en/dev/platform_pinning/index.html (original)
+++ cordova/site/public/docs/en/dev/platform_pinning/index.html Wed Dec  2 09:23:53 2020
@@ -420,8 +420,8 @@
 
     <li>
         
-            <a class="" href="../guide/appdev/whitelist/index.html">
-                Whitelisting
+            <a class="" href="../guide/appdev/allowlist/index.html">
+                Allow List
             </a>
             
         
@@ -912,21 +912,6 @@
         
     </li>
     
-
-    <li>
-        
-            <a class="" href="../reference/cordova-plugin-whitelist/index.html">
-                Whitelist
-            </a>
-            
-        
-
-        
-        
-
-        
-    </li>
-    
 </ul>
 
         
@@ -1106,8 +1091,8 @@
 
 
 <li>
-    <a class="" href="../guide/appdev/whitelist/index.html">
-        Whitelisting
+    <a class="" href="../guide/appdev/allowlist/index.html">
+        Allow List
     </a>
 </li>
 
@@ -1372,15 +1357,6 @@
     </a>
 </li>
 
-
-
-
-<li>
-    <a class="" href="../reference/cordova-plugin-whitelist/index.html">
-        Whitelist
-    </a>
-</li>
-
 
 
 

Modified: cordova/site/public/docs/en/dev/platform_plugin_versioning_ref/index.html
URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/platform_plugin_versioning_ref/index.html?rev=1884020&r1=1884019&r2=1884020&view=diff
==============================================================================
--- cordova/site/public/docs/en/dev/platform_plugin_versioning_ref/index.html (original)
+++ cordova/site/public/docs/en/dev/platform_plugin_versioning_ref/index.html Wed Dec  2 09:23:53 2020
@@ -420,8 +420,8 @@
 
     <li>
         
-            <a class="" href="../guide/appdev/whitelist/index.html">
-                Whitelisting
+            <a class="" href="../guide/appdev/allowlist/index.html">
+                Allow List
             </a>
             
         
@@ -912,21 +912,6 @@
         
     </li>
     
-
-    <li>
-        
-            <a class="" href="../reference/cordova-plugin-whitelist/index.html">
-                Whitelist
-            </a>
-            
-        
-
-        
-        
-
-        
-    </li>
-    
 </ul>
 
         
@@ -1106,8 +1091,8 @@
 
 
 <li>
-    <a class="" href="../guide/appdev/whitelist/index.html">
-        Whitelisting
+    <a class="" href="../guide/appdev/allowlist/index.html">
+        Allow List
     </a>
 </li>
 
@@ -1372,15 +1357,6 @@
     </a>
 </li>
 
-
-
-
-<li>
-    <a class="" href="../reference/cordova-plugin-whitelist/index.html">
-        Whitelist
-    </a>
-</li>
-
 
 
 

Modified: cordova/site/public/docs/en/dev/plugin_ref/plugman.html
URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/plugin_ref/plugman.html?rev=1884020&r1=1884019&r2=1884020&view=diff
==============================================================================
--- cordova/site/public/docs/en/dev/plugin_ref/plugman.html (original)
+++ cordova/site/public/docs/en/dev/plugin_ref/plugman.html Wed Dec  2 09:23:53 2020
@@ -418,8 +418,8 @@
 
     <li>
         
-            <a class="" href="../guide/appdev/whitelist/index.html">
-                Whitelisting
+            <a class="" href="../guide/appdev/allowlist/index.html">
+                Allow List
             </a>
             
         
@@ -912,21 +912,6 @@
         
     </li>
     
-
-    <li>
-        
-            <a class="" href="../reference/cordova-plugin-whitelist/index.html">
-                Whitelist
-            </a>
-            
-        
-
-        
-        
-
-        
-    </li>
-    
 </ul>
 
         
@@ -1106,8 +1091,8 @@
 
 
 <li>
-    <a class="" href="../guide/appdev/whitelist/index.html">
-        Whitelisting
+    <a class="" href="../guide/appdev/allowlist/index.html">
+        Allow List
     </a>
 </li>
 
@@ -1372,15 +1357,6 @@
     </a>
 </li>
 
-
-
-
-<li>
-    <a class="" href="../reference/cordova-plugin-whitelist/index.html">
-        Whitelist
-    </a>
-</li>
-
 
 
 

Modified: cordova/site/public/docs/en/dev/plugin_ref/spec.html
URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/plugin_ref/spec.html?rev=1884020&r1=1884019&r2=1884020&view=diff
==============================================================================
--- cordova/site/public/docs/en/dev/plugin_ref/spec.html (original)
+++ cordova/site/public/docs/en/dev/plugin_ref/spec.html Wed Dec  2 09:23:53 2020
@@ -418,8 +418,8 @@
 
     <li>
         
-            <a class="" href="../guide/appdev/whitelist/index.html">
-                Whitelisting
+            <a class="" href="../guide/appdev/allowlist/index.html">
+                Allow List
             </a>
             
         
@@ -912,21 +912,6 @@
         
     </li>
     
-
-    <li>
-        
-            <a class="" href="../reference/cordova-plugin-whitelist/index.html">
-                Whitelist
-            </a>
-            
-        
-
-        
-        
-
-        
-    </li>
-    
 </ul>
 
         
@@ -1106,8 +1091,8 @@
 
 
 <li>
-    <a class="" href="../guide/appdev/whitelist/index.html">
-        Whitelisting
+    <a class="" href="../guide/appdev/allowlist/index.html">
+        Allow List
     </a>
 </li>
 
@@ -1372,15 +1357,6 @@
     </a>
 </li>
 
-
-
-
-<li>
-    <a class="" href="../reference/cordova-plugin-whitelist/index.html">
-        Whitelist
-    </a>
-</li>
-
 
 
 

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=1884020&r1=1884019&r2=1884020&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 Wed Dec  2 09:23:53 2020
@@ -418,8 +418,8 @@
 
     <li>
         
-            <a class="" href="../../guide/appdev/whitelist/index.html">
-                Whitelisting
+            <a class="" href="../../guide/appdev/allowlist/index.html">
+                Allow List
             </a>
             
         
@@ -912,21 +912,6 @@
         
     </li>
     
-
-    <li>
-        
-            <a class="" href="../../reference/cordova-plugin-whitelist/index.html">
-                Whitelist
-            </a>
-            
-        
-
-        
-        
-
-        
-    </li>
-    
 </ul>
 
         
@@ -1106,8 +1091,8 @@
 
 
 <li>
-    <a class="" href="../../guide/appdev/whitelist/index.html">
-        Whitelisting
+    <a class="" href="../../guide/appdev/allowlist/index.html">
+        Allow List
     </a>
 </li>
 
@@ -1372,15 +1357,6 @@
     </a>
 </li>
 
-
-
-
-<li>
-    <a class="" href="../../reference/cordova-plugin-whitelist/index.html">
-        Whitelist
-    </a>
-</li>
-
 
 
 

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=1884020&r1=1884019&r2=1884020&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 Wed Dec  2 09:23:53 2020
@@ -418,8 +418,8 @@
 
     <li>
         
-            <a class="" href="../../guide/appdev/whitelist/index.html">
-                Whitelisting
+            <a class="" href="../../guide/appdev/allowlist/index.html">
+                Allow List
             </a>
             
         
@@ -912,21 +912,6 @@
         
     </li>
     
-
-    <li>
-        
-            <a class="" href="../../reference/cordova-plugin-whitelist/index.html">
-                Whitelist
-            </a>
-            
-        
-
-        
-        
-
-        
-    </li>
-    
 </ul>
 
         
@@ -1106,8 +1091,8 @@
 
 
 <li>
-    <a class="" href="../../guide/appdev/whitelist/index.html">
-        Whitelisting
+    <a class="" href="../../guide/appdev/allowlist/index.html">
+        Allow List
     </a>
 </li>
 
@@ -1372,15 +1357,6 @@
     </a>
 </li>
 
-
-
-
-<li>
-    <a class="" href="../../reference/cordova-plugin-whitelist/index.html">
-        Whitelist
-    </a>
-</li>
-
 
 
 

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=1884020&r1=1884019&r2=1884020&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 Wed Dec  2 09:23:53 2020
@@ -418,8 +418,8 @@
 
     <li>
         
-            <a class="" href="../../guide/appdev/whitelist/index.html">
-                Whitelisting
+            <a class="" href="../../guide/appdev/allowlist/index.html">
+                Allow List
             </a>
             
         
@@ -912,21 +912,6 @@
         
     </li>
     
-
-    <li>
-        
-            <a class="" href="../../reference/cordova-plugin-whitelist/index.html">
-                Whitelist
-            </a>
-            
-        
-
-        
-        
-
-        
-    </li>
-    
 </ul>
 
         
@@ -1106,8 +1091,8 @@
 
 
 <li>
-    <a class="" href="../../guide/appdev/whitelist/index.html">
-        Whitelisting
+    <a class="" href="../../guide/appdev/allowlist/index.html">
+        Allow List
     </a>
 </li>
 
@@ -1372,15 +1357,6 @@
     </a>
 </li>
 
-
-
-
-<li>
-    <a class="" href="../../reference/cordova-plugin-whitelist/index.html">
-        Whitelist
-    </a>
-</li>
-
 
 
 

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=1884020&r1=1884019&r2=1884020&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 Wed Dec  2 09:23:53 2020
@@ -418,8 +418,8 @@
 
     <li>
         
-            <a class="" href="../../guide/appdev/whitelist/index.html">
-                Whitelisting
+            <a class="" href="../../guide/appdev/allowlist/index.html">
+                Allow List
             </a>
             
         
@@ -912,21 +912,6 @@
         
     </li>
     
-
-    <li>
-        
-            <a class="" href="../../reference/cordova-plugin-whitelist/index.html">
-                Whitelist
-            </a>
-            
-        
-
-        
-        
-
-        
-    </li>
-    
 </ul>
 
         
@@ -1106,8 +1091,8 @@
 
 
 <li>
-    <a class="" href="../../guide/appdev/whitelist/index.html">
-        Whitelisting
+    <a class="" href="../../guide/appdev/allowlist/index.html">
+        Allow List
     </a>
 </li>
 
@@ -1372,15 +1357,6 @@
     </a>
 </li>
 
-
-
-
-<li>
-    <a class="" href="../../reference/cordova-plugin-whitelist/index.html">
-        Whitelist
-    </a>
-</li>
-
 
 
 

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=1884020&r1=1884019&r2=1884020&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 Wed Dec  2 09:23:53 2020
@@ -418,8 +418,8 @@
 
     <li>
         
-            <a class="" href="../../guide/appdev/whitelist/index.html">
-                Whitelisting
+            <a class="" href="../../guide/appdev/allowlist/index.html">
+                Allow List
             </a>
             
         
@@ -912,21 +912,6 @@
         
     </li>
     
-
-    <li>
-        
-            <a class="" href="../../reference/cordova-plugin-whitelist/index.html">
-                Whitelist
-            </a>
-            
-        
-
-        
-        
-
-        
-    </li>
-    
 </ul>
 
         
@@ -1106,8 +1091,8 @@
 
 
 <li>
-    <a class="" href="../../guide/appdev/whitelist/index.html">
-        Whitelisting
+    <a class="" href="../../guide/appdev/allowlist/index.html">
+        Allow List
     </a>
 </li>
 
@@ -1372,15 +1357,6 @@
     </a>
 </li>
 
-
-
-
-<li>
-    <a class="" href="../../reference/cordova-plugin-whitelist/index.html">
-        Whitelist
-    </a>
-</li>
-
 
 
 

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=1884020&r1=1884019&r2=1884020&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 Wed Dec  2 09:23:53 2020
@@ -418,8 +418,8 @@
 
     <li>
         
-            <a class="" href="../../guide/appdev/whitelist/index.html">
-                Whitelisting
+            <a class="" href="../../guide/appdev/allowlist/index.html">
+                Allow List
             </a>
             
         
@@ -912,21 +912,6 @@
         
     </li>
     
-
-    <li>
-        
-            <a class="" href="../../reference/cordova-plugin-whitelist/index.html">
-                Whitelist
-            </a>
-            
-        
-
-        
-        
-
-        
-    </li>
-    
 </ul>
 
         
@@ -1106,8 +1091,8 @@
 
 
 <li>
-    <a class="" href="../../guide/appdev/whitelist/index.html">
-        Whitelisting
+    <a class="" href="../../guide/appdev/allowlist/index.html">
+        Allow List
     </a>
 </li>
 
@@ -1372,15 +1357,6 @@
     </a>
 </li>
 
-
-
-
-<li>
-    <a class="" href="../../reference/cordova-plugin-whitelist/index.html">
-        Whitelist
-    </a>
-</li>
-
 
 
 

Modified: cordova/site/public/docs/en/dev/reference/cordova-plugin-geolocation/index.html
URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/reference/cordova-plugin-geolocation/index.html?rev=1884020&r1=1884019&r2=1884020&view=diff
==============================================================================
--- cordova/site/public/docs/en/dev/reference/cordova-plugin-geolocation/index.html (original)
+++ cordova/site/public/docs/en/dev/reference/cordova-plugin-geolocation/index.html Wed Dec  2 09:23:53 2020
@@ -418,8 +418,8 @@
 
     <li>
         
-            <a class="" href="../../guide/appdev/whitelist/index.html">
-                Whitelisting
+            <a class="" href="../../guide/appdev/allowlist/index.html">
+                Allow List
             </a>
             
         
@@ -912,21 +912,6 @@
         
     </li>
     
-
-    <li>
-        
-            <a class="" href="../../reference/cordova-plugin-whitelist/index.html">
-                Whitelist
-            </a>
-            
-        
-
-        
-        
-
-        
-    </li>
-    
 </ul>
 
         
@@ -1106,8 +1091,8 @@
 
 
 <li>
-    <a class="" href="../../guide/appdev/whitelist/index.html">
-        Whitelisting
+    <a class="" href="../../guide/appdev/allowlist/index.html">
+        Allow List
     </a>
 </li>
 
@@ -1372,15 +1357,6 @@
     </a>
 </li>
 
-
-
-
-<li>
-    <a class="" href="../../reference/cordova-plugin-whitelist/index.html">
-        Whitelist
-    </a>
-</li>
-
 
 
 

Modified: cordova/site/public/docs/en/dev/reference/cordova-plugin-inappbrowser/index.html
URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/reference/cordova-plugin-inappbrowser/index.html?rev=1884020&r1=1884019&r2=1884020&view=diff
==============================================================================
--- cordova/site/public/docs/en/dev/reference/cordova-plugin-inappbrowser/index.html (original)
+++ cordova/site/public/docs/en/dev/reference/cordova-plugin-inappbrowser/index.html Wed Dec  2 09:23:53 2020
@@ -418,8 +418,8 @@
 
     <li>
         
-            <a class="" href="../../guide/appdev/whitelist/index.html">
-                Whitelisting
+            <a class="" href="../../guide/appdev/allowlist/index.html">
+                Allow List
             </a>
             
         
@@ -912,21 +912,6 @@
         
     </li>
     
-
-    <li>
-        
-            <a class="" href="../../reference/cordova-plugin-whitelist/index.html">
-                Whitelist
-            </a>
-            
-        
-
-        
-        
-
-        
-    </li>
-    
 </ul>
 
         
@@ -1106,8 +1091,8 @@
 
 
 <li>
-    <a class="" href="../../guide/appdev/whitelist/index.html">
-        Whitelisting
+    <a class="" href="../../guide/appdev/allowlist/index.html">
+        Allow List
     </a>
 </li>
 
@@ -1372,15 +1357,6 @@
     </a>
 </li>
 
-
-
-
-<li>
-    <a class="" href="../../reference/cordova-plugin-whitelist/index.html">
-        Whitelist
-    </a>
-</li>
-
 
 
 

Modified: cordova/site/public/docs/en/dev/reference/cordova-plugin-media-capture/index.html
URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/reference/cordova-plugin-media-capture/index.html?rev=1884020&r1=1884019&r2=1884020&view=diff
==============================================================================
--- cordova/site/public/docs/en/dev/reference/cordova-plugin-media-capture/index.html (original)
+++ cordova/site/public/docs/en/dev/reference/cordova-plugin-media-capture/index.html Wed Dec  2 09:23:53 2020
@@ -418,8 +418,8 @@
 
     <li>
         
-            <a class="" href="../../guide/appdev/whitelist/index.html">
-                Whitelisting
+            <a class="" href="../../guide/appdev/allowlist/index.html">
+                Allow List
             </a>
             
         
@@ -912,21 +912,6 @@
         
     </li>
     
-
-    <li>
-        
-            <a class="" href="../../reference/cordova-plugin-whitelist/index.html">
-                Whitelist
-            </a>
-            
-        
-
-        
-        
-
-        
-    </li>
-    
 </ul>
 
         
@@ -1106,8 +1091,8 @@
 
 
 <li>
-    <a class="" href="../../guide/appdev/whitelist/index.html">
-        Whitelisting
+    <a class="" href="../../guide/appdev/allowlist/index.html">
+        Allow List
     </a>
 </li>
 
@@ -1372,15 +1357,6 @@
     </a>
 </li>
 
-
-
-
-<li>
-    <a class="" href="../../reference/cordova-plugin-whitelist/index.html">
-        Whitelist
-    </a>
-</li>
-
 
 
 

Modified: cordova/site/public/docs/en/dev/reference/cordova-plugin-media/index.html
URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/reference/cordova-plugin-media/index.html?rev=1884020&r1=1884019&r2=1884020&view=diff
==============================================================================
--- cordova/site/public/docs/en/dev/reference/cordova-plugin-media/index.html (original)
+++ cordova/site/public/docs/en/dev/reference/cordova-plugin-media/index.html Wed Dec  2 09:23:53 2020
@@ -418,8 +418,8 @@
 
     <li>
         
-            <a class="" href="../../guide/appdev/whitelist/index.html">
-                Whitelisting
+            <a class="" href="../../guide/appdev/allowlist/index.html">
+                Allow List
             </a>
             
         
@@ -912,21 +912,6 @@
         
     </li>
     
-
-    <li>
-        
-            <a class="" href="../../reference/cordova-plugin-whitelist/index.html">
-                Whitelist
-            </a>
-            
-        
-
-        
-        
-
-        
-    </li>
-    
 </ul>
 
         
@@ -1106,8 +1091,8 @@
 
 
 <li>
-    <a class="" href="../../guide/appdev/whitelist/index.html">
-        Whitelisting
+    <a class="" href="../../guide/appdev/allowlist/index.html">
+        Allow List
     </a>
 </li>
 
@@ -1372,15 +1357,6 @@
     </a>
 </li>
 
-
-
-
-<li>
-    <a class="" href="../../reference/cordova-plugin-whitelist/index.html">
-        Whitelist
-    </a>
-</li>
-
 
 
 

Modified: cordova/site/public/docs/en/dev/reference/cordova-plugin-network-information/index.html
URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/reference/cordova-plugin-network-information/index.html?rev=1884020&r1=1884019&r2=1884020&view=diff
==============================================================================
--- cordova/site/public/docs/en/dev/reference/cordova-plugin-network-information/index.html (original)
+++ cordova/site/public/docs/en/dev/reference/cordova-plugin-network-information/index.html Wed Dec  2 09:23:53 2020
@@ -418,8 +418,8 @@
 
     <li>
         
-            <a class="" href="../../guide/appdev/whitelist/index.html">
-                Whitelisting
+            <a class="" href="../../guide/appdev/allowlist/index.html">
+                Allow List
             </a>
             
         
@@ -912,21 +912,6 @@
         
     </li>
     
-
-    <li>
-        
-            <a class="" href="../../reference/cordova-plugin-whitelist/index.html">
-                Whitelist
-            </a>
-            
-        
-
-        
-        
-
-        
-    </li>
-    
 </ul>
 
         
@@ -1106,8 +1091,8 @@
 
 
 <li>
-    <a class="" href="../../guide/appdev/whitelist/index.html">
-        Whitelisting
+    <a class="" href="../../guide/appdev/allowlist/index.html">
+        Allow List
     </a>
 </li>
 
@@ -1372,15 +1357,6 @@
     </a>
 </li>
 
-
-
-
-<li>
-    <a class="" href="../../reference/cordova-plugin-whitelist/index.html">
-        Whitelist
-    </a>
-</li>
-
 
 
 

Modified: cordova/site/public/docs/en/dev/reference/cordova-plugin-screen-orientation/index.html
URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/reference/cordova-plugin-screen-orientation/index.html?rev=1884020&r1=1884019&r2=1884020&view=diff
==============================================================================
--- cordova/site/public/docs/en/dev/reference/cordova-plugin-screen-orientation/index.html (original)
+++ cordova/site/public/docs/en/dev/reference/cordova-plugin-screen-orientation/index.html Wed Dec  2 09:23:53 2020
@@ -418,8 +418,8 @@
 
     <li>
         
-            <a class="" href="../../guide/appdev/whitelist/index.html">
-                Whitelisting
+            <a class="" href="../../guide/appdev/allowlist/index.html">
+                Allow List
             </a>
             
         
@@ -912,21 +912,6 @@
         
     </li>
     
-
-    <li>
-        
-            <a class="" href="../../reference/cordova-plugin-whitelist/index.html">
-                Whitelist
-            </a>
-            
-        
-
-        
-        
-
-        
-    </li>
-    
 </ul>
 
         
@@ -1106,8 +1091,8 @@
 
 
 <li>
-    <a class="" href="../../guide/appdev/whitelist/index.html">
-        Whitelisting
+    <a class="" href="../../guide/appdev/allowlist/index.html">
+        Allow List
     </a>
 </li>
 
@@ -1372,15 +1357,6 @@
     </a>
 </li>
 
-
-
-
-<li>
-    <a class="" href="../../reference/cordova-plugin-whitelist/index.html">
-        Whitelist
-    </a>
-</li>
-
 
 
 

Modified: cordova/site/public/docs/en/dev/reference/cordova-plugin-splashscreen/index.html
URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/reference/cordova-plugin-splashscreen/index.html?rev=1884020&r1=1884019&r2=1884020&view=diff
==============================================================================
--- cordova/site/public/docs/en/dev/reference/cordova-plugin-splashscreen/index.html (original)
+++ cordova/site/public/docs/en/dev/reference/cordova-plugin-splashscreen/index.html Wed Dec  2 09:23:53 2020
@@ -418,8 +418,8 @@
 
     <li>
         
-            <a class="" href="../../guide/appdev/whitelist/index.html">
-                Whitelisting
+            <a class="" href="../../guide/appdev/allowlist/index.html">
+                Allow List
             </a>
             
         
@@ -912,21 +912,6 @@
         
     </li>
     
-
-    <li>
-        
-            <a class="" href="../../reference/cordova-plugin-whitelist/index.html">
-                Whitelist
-            </a>
-            
-        
-
-        
-        
-
-        
-    </li>
-    
 </ul>
 
         
@@ -1106,8 +1091,8 @@
 
 
 <li>
-    <a class="" href="../../guide/appdev/whitelist/index.html">
-        Whitelisting
+    <a class="" href="../../guide/appdev/allowlist/index.html">
+        Allow List
     </a>
 </li>
 
@@ -1372,15 +1357,6 @@
     </a>
 </li>
 
-
-
-
-<li>
-    <a class="" href="../../reference/cordova-plugin-whitelist/index.html">
-        Whitelist
-    </a>
-</li>
-
 
 
 

Modified: cordova/site/public/docs/en/dev/reference/cordova-plugin-statusbar/index.html
URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/reference/cordova-plugin-statusbar/index.html?rev=1884020&r1=1884019&r2=1884020&view=diff
==============================================================================
--- cordova/site/public/docs/en/dev/reference/cordova-plugin-statusbar/index.html (original)
+++ cordova/site/public/docs/en/dev/reference/cordova-plugin-statusbar/index.html Wed Dec  2 09:23:53 2020
@@ -418,8 +418,8 @@
 
     <li>
         
-            <a class="" href="../../guide/appdev/whitelist/index.html">
-                Whitelisting
+            <a class="" href="../../guide/appdev/allowlist/index.html">
+                Allow List
             </a>
             
         
@@ -912,21 +912,6 @@
         
     </li>
     
-
-    <li>
-        
-            <a class="" href="../../reference/cordova-plugin-whitelist/index.html">
-                Whitelist
-            </a>
-            
-        
-
-        
-        
-
-        
-    </li>
-    
 </ul>
 
         
@@ -1106,8 +1091,8 @@
 
 
 <li>
-    <a class="" href="../../guide/appdev/whitelist/index.html">
-        Whitelisting
+    <a class="" href="../../guide/appdev/allowlist/index.html">
+        Allow List
     </a>
 </li>
 
@@ -1372,15 +1357,6 @@
     </a>
 </li>
 
-
-
-
-<li>
-    <a class="" href="../../reference/cordova-plugin-whitelist/index.html">
-        Whitelist
-    </a>
-</li>
-
 
 
 

Modified: cordova/site/public/docs/en/dev/reference/cordova-plugin-vibration/index.html
URL: http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/reference/cordova-plugin-vibration/index.html?rev=1884020&r1=1884019&r2=1884020&view=diff
==============================================================================
--- cordova/site/public/docs/en/dev/reference/cordova-plugin-vibration/index.html (original)
+++ cordova/site/public/docs/en/dev/reference/cordova-plugin-vibration/index.html Wed Dec  2 09:23:53 2020
@@ -418,8 +418,8 @@
 
     <li>
         
-            <a class="" href="../../guide/appdev/whitelist/index.html">
-                Whitelisting
+            <a class="" href="../../guide/appdev/allowlist/index.html">
+                Allow List
             </a>
             
         
@@ -912,21 +912,6 @@
         
     </li>
     
-
-    <li>
-        
-            <a class="" href="../../reference/cordova-plugin-whitelist/index.html">
-                Whitelist
-            </a>
-            
-        
-
-        
-        
-
-        
-    </li>
-    
 </ul>
 
         
@@ -1106,8 +1091,8 @@
 
 
 <li>
-    <a class="" href="../../guide/appdev/whitelist/index.html">
-        Whitelisting
+    <a class="" href="../../guide/appdev/allowlist/index.html">
+        Allow List
     </a>
 </li>
 
@@ -1372,15 +1357,6 @@
     </a>
 </li>
 
-
-
-
-<li>
-    <a class="" href="../../reference/cordova-plugin-whitelist/index.html">
-        Whitelist
-    </a>
-</li>
-
 
 
 

Modified: cordova/site/public/feed.xml
URL: http://svn.apache.org/viewvc/cordova/site/public/feed.xml?rev=1884020&r1=1884019&r2=1884020&view=diff
==============================================================================
--- cordova/site/public/feed.xml (original)
+++ cordova/site/public/feed.xml Wed Dec  2 09:23:53 2020
@@ -6,8 +6,8 @@
 </description>
     <link>https://cordova.apache.org/</link>
     <atom:link href="https://cordova.apache.org/feed.xml" rel="self" type="application/rss+xml"/>
-    <pubDate>Wed, 02 Dec 2020 08:25:34 +0000</pubDate>
-    <lastBuildDate>Wed, 02 Dec 2020 08:25:34 +0000</lastBuildDate>
+    <pubDate>Wed, 02 Dec 2020 09:05:20 +0000</pubDate>
+    <lastBuildDate>Wed, 02 Dec 2020 09:05:20 +0000</lastBuildDate>
     <generator>Jekyll v2.5.3</generator>
     
       <item>



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org