Author: janpio
Date: Wed Mar 18 09:30:59 2020
New Revision: 1875352
URL: http://svn.apache.org/viewvc?rev=1875352&view=rev
Log:
Updated docs
Added:
cordova/site/public/howto/2020/
cordova/site/public/howto/2020/03/
cordova/site/public/howto/2020/03/18/
cordova/site/public/howto/2020/03/18/wkwebviewonly.html
Modified:
cordova/site/public/announcements/2020/01/08/inappbrowser-release-3.2.0.html
cordova/site/public/blog/index.html
cordova/site/public/feed.xml
cordova/site/public/sitemap.xml
cordova/site/public/static/js/index.js
Modified:
cordova/site/public/announcements/2020/01/08/inappbrowser-release-3.2.0.html
URL:
http://svn.apache.org/viewvc/cordova/site/public/announcements/2020/01/08/inappbrowser-release-3.2.0.html?rev=1875352&r1=1875351&r2=1875352&view=diff
==============================================================================
---
cordova/site/public/announcements/2020/01/08/inappbrowser-release-3.2.0.html
(original)
+++
cordova/site/public/announcements/2020/01/08/inappbrowser-release-3.2.0.html
Wed Mar 18 09:30:59 2020
@@ -176,6 +176,26 @@
</div>
<div class="col-sm-6">
+ <a href="/howto/2020/03/18/wkwebviewonly.html">Next</a>
+ <br>
+ <br>
+ <a class="title"
href="/howto/2020/03/18/wkwebviewonly.html">How To Use 'WKWebViewOnly'</a>
+ <div class="date"> 18 Mar 2020 - By Niklas Merz </div>
+ <p class="content">
+ <!--
+ NOTE:
+ the markdownify filter is used here
+ because posts are rendered in sequence;
+ that is, the next post's content isn't
+ yet rendered at the time that this post
+ is being rendered, so page.next.excerpt
+ is still in Markdown and not HTML
+
+ Reference:
https://github.com/jekyll/jekyll/issues/2860
+ -->
+ Apple started to reject apps with UIWebView
references. You will need to...
+ </p>
+
</div>
</div>
</footer>
Modified: cordova/site/public/blog/index.html
URL:
http://svn.apache.org/viewvc/cordova/site/public/blog/index.html?rev=1875352&r1=1875351&r2=1875352&view=diff
==============================================================================
--- cordova/site/public/blog/index.html (original)
+++ cordova/site/public/blog/index.html Wed Mar 18 09:30:59 2020
@@ -123,6 +123,38 @@
<li>
<header>
+ <div class="adorner" blogTime="Wed, 18 Mar 2020 00:00:00
+0000"></div>
+ <h2 class="title">
+ <a href="/howto/2020/03/18/wkwebviewonly.html">How To
Use 'WKWebViewOnly'</a>
+ </h2>
+ <div class="details">
+ <span class="date">18 Mar 2020</span>
+ - by
+ <span class="author">
+
+ <a
href="https://twitter.com/niklasmaerz">Niklas Merz</a>
+
+ </span>
+ <a class="comment"
href="/howto/2020/03/18/wkwebviewonly.html#disqus_thread"></a>
+ </div>
+ </header>
+ <section class="post-excerpt">
+ <p><p>Apple started to reject apps with
<code>UIWebView</code> references. You will need to update your app to fix this
and this post sums up the required steps.</p>
+
+<p>This should solve the warning after uploading the app to App Store
connect:</p>
+
+<blockquote>
+<p>ITMS-90809: Deprecated API Usage - Apple will stop accepting submissions of
apps that use UIWebView APIs.</p>
+</blockquote>
+
+<p>A new <code>preference</code> flag <code>WKWebViewOnly</code> was
introduced to remove all <code>UIWebView</code> references from Cordova's
code during compile-time. It is recommended to upgrade the
<code>cordova-ios</code> platform to version <code>5.1.1</code>.</p>
+</p>
+ <div><a
href="/howto/2020/03/18/wkwebviewonly.html">More...</a></div>
+ </section>
+ </li>
+
+ <li>
+ <header>
<div class="adorner" blogTime="Wed, 08 Jan 2020 00:00:00
+0000"></div>
<h2 class="title">
<a
href="/announcements/2020/01/08/inappbrowser-release-3.2.0.html">Cordova Plugin
InAppBrowser 3.2.0 Released!</a>
@@ -9182,7 +9214,7 @@ window.twttr = (function(d, s, id) {
<script>
window.onload = function(){
setTimeout(function(){
- var lastPostTime = new Date("Wed, 08 Jan 2020 00:00:00
+0000").getTime();
+ var lastPostTime = new Date("Wed, 18 Mar 2020 00:00:00
+0000").getTime();
setCookie("visitTime", lastPostTime, 365);
}, 2000);
};
Modified: cordova/site/public/feed.xml
URL:
http://svn.apache.org/viewvc/cordova/site/public/feed.xml?rev=1875352&r1=1875351&r2=1875352&view=diff
==============================================================================
--- cordova/site/public/feed.xml (original)
+++ cordova/site/public/feed.xml Wed Mar 18 09:30:59 2020
@@ -6,11 +6,70 @@
</description>
<link>https://cordova.apache.org/</link>
<atom:link href="https://cordova.apache.org/feed.xml" rel="self"
type="application/rss+xml"/>
- <pubDate>Sun, 15 Mar 2020 17:13:37 +0000</pubDate>
- <lastBuildDate>Sun, 15 Mar 2020 17:13:37 +0000</lastBuildDate>
+ <pubDate>Wed, 18 Mar 2020 09:11:02 +0000</pubDate>
+ <lastBuildDate>Wed, 18 Mar 2020 09:11:02 +0000</lastBuildDate>
<generator>Jekyll v2.5.3</generator>
<item>
+ <title>How To Use 'WKWebViewOnly'</title>
+ <description><p>Apple started to reject apps with
<code>UIWebView</code> references. You will need to update your app
to fix this and this post sums up the required steps.</p>
+
+<p>This should solve the warning after uploading the app to App Store
connect:</p>
+
+<blockquote>
+<p>ITMS-90809: Deprecated API Usage - Apple will stop accepting
submissions of apps that use UIWebView APIs.</p>
+</blockquote>
+
+<p>A new <code>preference</code> flag
<code>WKWebViewOnly</code> was introduced to remove all
<code>UIWebView</code> references from Cordova&#39;s code
during compile-time. It is recommended to upgrade the
<code>cordova-ios</code> platform to version
<code>5.1.1</code>.</p>
+
+<!--more-->
+
+<h2>Use a WKWebView plugin.</h2>
+
+<p>The following example uses the
<code>[cordova-plugin-wkwebview-engine](https://github.com/apache/cordova-plugin-wkwebview-engine)</code>
plugin:</p>
+
+<ul>
+<li>Add plugin <code>cordova-plugin-wkwebview-engine</code>,
preferably the latest version <strong>1.2.1</strong></li>
+<li>Add <code>preference</code> attribute
<code>CordovaWebViewEngine</code> to the
<code>config.xml</code>.</li>
+<li>Add <code>feature</code> attribute
<code>CDVWKWebViewEngine</code> to the
<code>config.xml</code>.</li>
+<li>Add <code>preference</code>
<code>WKWebViewOnly</code> to the
<code>config.xml</code>.</li>
+</ul>
+
+<p><strong>Example <code>config.xml</code> with
<code>cordova-plugin-wkwebview-engine</code>
plugin</strong></p>
+<div class="highlight"><pre><code
class="language-xml" data-lang="xml"><span
class="nt">&lt;platform</span> <span
class="na">name=</span><span
class="s">"ios"</span><span
class="nt">&gt;</span>
+ <span class="nt">&lt;preference</span> <span
class="na">name=</span><span
class="s">"WKWebViewOnly"</span> <span
class="na">value=</span><span
class="s">"true"</span> <span
class="nt">/&gt;</span>
+
+ <span class="nt">&lt;feature</span> <span
class="na">name=</span><span
class="s">"CDVWKWebViewEngine"</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">"CDVWKWebViewEngine"</span> <span
class="nt">/&gt;</span>
+ <span class="nt">&lt;/feature&gt;</span>
+
+ <span class="nt">&lt;preference</span> <span
class="na">name=</span><span
class="s">"CordovaWebViewEngine"</span> <span
class="na">value=</span><span
class="s">"CDVWKWebViewEngine"</span> <span
class="nt">/&gt;</span>
+<span class="nt">&lt;/platform&gt;</span>
+</code></pre></div>
+<h2>Still getting the warning?</h2>
+
+<p>If you are still getting the warning, it is most likely one or more
plugins in your project are still references
<code>UIWebView</code>. You will need to identify which plugins and
contact those plugin&#39;s developers through their support channel
(plugin&#39;s repo). They will need to fix their plugins by either remove
the references or wrap them with the new flag.</p>
+
+<h2>Using other WKWebView plugin</h2>
+
+<p>There are alternatives to the official WKWebView plugin from the
examples above. Make sure they have been updated and use the latest version. If
you have any issues or usage questions with their plugins, please read their
docs and request help through their support channels.</p>
+
+<h2>Future Roadmap</h2>
+
+<p>The next major release of <code>cordova-ios</code> will
remove all references of <code>UIWebView</code> from code. The flag
will also be removed in the next major release as
<code>WKWebView</code> will be Cordova&#39;s default webview.
There is currently <em>no ETA</em> for the next major
release.</p>
+</description>
+ <pubDate>Wed, 18 Mar 2020 00:00:00 +0000</pubDate>
+
<link>https://cordova.apache.org/howto/2020/03/18/wkwebviewonly.html</link>
+ <guid
isPermaLink="true">https://cordova.apache.org/howto/2020/03/18/wkwebviewonly.html</guid>
+
+ <category>ios</category>
+
+
+ <category>howto</category>
+
+ </item>
+
+ <item>
<title>Cordova Plugin InAppBrowser 3.2.0 Released!</title>
<description><p>We are happy to announce that we have just
released an update to <code>cordova-plugin-inappbrowser</code>!
</p>
@@ -459,32 +518,5 @@ cordova platform add [email protected]
</item>
- <item>
- <title>Cordova-Common Release</title>
- <description><p>We are happy to announce that
<code>cordova-common 3.2.0</code> was released in June 2019. This
is one of the libraries used behind-the-scenes by nearly all of the Cordova
tooling and provides utilities for dealing with things like
<code>config.xml</code> parsing.</p>
-
-<h2>Release Highlights</h2>
-
-<ul>
-<li>(ios) <code>plist</code> document not indented with tabs
(<a
href="https://github.com/apache/cordova-common/pull/69">#69</a>)</li>
-<li>Update <code>fs-extra</code> to v8 (<a
href="https://github.com/apache/cordova-common/pull/70">#70</a>)</li>
-<li>Add example usage of <code>podspec</code> declarations
(<a
href="https://github.com/apache/cordova-common/pull/67">#67</a>)</li>
-<li>implement <code>setPreference</code> and
<code>setPlatformPreference</code> (<a
href="https://github.com/apache/cordova-common/pull/63">#63</a>)</li>
-<li>Catch leaked exceptions in <code>superspawn</code> and
convert them to rejections (<a
href="https://github.com/apache/cordova-common/pull/66">#66</a>)</li>
-</ul>
-</description>
- <pubDate>Fri, 14 Jun 2019 00:00:00 +0000</pubDate>
-
<link>https://cordova.apache.org/news/2019/06/14/common-release-3.2.0.html</link>
- <guid
isPermaLink="true">https://cordova.apache.org/news/2019/06/14/common-release-3.2.0.html</guid>
-
- <category>release</category>
-
- <category>tools</category>
-
-
- <category>news</category>
-
- </item>
-
</channel>
</rss>
Added: cordova/site/public/howto/2020/03/18/wkwebviewonly.html
URL:
http://svn.apache.org/viewvc/cordova/site/public/howto/2020/03/18/wkwebviewonly.html?rev=1875352&view=auto
==============================================================================
--- cordova/site/public/howto/2020/03/18/wkwebviewonly.html (added)
+++ cordova/site/public/howto/2020/03/18/wkwebviewonly.html Wed Mar 18 09:30:59
2020
@@ -0,0 +1,318 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="utf-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+ <meta name="format-detection" content="telephone=no">
+ <meta name="viewport" content="user-scalable=no, initial-scale=1,
maximum-scale=1, minimum-scale=1, width=device-width" />
+ <meta name="description" content="Apple started to reject apps with
UIWebView references. You will need to update your app to fix this and this
post sums up the required steps.This should sol...">
+
+ <title>
+
+
+ How To Use 'WKWebViewOnly' - Apache Cordova
+
+
+ </title>
+
+ <link rel="SHORTCUT ICON" href="/favicon.ico"/>
+
+
+
+
+
+
+ <link rel="canonical"
href="https://cordova.apache.org/howto/2020/03/18/wkwebviewonly.html">
+
+ <!-- CSS -->
+ <link rel="stylesheet" type="text/css" href="/static/css/main.css">
+ <link rel="stylesheet" type="text/css" href="/static/css/lib/syntax.css">
+ <!-- Algolia Search CSS -->
+ <link rel="stylesheet"
href="https://cdn.jsdelivr.net/docsearch.js/1/docsearch.min.css" />
+
+ <!-- Fonts -->
+ <!-- For attribution information, see www/attributions.html -->
+ <link
href='https://fonts.googleapis.com/css?family=Raleway:700,400,300,700italic,400italic,300italic'
rel='stylesheet' type='text/css'>
+
+ <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media
queries -->
+ <!--[if lt IE 9]>
+ <script
src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
+ <script
src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
+ <![endif]-->
+ <script type="text/javascript">
+ var disqus_developer = 1; // this would set it to developer mode
+ </script>
+
+ <!-- JS -->
+ <script defer type="text/javascript"
src="/static/js/lib/jquery-2.1.1.min.js"></script>
+ <script defer type="text/javascript"
src="/static/js/lib/bootstrap.min.js"></script>
+
+ <script>
+
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
+ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new
Date();a=s.createElement(o),
+
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
+
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
+ ga('create', 'UA-64283057-3', 'auto');
+ ga('send', 'pageview');
+</script>
+
+</head>
+
+<body>
+ <header>
+ <a class="scroll-point pt-top" name="top"></a>
+ <nav class="navbar navbar-inverse navbar-fixed-top">
+ <div class="container-fluid">
+ <div class="navbar-header">
+ <button type="button" class="navbar-toggle collapsed"
data-toggle="collapse" data-target="#navbar" aria-expanded="false"
aria-controls="navbar">
+ <span class="sr-only">Toggle navigation</span>
+ <span class="icon-bar"></span>
+ <span class="icon-bar"></span>
+ <span class="icon-bar"></span>
+ </button>
+ <a class="navbar-brand" href="/"><img id="logo_top"
src="/static/img/cordova-logo-newbrand.svg"/></a>
+ </div>
+ <div id="navbar" class="navbar-collapse collapse">
+ <div class="nav_bar_center">
+ <ul class="nav navbar-nav">
+ <li >
+ <a href="/docs/en/latest/">Documentation</a>
+ </li>
+ <li >
+ <a href="/plugins">Plugins</a>
+ </li>
+ <li class="active">
+ <a href="/blog" id="blog_button">Blog<span
class="badge" id="new_blog_count"></span></a>
+ </li>
+ <li >
+ <a href="/contribute">Contribute</a>
+ </li>
+ <li>
+ <a href="/#getstarted">Get Started</a>
+ </li>
+ <li>
+ <form class="navbar-form navbar-right"
id="header-search-form" role="search">
+ <div class="input-group">
+
+
+
+ <input id="header-search-field"
type="text" placeholder="Search '9.x' docs..." class="form-control hidden-xs"
autocomplete="off">
+ </div>
+ </form>
+ </li>
+ </ul>
+ </div>
+ </div><!--/.navbar-collapse -->
+ </div>
+ </nav>
+ <div id="_fixed_navbar_spacer" style="padding-top:50px"></div>
+</header>
+
+<div class="page container">
+ <div class="blog">
+ <h1 class="blogHeader">
+ Blog
+ <span class="rss">
+ <img src="/static/img/subscribe.png"><a href="/feed.xml">RSS Feed</a>
+ </span>
+</h1>
+
+<div class="post">
+ <header>
+ <div class="title">How To Use 'WKWebViewOnly'</div>
+ <div class="author">By:
+
+ <a href="https://twitter.com/niklasmaerz">Niklas Merz</a>
+
+ </div>
+ <div class="date">18 Mar 2020</div>
+ </header>
+ <section>
+ <div>
+ <p>Apple started to reject apps with <code>UIWebView</code>
references. You will need to update your app to fix this and this post sums up
the required steps.</p>
+
+<p>This should solve the warning after uploading the app to App Store
connect:</p>
+
+<blockquote>
+<p>ITMS-90809: Deprecated API Usage - Apple will stop accepting submissions of
apps that use UIWebView APIs.</p>
+</blockquote>
+
+<p>A new <code>preference</code> flag <code>WKWebViewOnly</code> was
introduced to remove all <code>UIWebView</code> references from Cordova's
code during compile-time. It is recommended to upgrade the
<code>cordova-ios</code> platform to version <code>5.1.1</code>.</p>
+
+<!--more-->
+
+<h2>Use a WKWebView plugin.</h2>
+
+<p>The following example uses the
<code>[cordova-plugin-wkwebview-engine](https://github.com/apache/cordova-plugin-wkwebview-engine)</code>
plugin:</p>
+
+<ul>
+<li>Add plugin <code>cordova-plugin-wkwebview-engine</code>, preferably the
latest version <strong>1.2.1</strong></li>
+<li>Add <code>preference</code> attribute <code>CordovaWebViewEngine</code> to
the <code>config.xml</code>.</li>
+<li>Add <code>feature</code> attribute <code>CDVWKWebViewEngine</code> to the
<code>config.xml</code>.</li>
+<li>Add <code>preference</code> <code>WKWebViewOnly</code> to the
<code>config.xml</code>.</li>
+</ul>
+
+<p><strong>Example <code>config.xml</code> with
<code>cordova-plugin-wkwebview-engine</code> plugin</strong></p>
+<div class="highlight"><pre><code class="language-xml" data-lang="xml"><span
class="nt"><platform</span> <span class="na">name=</span><span
class="s">"ios"</span><span class="nt">></span>
+ <span class="nt"><preference</span> <span class="na">name=</span><span
class="s">"WKWebViewOnly"</span> <span class="na">value=</span><span
class="s">"true"</span> <span class="nt">/></span>
+
+ <span class="nt"><feature</span> <span class="na">name=</span><span
class="s">"CDVWKWebViewEngine"</span><span class="nt">></span>
+ <span class="nt"><param</span> <span class="na">name=</span><span
class="s">"ios-package"</span> <span class="na">value=</span><span
class="s">"CDVWKWebViewEngine"</span> <span class="nt">/></span>
+ <span class="nt"></feature></span>
+
+ <span class="nt"><preference</span> <span class="na">name=</span><span
class="s">"CordovaWebViewEngine"</span> <span class="na">value=</span><span
class="s">"CDVWKWebViewEngine"</span> <span class="nt">/></span>
+<span class="nt"></platform></span>
+</code></pre></div>
+<h2>Still getting the warning?</h2>
+
+<p>If you are still getting the warning, it is most likely one or more plugins
in your project are still references <code>UIWebView</code>. You will need to
identify which plugins and contact those plugin's developers through their
support channel (plugin's repo). They will need to fix their plugins by
either remove the references or wrap them with the new flag.</p>
+
+<h2>Using other WKWebView plugin</h2>
+
+<p>There are alternatives to the official WKWebView plugin from the examples
above. Make sure they have been updated and use the latest version. If you have
any issues or usage questions with their plugins, please read their docs and
request help through their support channels.</p>
+
+<h2>Future Roadmap</h2>
+
+<p>The next major release of <code>cordova-ios</code> will remove all
references of <code>UIWebView</code> from code. The flag will also be removed
in the next major release as <code>WKWebView</code> will be Cordova's
default webview. There is currently <em>no ETA</em> for the next major
release.</p>
+
+ </div>
+ </section>
+ <footer>
+ <div class="row">
+ <div class="col-sm-6">
+
+ <a
href="/announcements/2020/01/08/inappbrowser-release-3.2.0.html">Previous</a>
+ <br>
+ <br>
+ <a class="title"
href="/announcements/2020/01/08/inappbrowser-release-3.2.0.html">Cordova Plugin
InAppBrowser 3.2.0 Released!</a>
+ <div class="date"> 08 Jan 2020 - By Niklas Merz </div>
+ <p class="content">
+ We are happy to announce that we have just released an
update...
+ </p>
+
+ </div>
+ <div class="col-sm-6">
+
+ </div>
+ </div>
+ </footer>
+ <div class="disqus">
+ <div id="disqus_thread"></div>
+<script type="text/javascript">
+ /* * * CONFIGURATION VARIABLES * * */
+ var disqus_shortname = 'cordovablogs';
+
+ /* * * DON'T EDIT BELOW THIS LINE * * */
+ (function() {
+ var dsq = document.createElement('script'); dsq.type =
'text/javascript'; dsq.async = true;
+ dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
+ (document.getElementsByTagName('head')[0] ||
document.getElementsByTagName('body')[0]).appendChild(dsq);
+ })();
+</script>
+<noscript>Please enable JavaScript to view the <a
href="https://disqus.com/?ref_noscript" rel="nofollow">comments powered by
Disqus.</a></noscript>
+
+ </div>
+</div>
+
+</div>
+
+</div>
+
+<div class="blue-divider"></div>
+<footer>
+ <div class="container">
+ <div class="row">
+ <div class="col-sm-9">
+ <h1>More Resources</h1>
+ <div class="row">
+ <div class="col-sm-4">
+ <h2>General</h2>
+ <ul class="nav">
+ <li>
+ <a target="_blank"
href="https://projects.apache.org/project.html?cordova">Apache Project Page</a>
+ </li>
+ <li>
+ <a
href="http://www.apache.org/dyn/closer.cgi/cordova">Source Distribution</a>
+ </li>
+ <li>
+ <a target="_blank"
href="http://www.apache.org/licenses/LICENSE-2.0">License</a>
+ </li>
+ <li>
+ <a href="/artwork">Artwork</a>
+ </li>
+ </ul>
+ </div>
+ <div class="col-sm-4">
+ <h2>Development</h2>
+ <ul class="nav">
+ <li><a target="_blank"
href="https://github.com/apache?utf8=%E2%9C%93&q=cordova-">Source
Code</a></li>
+ <li><a target="_blank"
href="https://issues.apache.org/jira/browse/CB/">Issue Tracker</a></li>
+ <li><a target="_blank"
href="http://stackoverflow.com/questions/tagged/cordova">Stack Overflow</a></li>
+ <li><a href="/contact">Mailing List</a></li>
+ <li><a href="/contribute/nightly_builds.html">Nightly
builds</a></li>
+ </ul>
+ </div>
+ <div class="col-sm-4">
+ <h2>Apache Software Foundation</h2>
+ <ul class="nav">
+ <li>
+ <a target="_blank" href="http://www.apache.org/">About
ASF</a>
+ </li>
+ <li>
+ <a target="_blank"
href="http://www.apache.org/foundation/sponsorship.html">Become a Sponsor</a>
+ </li>
+ <li>
+ <a target="_blank"
href="http://www.apache.org/foundation/thanks.html">Thanks</a>
+ </li>
+ <li>
+ <a target="_blank"
href="http://www.apache.org/security/">Security</a>
+ </li>
+ </ul>
+ </div>
+ </div>
+ </div>
+ <div class="col-sm-3">
+ <h1>Contribute</h1>
+ <p style="padding-top:20px"><strong>Help Cordova move
forward!</strong></p>
+ <p>Report bugs, improve the docs, or contribute to the code.</p>
+ <a href="/contribute" class="btn btn-lg btn-primary">
+ Learn More
+ </a>
+ <p style="padding-top:20px"> <a
href="https://twitter.com/apachecordova" class="twitter-follow-button"
data-show-count="false">Follow @apachecordova</a></p>
+ <script async defer
src="https://slack-cordova-io.herokuapp.com/slackin.js"></script>
+ </div>
+</div>
+<p class="copyright_text">
+ Copyright © 2012, 2013, 2015 The Apache Software Foundation, Licensed
under the <a target="_blank"
href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version
2.0</a>.<br/>
+ Apache and the Apache feather logos are <a target="_blank"
href="http://www.apache.org/foundation/marks/list/">trademarks</a> of The
Apache Software Foundation.
+ <br/>
+ "Raleway" font used under license. For details see the <a
href="/attributions/">attributions page</a>.
+</p>
+
+ </div>
+</footer>
+
+
+ <script defer type="text/javascript" src="/static/js/index.js"></script>
+ <script defer type="text/javascript" src="/static/js/twitter.js"></script>
+
+
+
+
+
+
+
+
+<script type="text/javascript"
src="https://cdn.jsdelivr.net/docsearch.js/1/docsearch.min.js"></script>
+<script type="text/javascript">
+ docsearch({
+ apiKey: '0a916ab198bd93d031aa70611271e42e',
+ indexName: 'cordova',
+ inputSelector: '#header-search-field',
+ algoliaOptions: { 'facetFilters': ["version: 9.x", "language: en"] }
+ });
+</script>
+
+</body>
+</html>
Modified: cordova/site/public/sitemap.xml
URL:
http://svn.apache.org/viewvc/cordova/site/public/sitemap.xml?rev=1875352&r1=1875351&r2=1875352&view=diff
==============================================================================
--- cordova/site/public/sitemap.xml (original)
+++ cordova/site/public/sitemap.xml Wed Mar 18 09:30:59 2020
@@ -4,6 +4,11 @@
<!-- posts -->
<url>
+ <loc>https://cordova.apache.org/howto/2020/03/18/wkwebviewonly.html</loc>
+</url>
+
+
+<url>
<loc>https://cordova.apache.org/announcements/2020/01/08/inappbrowser-release-3.2.0.html</loc>
</url>
Modified: cordova/site/public/static/js/index.js
URL:
http://svn.apache.org/viewvc/cordova/site/public/static/js/index.js?rev=1875352&r1=1875351&r2=1875352&view=diff
==============================================================================
--- cordova/site/public/static/js/index.js (original)
+++ cordova/site/public/static/js/index.js Wed Mar 18 09:30:59 2020
@@ -77,6 +77,7 @@ function checkNotification() {
var dates = [];
if (lastVisit != "") {
+ dates.push('Wed, 18 Mar 2020 00:00:00 +0000');
dates.push('Wed, 08 Jan 2020 00:00:00 +0000');
dates.push('Mon, 06 Jan 2020 00:00:00 +0000');
dates.push('Tue, 24 Dec 2019 00:00:00 +0000');
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]