You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by er...@apache.org on 2019/03/23 16:40:18 UTC

svn commit: r1856121 [3/3] - in /cordova/site/public: ./ announcements/2019/03/18/ announcements/2019/03/22/ blog/ blog/2013/07/12/ blog/2013/08/13/ blog/releases/2013/07/24/ docs/en/dev/guide/platforms/electron/ news/2013/09/06/ static/js/

Modified: cordova/site/public/blog/releases/2013/07/24/cordova-3.html
URL: http://svn.apache.org/viewvc/cordova/site/public/blog/releases/2013/07/24/cordova-3.html?rev=1856121&r1=1856120&r2=1856121&view=diff
==============================================================================
--- cordova/site/public/blog/releases/2013/07/24/cordova-3.html (original)
+++ cordova/site/public/blog/releases/2013/07/24/cordova-3.html Sat Mar 23 16:40:18 2019
@@ -98,7 +98,7 @@
                                     
                                         
                                     
-                                    <input id="header-search-field" type="text" placeholder="Search '7.x' docs..." class="form-control hidden-xs" autocomplete="off">
+                                    <input id="header-search-field" type="text" placeholder="Search '8.x' docs..." class="form-control hidden-xs" autocomplete="off">
                                 </div>
                             </form>
                         </li>
@@ -317,7 +317,7 @@ plugman --platform android --project . -
             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/slackin.js"></script>
+        <script async defer src="https://slack-cordova-io.herokuapp.com/slackin.js"></script>
     </div>
 </div>
 <p class="copyright_text">
@@ -347,7 +347,7 @@ plugman --platform android --project . -
         apiKey: '0a916ab198bd93d031aa70611271e42e',
         indexName: 'cordova',
         inputSelector: '#header-search-field',
-        algoliaOptions: { 'facetFilters': ["version:  7.x", "language: en"] }
+        algoliaOptions: { 'facetFilters': ["version:  8.x", "language: en"] }
     });
 </script>
 

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=1856121&r1=1856120&r2=1856121&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 Sat Mar 23 16:40:18 2019
@@ -2516,12 +2516,15 @@
 
 <h3>Linux</h3>
 
-<p><strong>@todo Add Linux Requirements here.</strong></p>
+<ul>
+<li><strong>Python</strong> version 2.7.x. It is recommended to check your Python version since some distributions like CentOS 6.x still use Python 2.6.x.</li>
+</ul>
 
 <h3>Mac</h3>
 
 <ul>
-<li><p><strong>Xcode</strong>, the IDE for macOS, comes bundled with necessary software development tools to code signing and compiling native code for macOS.</p></li>
+<li><p><strong>Python</strong> version 2.7.x with support for TLS 1.2.</p></li>
+<li><p><strong>Xcode</strong>, the IDE for macOS, comes bundled with necessary software development tools to code signing and compiling native code for macOS. Version 8.2.1 or higher.</p></li>
 <li><p><strong>RedHat Build Support</strong></p>
 
 <ul>
@@ -2534,10 +2537,10 @@
 
 <h3>Windows</h3>
 
-<p><strong>@todo Review and Update Windows Requirements.</strong></p>
-
 <ul>
-<li><strong>PowerShell</strong>, for Windows 7 users, must be at version 3.0 or greater for <a href="https://www.electron.build/code-signing#windows">app signing</a>.</li>
+<li><p><strong>Python</strong> version 2.7.10 or higher.</p></li>
+<li><p><strong>PowerShell</strong>, for Windows 7 users, must be at version 3.0 or greater for <a href="https://www.electron.build/code-signing#windows">app signing</a>.</p></li>
+<li><p><strong>Debugging Tools</strong> for Windows of Windows SDK 10.0.15063.468, if you plan on creating a full distribution.</p></li>
 </ul>
 
 <h2>Quick Start</h2>
@@ -2550,8 +2553,8 @@ $ cordova platform add electron
 </code></pre></div>
 <h3>Preview a Project</h3>
 
-<p>It is not necessary to build the Electron application for previewing. Since the building process can be slow, it is recommended to pass in the <code>--no-build</code> flag to disable the build process when previewing.</p>
-<div class="highlight"><pre><code class="language-" data-lang="">$ cordova run electron --no-build
+<p>It is not necessary to build the Electron application for previewing. Since the building process can be slow, it is recommended to pass in the <code>--nobuild</code> flag to disable the build process when previewing.</p>
+<div class="highlight"><pre><code class="language-" data-lang="">$ cordova run electron --nobuild
 </code></pre></div>
 <h3>Build a Project</h3>
 
@@ -2562,39 +2565,88 @@ $ cordova build electron --debug
 <p><strong>Release Builds</strong></p>
 <div class="highlight"><pre><code class="language-" data-lang="">$ cordova build electron --release
 </code></pre></div>
-<h2>Customizing the Application&#39;s Main Process</h2>
+<h2>Customizing the Application&#39;s Window Process</h2>
 
-<p>In the <code>{PROJECT_ROOT_DIR}/platform/electron/platform_www/</code> directory, the file <code>main.js</code> defines the application&#39;s main process. We can customize the application&#39;s window appearance as well as defining or enabling additional features in this file.</p>
+<p>Electron provides many options to manipulate the <a href="https://electronjs.org/docs/api/browser-window"><code>BrowserWindow</code></a>. This section will cover how to configure a few basic options. For a full list of options, please see the <a href="https://electronjs.org/docs/api/browser-window#new-browserwindowoptions">Electron&#39;s Docs - BrowserWindow Options</a>.</p>
 
-<h3>Window Appearance (BrowserWindow)</h3>
+<p>Working with a Cordova project, it is recommended to create an Electron settings file within the project&#39;s root directory, and set its the relative path in the preference option <code>ElectronSettingsFilePath</code>, in the <code>config.xml</code> file.</p>
 
-<p>Electron provides many options to manipulate the BrowserWindow. This section covers only a few basic options. For a full list of options, please see the <a href="https://electronjs.org/docs/api/browser-window#new-browserwindowoptions">Electron&#39;s Docs - BrowserWindow Options</a>.</p>
+<p><strong>Example <code>config.xml</code>:</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">"electron"</span><span class="nt">&gt;</span>
+    <span class="nt">&lt;preference</span> <span class="na">name=</span><span class="s">"ElectronSettingsFilePath"</span> <span class="na">value=</span><span class="s">"res/electron/settings.json"</span> <span class="nt">/&gt;</span>
+<span class="nt">&lt;/platform&gt;</span>
+</code></pre></div>
+<p>To override or set any BrowserWindow options, in this file the options are added to the  <code>browserWindow</code> property.</p>
+
+<p><strong>Example <code>res/electron/settings.json</code>:</strong></p>
+<div class="highlight"><pre><code class="language-json" data-lang="json"><span class="p">{</span><span class="w">
+  </span><span class="s2">"browserWindow"</span><span class="p">:</span><span class="w"> </span><span class="p">{</span><span class="w"> </span><span class="err">...</span><span class="w"> </span><span class="p">}</span><span class="w">
+</span><span class="p">}</span><span class="w">
+</span></code></pre></div>
+<h3>How to set the window&#39;s default size?</h3>
+
+<p>By default, the <code>width</code> is set to <strong>800</strong> and the <code>height</code> set to <strong>600</strong>. This can be overridden by setting the <code>width</code> and <code>height</code> property.</p>
+
+<p><strong>Example:</strong></p>
+<div class="highlight"><pre><code class="language-json" data-lang="json"><span class="p">{</span><span class="w">
+    </span><span class="s2">"browserWindow"</span><span class="p">:</span><span class="w"> </span><span class="p">{</span><span class="w">
+        </span><span class="s2">"width"</span><span class="p">:</span><span class="w"> </span><span class="mi">1024</span><span class="p">,</span><span class="w">
+        </span><span class="s2">"height"</span><span class="p">:</span><span class="w"> </span><span class="mi">768</span><span class="w">
+    </span><span class="p">}</span><span class="w">
+</span><span class="p">}</span><span class="w">
+</span></code></pre></div>
+<h3>How to make the window not resizable?</h3>
+
+<p>Setting the <code>resizable</code> flag property, you can disable the user&#39;s ability to resize your application&#39;s window.</p>
+
+<p><strong>Example:</strong></p>
+<div class="highlight"><pre><code class="language-json" data-lang="json"><span class="p">{</span><span class="w">
+    </span><span class="s2">"browserWindow"</span><span class="p">:</span><span class="w"> </span><span class="p">{</span><span class="w">
+        </span><span class="s2">"resizable"</span><span class="p">:</span><span class="w"> </span><span class="kc">false</span><span class="w">
+    </span><span class="p">}</span><span class="w">
+</span><span class="p">}</span><span class="w">
+</span></code></pre></div>
+<h4>How to make my window fullscreen?</h4>
 
-<p>Electron provides many optional options that can manipulate the BrowserWindow. This section will cover a few of these options that many uses. A full list of these options can be found on the </p>
+<p>Using the <code>fullscreen</code> flag property, you can force the application to launch in fullscreen.</p>
 
-<h4>How to set the window default size?</h4>
+<p><strong>Example:</strong></p>
+<div class="highlight"><pre><code class="language-json" data-lang="json"><span class="p">{</span><span class="w">
+    </span><span class="s2">"browserWindow"</span><span class="p">:</span><span class="w"> </span><span class="p">{</span><span class="w">
+        </span><span class="s2">"fullscreen"</span><span class="p">:</span><span class="w"> </span><span class="kc">true</span><span class="w">
+    </span><span class="p">}</span><span class="w">
+</span><span class="p">}</span><span class="w">
+</span></code></pre></div>
+<h3>How to support Node.js and Electron APIs?</h3>
 
-<p>Using the <code>width</code> and <code>height</code> option, you can define starting default window size.</p>
-<div class="highlight"><pre><code class="language-" data-lang="">mainWindow = new BrowserWindow({
-  width: 800,
-  height: 600
-});
-</code></pre></div>
-<h4>How to make the window not resizable?</h4>
+<p>Set the <code>nodeIntegration</code> flag property to true.  By default, this property flag is set to false to support popular libraries that insert symbols with the same names that Node.js and Electron already uses.</p>
 
-<p>Using the <code>resizable</code> flag option, you can disable the user&#39;s ability to resize your application&#39;s window.</p>
-<div class="highlight"><pre><code class="language-" data-lang="">mainWindow = new BrowserWindow({ resizable: false });
-</code></pre></div>
-<h4>How to make my window fullscreen?</h4>
+<blockquote>
+<p>You can read more about this at Electron docs: <a href="https://electronjs.org/docs/faq#i-can-not-use-jqueryrequirejsmeteorangularjs-in-electron">I can not use jQuery/RequireJS/Meteor/AngularJS in Electron</a>.</p>
+</blockquote>
+
+<p><strong>Example:</strong></p>
+<div class="highlight"><pre><code class="language-json" data-lang="json"><span class="p">{</span><span class="w">
+    </span><span class="s2">"browserWindow"</span><span class="p">:</span><span class="w"> </span><span class="p">{</span><span class="w">
+        </span><span class="s2">"nodeIntegration"</span><span class="p">:</span><span class="w"> </span><span class="kc">true</span><span class="w">
+    </span><span class="p">}</span><span class="w">
+</span><span class="p">}</span><span class="w">
+</span></code></pre></div>
+<h2>Customizing the Electron&#39;s Main Process</h2>
+
+<p>If it is necessary to customize the Electron&#39;s main process beyond the scope of the Electron&#39;s configuration settings, chances can be added directly to the <code>cdv-electron-main.js</code> file located in <code>{PROJECT_ROOT_DIR}/platform/electron/platform_www/</code>. This is the application&#39;s main process.</p>
+
+<blockquote>
+<p>&#10071; However, it is not recommended to modify this file as the upgrade process for <code>cordova-electron</code> is to remove the old platform before adding the new version.</p>
+</blockquote>
 
-<p>Using the <code>fullscreen</code> flag option, you can force the application to launch in fullscreen.</p>
-<div class="highlight"><pre><code class="language-" data-lang="">mainWindow = new BrowserWindow({ fullscreen: true });
-</code></pre></div>
 <h3>DevTools</h3>
 
 <p>The <code>--release</code> and <code>--debug</code> flags control the visibility of the DevTools. DevTools are shown by default on <strong>Debug Builds</strong> (<code>without a flag</code> or with <code>--debug</code>). If you want to hide the DevTools pass in the <code>--release</code> flag when building or running the application.</p>
 
-<p><em>Note: DevTools still can be closed or opened manually.</em></p>
+<blockquote>
+<p>Note: DevTools can be closed or opened manually with the debug build.</p>
+</blockquote>
 
 <h2>Build Configurations</h2>
 
@@ -2880,7 +2932,7 @@ $ cordova build electron --debug
 <li>arm64</li>
 </ul>
 
-<p>The example above will generate a <code>x64</code> <code>dmg</code> package.</p>
+<p>The example above will generate an <code>x64</code> <code>dmg</code> package.</p>
 <div class="highlight"><pre><code class="language-" data-lang="">{
   "electron": {
     "mac": {
@@ -3087,9 +3139,9 @@ By default, all packages with the except
 
 <p>All browser-based plugins are usable with the Electron platform.</p>
 
-<p>When adding a plugin, if the plugin supports both the <code>electron</code> and <code>browser</code> platform, the <code>electron</code> portion will be used. If the plugin misses <code>electron</code>, but contains the <code>browser</code> implementation, it will fall back on the <code>browser</code> implementation.</p>
+<p>When adding a plugin, if the plugin supports both the <code>electron</code> and <code>browser</code> platform, the <code>electron</code> portion will be used. If the plugin misses <code>electron</code> but contains the <code>browser</code> implementation, it will fall back on the <code>browser</code> implementation.</p>
 
-<p>Internally, Electron is using Chromium (Chrome) as its web view. Some plugins may have conditions written specifically for each different browser. In this case, it may affect the behavior from what is intended. Since Electron may support feature that the browser does not, these plugins would possibly need to be updated for the <code>electron</code> platform.</p>
+<p>Internally, Electron is using Chromium (Chrome) as its web view. Some plugins may have conditions written specifically for each different browser. In this case, it may affect the behavior of what is intended. Since Electron may support feature that the browser does not, these plugins would possibly need to be updated for the <code>electron</code> platform.</p>
 
 
             </div>

Modified: cordova/site/public/feed.xml
URL: http://svn.apache.org/viewvc/cordova/site/public/feed.xml?rev=1856121&r1=1856120&r2=1856121&view=diff
==============================================================================
--- cordova/site/public/feed.xml (original)
+++ cordova/site/public/feed.xml Sat Mar 23 16:40:18 2019
@@ -6,11 +6,158 @@
 </description>
     <link>https://cordova.apache.org/</link>
     <atom:link href="https://cordova.apache.org/feed.xml" rel="self" type="application/rss+xml"/>
-    <pubDate>Mon, 18 Mar 2019 23:47:06 -0700</pubDate>
-    <lastBuildDate>Mon, 18 Mar 2019 23:47:06 -0700</lastBuildDate>
+    <pubDate>Sat, 23 Mar 2019 23:43:34 +0900</pubDate>
+    <lastBuildDate>Sat, 23 Mar 2019 23:43:34 +0900</lastBuildDate>
     <generator>Jekyll v2.5.3</generator>
     
       <item>
+        <title>Cordova Plugman 3.0.0 Released!</title>
+        <description>&lt;p&gt;We are happy to announce that we have just released &lt;code&gt;plugman 3.0.0&lt;/code&gt;! Plugman is a command line tool which we provide to install and uninstall plugins in a &lt;a href=&quot;https://cordova.apache.org/docs/en/latest/guide/overview/index.html#development-paths&quot;&gt;platform-centered workflow&lt;/a&gt;.&lt;/p&gt;
+
+&lt;ul&gt;
+&lt;li&gt;&lt;a href=&quot;https://www.npmjs.com/package/plugman&quot;&gt;plugman@3.0.0&lt;/a&gt;&lt;/li&gt;
+&lt;/ul&gt;
+
+&lt;p&gt;&lt;strong&gt;To upgrade:&lt;/strong&gt;&lt;/p&gt;
+&lt;div class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-&quot; data-lang=&quot;&quot;&gt;npm uninstall -g plugman
+npm install -g plugman@3.0.0
+&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
+&lt;h2&gt;Release Highlights&lt;/h2&gt;
+
+&lt;p&gt;In addition to various improvements and fixes, this release has removed the &lt;code&gt;browserify&lt;/code&gt; and &lt;code&gt;fetch&lt;/code&gt; options.&lt;/p&gt;
+
+&lt;p&gt;As NodeJS 4.x support has been dropped by the NodeJS team on April 30th, 2018, we have raised the minimum required NodeJS version for this release to 6.x.&lt;/p&gt;
+
+&lt;p&gt;Please report any issues you find at &lt;a href=&quot;http://issues.cordova.io/&quot;&gt;issues.cordova.io&lt;/a&gt;!&lt;/p&gt;
+
+&lt;!--more--&gt;
+
+&lt;h1&gt;Changes include:&lt;/h1&gt;
+
+&lt;ul&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-plugman/pull/108&quot;&gt;GH-108&lt;/a&gt; Cordova Plugman Release Preparation (Cordova 9)
+
+&lt;ul&gt;
+&lt;li&gt;Bumped Dependencies&lt;/li&gt;
+&lt;li&gt;&lt;code&gt;cordova-lib@^9.0.0&lt;/code&gt;&lt;/li&gt;
+&lt;li&gt;&lt;code&gt;nopt@^4.0.1&lt;/code&gt;&lt;/li&gt;
+&lt;li&gt;Bumped Dev Dependencies&lt;/li&gt;
+&lt;li&gt;&lt;code&gt;jasmine@^3.3.1&lt;/code&gt;&lt;/li&gt;
+&lt;li&gt;&lt;code&gt;eslint-plugin-standard@^4.0.0&lt;/code&gt;&lt;/li&gt;
+&lt;li&gt;&lt;code&gt;eslint-plugin-promise@^4.0.1&lt;/code&gt;&lt;/li&gt;
+&lt;li&gt;&lt;code&gt;eslint-plugin-node@^8.0.1&lt;/code&gt;&lt;/li&gt;
+&lt;li&gt;&lt;code&gt;eslint-plugin-import@^2.16.0&lt;/code&gt;&lt;/li&gt;
+&lt;li&gt;&lt;code&gt;eslint-config-standard@^12.0.0&lt;/code&gt;&lt;/li&gt;
+&lt;li&gt;&lt;code&gt;eslint-config-semistandard@^13.0.0&lt;/code&gt;&lt;/li&gt;
+&lt;li&gt;&lt;code&gt;eslint@^5.15.3&lt;/code&gt;&lt;/li&gt;
+&lt;li&gt;Update to support nopt@^4.0.1&lt;/li&gt;
+&lt;/ul&gt;&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-plugman/pull/96&quot;&gt;GH-96&lt;/a&gt; Remove &lt;code&gt;fetch&lt;/code&gt; option&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-plugman/pull/95&quot;&gt;GH-95&lt;/a&gt; Remove &lt;code&gt;browserify&lt;/code&gt; option&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-plugman/pull/94&quot;&gt;GH-94&lt;/a&gt; &lt;a href=&quot;https://issues.apache.org/jira/browse/CB-14164&quot;&gt;CB-14164&lt;/a&gt; Use native Promises instead of &lt;code&gt;Q&lt;/code&gt;&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-plugman/pull/93&quot;&gt;GH-93&lt;/a&gt; Code Refactor and Cleanup&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-plugman/pull/91&quot;&gt;GH-91&lt;/a&gt; Drop support for Node.js &amp;lt; 6&lt;/li&gt;
+&lt;/ul&gt;
+</description>
+        <pubDate>Fri, 22 Mar 2019 00:00:00 +0900</pubDate>
+        <link>https://cordova.apache.org/announcements/2019/03/22/cordova-plugman-release-3.0.0.html</link>
+        <guid isPermaLink="true">https://cordova.apache.org/announcements/2019/03/22/cordova-plugman-release-3.0.0.html</guid>
+        
+        <category>news</category>
+        
+        <category>releases</category>
+        
+        
+        <category>announcements</category>
+        
+      </item>
+    
+      <item>
+        <title>Cordova CLI 9.0.0 Released!</title>
+        <description>&lt;p&gt;We are happy to announce that we have just released &lt;code&gt;cordova 9.0.0&lt;/code&gt;!&lt;/p&gt;
+
+&lt;ul&gt;
+&lt;li&gt;&lt;a href=&quot;https://www.npmjs.com/package/cordova&quot;&gt;cordova@9.0.0&lt;/a&gt;&lt;/li&gt;
+&lt;/ul&gt;
+
+&lt;p&gt;&lt;strong&gt;To upgrade:&lt;/strong&gt;&lt;/p&gt;
+&lt;div class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-&quot; data-lang=&quot;&quot;&gt;npm uninstall -g cordova
+npm install -g cordova@9.0.0
+&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
+&lt;h2&gt;Release Highlights&lt;/h2&gt;
+
+&lt;p&gt;In addition to various improvements and fixes, this release has updated its core library. &lt;/p&gt;
+
+&lt;p&gt;All of the latest platform releases are available by default.&lt;/p&gt;
+
+&lt;ul&gt;
+&lt;li&gt;&lt;code&gt;cordova-android@^8.0.0&lt;/code&gt;&lt;/li&gt;
+&lt;li&gt;&lt;code&gt;cordova-browser@^6.0.0&lt;/code&gt;&lt;/li&gt;
+&lt;li&gt;&lt;code&gt;cordova-electron@^1.0.0&lt;/code&gt;&lt;/li&gt;
+&lt;li&gt;&lt;code&gt;cordova-ios@^5.0.0&lt;/code&gt;&lt;/li&gt;
+&lt;li&gt;&lt;code&gt;cordova-osx@^5.0.0&lt;/code&gt;&lt;/li&gt;
+&lt;li&gt;&lt;code&gt;cordova-windows@^7.0.0&lt;/code&gt;&lt;/li&gt;
+&lt;/ul&gt;
+
+&lt;p&gt;Additionally, Cordova Electron, one of the newest supported platfroms, is available!&lt;/p&gt;
+
+&lt;p&gt;This release has also deprecated the &lt;code&gt;browserify&lt;/code&gt;,  &lt;code&gt;fetch&lt;/code&gt;, and &lt;code&gt;copy-from&lt;/code&gt; options.&lt;/p&gt;
+
+&lt;p&gt;As NodeJS 4.x support has been dropped by the NodeJS team on April 30th, 2018, we have raised the minimum required NodeJS version for this release to 6.x.&lt;/p&gt;
+
+&lt;p&gt;Please report any issues you find at &lt;a href=&quot;http://issues.cordova.io/&quot;&gt;issues.cordova.io&lt;/a&gt;!&lt;/p&gt;
+
+&lt;!--more--&gt;
+
+&lt;h1&gt;Changes include:&lt;/h1&gt;
+
+&lt;ul&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-cli/pull/414&quot;&gt;GH-414&lt;/a&gt; Cordova CLI Release Preparation (Cordova 9)
+
+&lt;ul&gt;
+&lt;li&gt;&lt;strong&gt;Bumped Dependencies&lt;/strong&gt;&lt;/li&gt;
+&lt;li&gt;&lt;code&gt;cordova-lib@^9.0.0&lt;/code&gt;&lt;/li&gt;
+&lt;li&gt;&lt;code&gt;cordova-common@^3.1.0&lt;/code&gt;&lt;/li&gt;
+&lt;li&gt;&lt;code&gt;editor@^1.0.0&lt;/code&gt; (Prepended &lt;code&gt;^&lt;/code&gt; only)&lt;/li&gt;
+&lt;li&gt;&lt;code&gt;loud-rejection@^2.0.0&lt;/code&gt;&lt;/li&gt;
+&lt;li&gt;&lt;strong&gt;Bumped Dev Dependencies&lt;/strong&gt;&lt;/li&gt;
+&lt;li&gt;&lt;code&gt;jasmine@^3.3.1&lt;/code&gt;&lt;/li&gt;
+&lt;li&gt;&lt;code&gt;eslint-plugin-promise@^4.0.1&lt;/code&gt;&lt;/li&gt;
+&lt;li&gt;&lt;code&gt;eslint-plugin-node@^8.0.1&lt;/code&gt;&lt;/li&gt;
+&lt;li&gt;&lt;code&gt;eslint-plugin-import@^2.16.0&lt;/code&gt;&lt;/li&gt;
+&lt;li&gt;&lt;code&gt;eslint-config-standard@^12.0.0&lt;/code&gt;&lt;/li&gt;
+&lt;li&gt;&lt;code&gt;eslint-config-semistandard@^13.0.0&lt;/code&gt;&lt;/li&gt;
+&lt;li&gt;&lt;code&gt;eslint@^5.15.2&lt;/code&gt;&lt;/li&gt;
+&lt;li&gt;Fix &lt;code&gt;logger[level]&lt;/code&gt; spy in Jasmine&lt;/li&gt;
+&lt;/ul&gt;&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-cli/pull/397&quot;&gt;GH-397&lt;/a&gt; Update Node.js Deprecation Notice Message&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-cli/pull/395&quot;&gt;GH-395&lt;/a&gt; Fix typo: &amp;quot;esecially&amp;quot; to especially&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-cli/pull/364&quot;&gt;GH-364&lt;/a&gt; Fix spec label for build tests&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-cli/pull/344&quot;&gt;GH-344&lt;/a&gt; Check that &lt;code&gt;bin/cordova&lt;/code&gt; works on Travis CI&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/CB-13740&quot;&gt;CB-13740&lt;/a&gt; gracefully handle platforms that don&amp;#39;t pass back requirements to check&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-cli/pull/327&quot;&gt;GH-327&lt;/a&gt; Stub telemetry calls during all tests&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-cli/pull/322&quot;&gt;GH-322&lt;/a&gt; Remove support for &lt;code&gt;fetch&lt;/code&gt; option&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-cli/pull/321&quot;&gt;GH-321&lt;/a&gt; Remove support for &lt;code&gt;browserify&lt;/code&gt;&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-cli/pull/317&quot;&gt;GH-317&lt;/a&gt; cli.spec: Telemetry-Related Improvements&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-cli/pull/316&quot;&gt;GH-316&lt;/a&gt; Remove &lt;code&gt;callback&lt;/code&gt; parameter of main CLI function&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-cli/pull/298&quot;&gt;GH-298&lt;/a&gt; Remove support for deprecated &lt;code&gt;--copy-from&lt;/code&gt;&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-cli/pull/298&quot;&gt;GH-298&lt;/a&gt; Cleanup code calling &lt;code&gt;cordova-create&lt;/code&gt;&lt;/li&gt;
+&lt;/ul&gt;
+</description>
+        <pubDate>Fri, 22 Mar 2019 00:00:00 +0900</pubDate>
+        <link>https://cordova.apache.org/announcements/2019/03/22/cordova-cli-release-9.0.0.html</link>
+        <guid isPermaLink="true">https://cordova.apache.org/announcements/2019/03/22/cordova-cli-release-9.0.0.html</guid>
+        
+        <category>news</category>
+        
+        <category>releases</category>
+        
+        
+        <category>announcements</category>
+        
+      </item>
+    
+      <item>
         <title>Cordova Lib 9.0.0 Released!</title>
         <description>&lt;p&gt;We are happy to announce that we have just released &lt;code&gt;cordova-lib 9.0.0&lt;/code&gt;!&lt;/p&gt;
 
@@ -89,7 +236,7 @@
 &lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-lib/pull/616&quot;&gt;GH-616&lt;/a&gt; Extend and improve &lt;code&gt;cordova info&lt;/code&gt; output&lt;/li&gt;
 &lt;/ul&gt;
 </description>
-        <pubDate>Mon, 18 Mar 2019 00:00:00 -0700</pubDate>
+        <pubDate>Mon, 18 Mar 2019 00:00:00 +0900</pubDate>
         <link>https://cordova.apache.org/announcements/2019/03/18/cordova-lib-release-9.0.0.html</link>
         <guid isPermaLink="true">https://cordova.apache.org/announcements/2019/03/18/cordova-lib-release-9.0.0.html</guid>
         
@@ -143,7 +290,7 @@ cordova build cordova-electron
 &lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-electron/pull/33&quot;&gt;GH-33&lt;/a&gt; Update &lt;code&gt;cordova run&lt;/code&gt; to Work with Pre-Cordova 9.x CLI&lt;/li&gt;
 &lt;/ul&gt;
 </description>
-        <pubDate>Mon, 18 Mar 2019 00:00:00 -0700</pubDate>
+        <pubDate>Mon, 18 Mar 2019 00:00:00 +0900</pubDate>
         <link>https://cordova.apache.org/announcements/2019/03/18/cordova-electron-release-1.0.2.html</link>
         <guid isPermaLink="true">https://cordova.apache.org/announcements/2019/03/18/cordova-electron-release-1.0.2.html</guid>
         
@@ -188,7 +335,7 @@ cordova platform add windows@7.0.0
 &lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-windows/pull/284&quot;&gt;GH-284&lt;/a&gt; &lt;a href=&quot;https://issues.apache.org/jira/browse/CB-14224&quot;&gt;CB-14224&lt;/a&gt; &lt;code&gt;Default.rd.xml&lt;/code&gt; header fixes&lt;/li&gt;
 &lt;/ul&gt;
 </description>
-        <pubDate>Fri, 08 Mar 2019 00:00:00 -0800</pubDate>
+        <pubDate>Fri, 08 Mar 2019 00:00:00 +0900</pubDate>
         <link>https://cordova.apache.org/announcements/2019/03/08/cordova-windows-release-7.0.0.html</link>
         <guid isPermaLink="true">https://cordova.apache.org/announcements/2019/03/08/cordova-windows-release-7.0.0.html</guid>
         
@@ -267,7 +414,7 @@ cordova platform add windows@7.0.0
 
 &lt;p&gt;&lt;strong&gt;UPDATE 2019-03-06&lt;/strong&gt;: This blog post has been updated to remove &lt;strong&gt;pre-Cordova 9.x&lt;/strong&gt; reference.&lt;/p&gt;
 </description>
-        <pubDate>Thu, 28 Feb 2019 00:00:00 -0800</pubDate>
+        <pubDate>Thu, 28 Feb 2019 00:00:00 +0900</pubDate>
         <link>https://cordova.apache.org/announcements/2019/02/28/cordova-electron-release-1.0.0.html</link>
         <guid isPermaLink="true">https://cordova.apache.org/announcements/2019/02/28/cordova-electron-release-1.0.0.html</guid>
         
@@ -360,7 +507,7 @@ cordova platform add android@8.0.0
 &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/CB-13923&quot;&gt;CB-13923&lt;/a&gt; Fix -1 length for compressed files&lt;/li&gt;
 &lt;/ul&gt;
 </description>
-        <pubDate>Sat, 16 Feb 2019 00:00:00 -0800</pubDate>
+        <pubDate>Sat, 16 Feb 2019 00:00:00 +0900</pubDate>
         <link>https://cordova.apache.org/announcements/2019/02/16/cordova-android-release-8.0.0.html</link>
         <guid isPermaLink="true">https://cordova.apache.org/announcements/2019/02/16/cordova-android-release-8.0.0.html</guid>
         
@@ -455,7 +602,7 @@ cordova platform add ios@5.0.0
 &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/CB-13597&quot;&gt;CB-13597&lt;/a&gt; update podfile with &lt;strong&gt;iOS&lt;/strong&gt; version 9.0&lt;/li&gt;
 &lt;/ul&gt;
 </description>
-        <pubDate>Sat, 09 Feb 2019 00:00:00 -0800</pubDate>
+        <pubDate>Sat, 09 Feb 2019 00:00:00 +0900</pubDate>
         <link>https://cordova.apache.org/announcements/2019/02/09/cordova-ios-release-5.0.0.html</link>
         <guid isPermaLink="true">https://cordova.apache.org/announcements/2019/02/09/cordova-ios-release-5.0.0.html</guid>
         
@@ -507,7 +654,7 @@ cordova platform add ios@5.0.0
 &lt;li&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/CB-11002&quot;&gt;CB-11002&lt;/a&gt; Enable hidden accelerated rendering settings by default&lt;/li&gt;
 &lt;/ul&gt;
 </description>
-        <pubDate>Mon, 04 Feb 2019 00:00:00 -0800</pubDate>
+        <pubDate>Mon, 04 Feb 2019 00:00:00 +0900</pubDate>
         <link>https://cordova.apache.org/announcements/2019/02/04/cordova-osx-release-5.0.0.html</link>
         <guid isPermaLink="true">https://cordova.apache.org/announcements/2019/02/04/cordova-osx-release-5.0.0.html</guid>
         
@@ -548,7 +695,7 @@ cordova platform add ios@5.0.0
 &lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-browser/pull/50&quot;&gt;GH-50&lt;/a&gt; corrected path for &lt;code&gt;config.xml&lt;/code&gt;&lt;/li&gt;
 &lt;/ul&gt;
 </description>
-        <pubDate>Mon, 04 Feb 2019 00:00:00 -0800</pubDate>
+        <pubDate>Mon, 04 Feb 2019 00:00:00 +0900</pubDate>
         <link>https://cordova.apache.org/announcements/2019/02/04/cordova-browser-6.0.0.html</link>
         <guid isPermaLink="true">https://cordova.apache.org/announcements/2019/02/04/cordova-browser-6.0.0.html</guid>
         
@@ -561,86 +708,5 @@ cordova platform add ios@5.0.0
         
       </item>
     
-      <item>
-        <title>Cordova Node Xcode 2.0.0 Released!</title>
-        <description>&lt;p&gt;We are happy to announce that we have just released an update to &lt;code&gt;cordova-node-xcode&lt;/code&gt;! This is one of the libraries used behind-the-scenes for parsing, editing, and writing xcodeproj project files.&lt;/p&gt;
-
-&lt;ul&gt;
-&lt;li&gt;&lt;a href=&quot;https://www.npmjs.com/package/xcode&quot;&gt;cordova-node-xcode@2.0.0&lt;/a&gt;&lt;/li&gt;
-&lt;/ul&gt;
-
-&lt;h2&gt;Release Highlights&lt;/h2&gt;
-
-&lt;p&gt;As NodeJS 4.x support has been dropped by the NodeJS team on April 30th, 2018, we have raised the minimum required NodeJS version for this release to 6.x.&lt;/p&gt;
-
-&lt;p&gt;Please report any issues you find at &lt;a href=&quot;http://issues.cordova.io/&quot;&gt;issues.cordova.io&lt;/a&gt;!&lt;/p&gt;
-
-&lt;!--more--&gt;
-
-&lt;h1&gt;Changes include:&lt;/h1&gt;
-
-&lt;ul&gt;
-&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-node-xcode/pull/14&quot;&gt;GH-14&lt;/a&gt; Updated to use ECMAScript 2015 Object.assign.&lt;/li&gt;
-&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-node-xcode/pull/30&quot;&gt;GH-30&lt;/a&gt; fix: simple-plist@1 update in dependencies&lt;/li&gt;
-&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-node-xcode/pull/29&quot;&gt;GH-29&lt;/a&gt; drop support for Node.js pre-6.0&lt;/li&gt;
-&lt;/ul&gt;
-</description>
-        <pubDate>Thu, 17 Jan 2019 00:00:00 -0800</pubDate>
-        <link>https://cordova.apache.org/news/2019/01/17/xcode-release-2.0.0.html</link>
-        <guid isPermaLink="true">https://cordova.apache.org/news/2019/01/17/xcode-release-2.0.0.html</guid>
-        
-        <category>release</category>
-        
-        <category>tools</category>
-        
-        
-        <category>news</category>
-        
-      </item>
-    
-      <item>
-        <title>Cordova Create 2.0.0 Released!</title>
-        <description>&lt;p&gt;We are happy to announce that we have just released an update to &lt;code&gt;cordova-create&lt;/code&gt;! This is one of the libraries used behind-the-scenes for creating Cordova style projects and incudes support for Cordova templates.&lt;/p&gt;
-
-&lt;ul&gt;
-&lt;li&gt;&lt;a href=&quot;https://www.npmjs.com/package/cordova-create&quot;&gt;cordova-create@2.0.0&lt;/a&gt;&lt;/li&gt;
-&lt;/ul&gt;
-
-&lt;h2&gt;Release Highlights&lt;/h2&gt;
-
-&lt;p&gt;As NodeJS 4.x support has been dropped by the NodeJS team on April 30th, 2018, we have raised the minimum required NodeJS version for this release to 6.x.&lt;/p&gt;
-
-&lt;p&gt;Please report any issues you find at &lt;a href=&quot;http://issues.cordova.io/&quot;&gt;issues.cordova.io&lt;/a&gt;!&lt;/p&gt;
-
-&lt;!--more--&gt;
-
-&lt;h1&gt;Changes include:&lt;/h1&gt;
-
-&lt;ul&gt;
-&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-create/pull/36&quot;&gt;GH-36&lt;/a&gt;, &lt;a href=&quot;https://github.com/apache/cordova-create/pull/38&quot;&gt;GH-38&lt;/a&gt; Updated Cordova Package Dependencies (&lt;code&gt;cordova-common@^3.1.0&lt;/code&gt;)&lt;/li&gt;
-&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-create/pull/36&quot;&gt;GH-35&lt;/a&gt;, &lt;a href=&quot;https://github.com/apache/cordova-create/pull/38&quot;&gt;GH-38&lt;/a&gt; Updated External Package Dependencies&lt;/li&gt;
-&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-create/pull/33&quot;&gt;GH-33&lt;/a&gt; Drop &lt;code&gt;Q&lt;/code&gt;, use native promises&lt;/li&gt;
-&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-create/pull/28&quot;&gt;GH-28&lt;/a&gt; Commit &lt;code&gt;package-lock.json&lt;/code&gt;&lt;/li&gt;
-&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-create/pull/20&quot;&gt;GH-20&lt;/a&gt; Non-breaking cleanup &amp;amp; improvements&lt;/li&gt;
-&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-create/pull/19&quot;&gt;GH-19&lt;/a&gt; &lt;a href=&quot;https://issues.apache.org/jira/browse/CB-14140&quot;&gt;CB-14140&lt;/a&gt; Use &lt;code&gt;fs-extra&lt;/code&gt; instead of &lt;code&gt;shelljs&lt;/code&gt;&lt;/li&gt;
-&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-create/pull/18&quot;&gt;GH-18&lt;/a&gt; Drop support for reading from &lt;code&gt;.cordova/config.json&lt;/code&gt;&lt;/li&gt;
-&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-create/pull/15&quot;&gt;GH-15&lt;/a&gt; Fix error messages for toExist matcher&lt;/li&gt;
-&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-create/pull/13&quot;&gt;GH-13&lt;/a&gt; Major code cleanup (Remove deadcode, cleanup, refactor, update dependencies, etc.)&lt;/li&gt;
-&lt;li&gt;&lt;a href=&quot;https://github.com/apache/cordova-create/pull/12&quot;&gt;GH-12&lt;/a&gt; Update node versions for CI and drop support for node 4&lt;/li&gt;
-&lt;/ul&gt;
-</description>
-        <pubDate>Thu, 10 Jan 2019 00:00:00 -0800</pubDate>
-        <link>https://cordova.apache.org/news/2019/01/10/create-release-2.0.0.html</link>
-        <guid isPermaLink="true">https://cordova.apache.org/news/2019/01/10/create-release-2.0.0.html</guid>
-        
-        <category>release</category>
-        
-        <category>tools</category>
-        
-        
-        <category>news</category>
-        
-      </item>
-    
   </channel>
 </rss>

Modified: cordova/site/public/news/2013/09/06/last-week.html
URL: http://svn.apache.org/viewvc/cordova/site/public/news/2013/09/06/last-week.html?rev=1856121&r1=1856120&r2=1856121&view=diff
==============================================================================
--- cordova/site/public/news/2013/09/06/last-week.html (original)
+++ cordova/site/public/news/2013/09/06/last-week.html Sat Mar 23 16:40:18 2019
@@ -159,11 +159,11 @@ There was also good progress made toward
         <div class="row">
             <div class="col-sm-6">
                 
-                    <a href="/blog/2013/08/12/crowdintranslation.html">Previous</a>
+                    <a href="/blog/2013/08/13/crowdintranslation.html">Previous</a>
                     <br>
                     <br>
-                    <a class="title" href="/blog/2013/08/12/crowdintranslation.html">Apache Cordova Is Looking for a Few Good Translators</a>
-                    <div class="date"> 12 Aug 2013 - By Lisa Seacat DeLuca </div>
+                    <a class="title" href="/blog/2013/08/13/crowdintranslation.html">Apache Cordova Is Looking for a Few Good Translators</a>
+                    <div class="date"> 13 Aug 2013 - By Lisa Seacat DeLuca </div>
                     <p class="content">
                         Apache Cordova is going global! Apache Cordova is already being used by...
                     </p>

Modified: cordova/site/public/sitemap.xml
URL: http://svn.apache.org/viewvc/cordova/site/public/sitemap.xml?rev=1856121&r1=1856120&r2=1856121&view=diff
==============================================================================
--- cordova/site/public/sitemap.xml (original)
+++ cordova/site/public/sitemap.xml Sat Mar 23 16:40:18 2019
@@ -4,6 +4,16 @@
 <!-- posts -->
 
 <url>
+    <loc>https://cordova.apache.org/announcements/2019/03/22/cordova-plugman-release-3.0.0.html</loc>
+</url>
+
+
+<url>
+    <loc>https://cordova.apache.org/announcements/2019/03/22/cordova-cli-release-9.0.0.html</loc>
+</url>
+
+
+<url>
     <loc>https://cordova.apache.org/announcements/2019/03/18/cordova-lib-release-9.0.0.html</loc>
 </url>
 
@@ -959,17 +969,17 @@
 
 
 <url>
-    <loc>https://cordova.apache.org/blog/2013/08/12/crowdintranslation.html</loc>
+    <loc>https://cordova.apache.org/blog/2013/08/13/crowdintranslation.html</loc>
 </url>
 
 
 <url>
-    <loc>https://cordova.apache.org/blog/releases/2013/07/23/cordova-3.html</loc>
+    <loc>https://cordova.apache.org/blog/releases/2013/07/24/cordova-3.html</loc>
 </url>
 
 
 <url>
-    <loc>https://cordova.apache.org/blog/2013/07/11/cordova-has-a-blog.html</loc>
+    <loc>https://cordova.apache.org/blog/2013/07/12/cordova-has-a-blog.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=1856121&r1=1856120&r2=1856121&view=diff
==============================================================================
--- cordova/site/public/static/js/index.js (original)
+++ cordova/site/public/static/js/index.js Sat Mar 23 16:40:18 2019
@@ -77,200 +77,202 @@ function checkNotification() {
     var dates = [];
     if (lastVisit != "") {
         
-        dates.push('Mon, 18 Mar 2019 00:00:00 -0700');
-        dates.push('Mon, 18 Mar 2019 00:00:00 -0700');
-        dates.push('Fri, 08 Mar 2019 00:00:00 -0800');
-        dates.push('Thu, 28 Feb 2019 00:00:00 -0800');
-        dates.push('Sat, 16 Feb 2019 00:00:00 -0800');
-        dates.push('Sat, 09 Feb 2019 00:00:00 -0800');
-        dates.push('Mon, 04 Feb 2019 00:00:00 -0800');
-        dates.push('Mon, 04 Feb 2019 00:00:00 -0800');
-        dates.push('Thu, 17 Jan 2019 00:00:00 -0800');
-        dates.push('Thu, 10 Jan 2019 00:00:00 -0800');
-        dates.push('Thu, 03 Jan 2019 00:00:00 -0800');
-        dates.push('Tue, 25 Dec 2018 00:00:00 -0800');
-        dates.push('Fri, 21 Dec 2018 00:00:00 -0800');
-        dates.push('Fri, 23 Nov 2018 00:00:00 -0800');
-        dates.push('Wed, 21 Nov 2018 00:00:00 -0800');
-        dates.push('Wed, 07 Nov 2018 00:00:00 -0800');
-        dates.push('Sun, 07 Oct 2018 00:00:00 -0700');
-        dates.push('Fri, 05 Oct 2018 00:00:00 -0700');
-        dates.push('Thu, 04 Oct 2018 00:00:00 -0700');
-        dates.push('Thu, 27 Sep 2018 00:00:00 -0700');
-        dates.push('Wed, 26 Sep 2018 00:00:00 -0700');
-        dates.push('Mon, 17 Sep 2018 00:00:00 -0700');
-        dates.push('Mon, 17 Sep 2018 00:00:00 -0700');
-        dates.push('Tue, 14 Aug 2018 00:00:00 -0700');
-        dates.push('Fri, 10 Aug 2018 00:00:00 -0700');
-        dates.push('Wed, 01 Aug 2018 00:00:00 -0700');
-        dates.push('Thu, 26 Jul 2018 00:00:00 -0700');
-        dates.push('Mon, 23 Jul 2018 00:00:00 -0700');
-        dates.push('Wed, 18 Jul 2018 00:00:00 -0700');
-        dates.push('Tue, 26 Jun 2018 00:00:00 -0700');
-        dates.push('Tue, 19 Jun 2018 00:00:00 -0700');
-        dates.push('Mon, 04 Jun 2018 00:00:00 -0700');
-        dates.push('Mon, 16 Apr 2018 00:00:00 -0700');
-        dates.push('Tue, 27 Feb 2018 00:00:00 -0800');
-        dates.push('Mon, 26 Feb 2018 00:00:00 -0800');
-        dates.push('Fri, 02 Feb 2018 00:00:00 -0800');
-        dates.push('Mon, 29 Jan 2018 00:00:00 -0800');
-        dates.push('Sat, 30 Dec 2017 00:00:00 -0800');
-        dates.push('Wed, 20 Dec 2017 00:00:00 -0800');
-        dates.push('Mon, 18 Dec 2017 00:00:00 -0800');
-        dates.push('Mon, 04 Dec 2017 00:00:00 -0800');
-        dates.push('Mon, 27 Nov 2017 00:00:00 -0800');
-        dates.push('Tue, 21 Nov 2017 00:00:00 -0800');
-        dates.push('Mon, 20 Nov 2017 00:00:00 -0800');
-        dates.push('Fri, 10 Nov 2017 00:00:00 -0800');
-        dates.push('Thu, 09 Nov 2017 00:00:00 -0800');
-        dates.push('Tue, 31 Oct 2017 00:00:00 -0700');
-        dates.push('Mon, 30 Oct 2017 00:00:00 -0700');
-        dates.push('Thu, 19 Oct 2017 00:00:00 -0700');
-        dates.push('Wed, 18 Oct 2017 00:00:00 -0700');
-        dates.push('Mon, 16 Oct 2017 00:00:00 -0700');
-        dates.push('Tue, 10 Oct 2017 00:00:00 -0700');
-        dates.push('Wed, 27 Sep 2017 00:00:00 -0700');
-        dates.push('Mon, 25 Sep 2017 00:00:00 -0700');
-        dates.push('Fri, 22 Sep 2017 00:00:00 -0700');
-        dates.push('Fri, 08 Sep 2017 00:00:00 -0700');
-        dates.push('Tue, 05 Sep 2017 00:00:00 -0700');
-        dates.push('Tue, 29 Aug 2017 00:00:00 -0700');
-        dates.push('Fri, 12 May 2017 00:00:00 -0700');
-        dates.push('Thu, 04 May 2017 00:00:00 -0700');
-        dates.push('Thu, 04 May 2017 00:00:00 -0700');
-        dates.push('Mon, 01 May 2017 00:00:00 -0700');
-        dates.push('Fri, 28 Apr 2017 00:00:00 -0700');
-        dates.push('Wed, 26 Apr 2017 00:00:00 -0700');
-        dates.push('Wed, 05 Apr 2017 00:00:00 -0700');
-        dates.push('Thu, 30 Mar 2017 00:00:00 -0700');
-        dates.push('Tue, 07 Mar 2017 00:00:00 -0800');
-        dates.push('Mon, 13 Feb 2017 00:00:00 -0800');
-        dates.push('Wed, 01 Feb 2017 00:00:00 -0800');
-        dates.push('Fri, 27 Jan 2017 00:00:00 -0800');
-        dates.push('Mon, 23 Jan 2017 00:00:00 -0800');
-        dates.push('Thu, 05 Jan 2017 00:00:00 -0800');
-        dates.push('Mon, 12 Dec 2016 00:00:00 -0800');
-        dates.push('Wed, 07 Dec 2016 00:00:00 -0800');
-        dates.push('Fri, 02 Dec 2016 00:00:00 -0800');
-        dates.push('Mon, 07 Nov 2016 00:00:00 -0800');
-        dates.push('Tue, 25 Oct 2016 00:00:00 -0700');
-        dates.push('Mon, 24 Oct 2016 00:00:00 -0700');
-        dates.push('Mon, 24 Oct 2016 00:00:00 -0700');
-        dates.push('Mon, 24 Oct 2016 00:00:00 -0700');
-        dates.push('Tue, 04 Oct 2016 00:00:00 -0700');
-        dates.push('Sat, 01 Oct 2016 00:00:00 -0700');
-        dates.push('Wed, 14 Sep 2016 00:00:00 -0700');
-        dates.push('Mon, 22 Aug 2016 00:00:00 -0700');
-        dates.push('Fri, 12 Aug 2016 00:00:00 -0700');
-        dates.push('Wed, 27 Jul 2016 00:00:00 -0700');
-        dates.push('Wed, 13 Jul 2016 00:00:00 -0700');
-        dates.push('Wed, 13 Jul 2016 00:00:00 -0700');
-        dates.push('Mon, 11 Jul 2016 00:00:00 -0700');
-        dates.push('Sat, 02 Jul 2016 00:00:00 -0700');
-        dates.push('Thu, 23 Jun 2016 00:00:00 -0700');
-        dates.push('Tue, 14 Jun 2016 00:00:00 -0700');
-        dates.push('Fri, 03 Jun 2016 00:00:00 -0700');
-        dates.push('Tue, 24 May 2016 00:00:00 -0700');
-        dates.push('Wed, 27 Apr 2016 00:00:00 -0700');
-        dates.push('Wed, 20 Apr 2016 00:00:00 -0700');
-        dates.push('Tue, 05 Apr 2016 00:00:00 -0700');
-        dates.push('Mon, 04 Apr 2016 00:00:00 -0700');
-        dates.push('Mon, 04 Apr 2016 00:00:00 -0700');
-        dates.push('Wed, 23 Mar 2016 00:00:00 -0700');
-        dates.push('Tue, 22 Mar 2016 00:00:00 -0700');
-        dates.push('Sat, 12 Mar 2016 00:00:00 -0800');
-        dates.push('Fri, 04 Mar 2016 00:00:00 -0800');
-        dates.push('Thu, 03 Mar 2016 00:00:00 -0800');
-        dates.push('Wed, 02 Mar 2016 00:00:00 -0800');
-        dates.push('Wed, 02 Mar 2016 00:00:00 -0800');
-        dates.push('Tue, 16 Feb 2016 00:00:00 -0800');
-        dates.push('Tue, 09 Feb 2016 00:00:00 -0800');
-        dates.push('Thu, 04 Feb 2016 00:00:00 -0800');
-        dates.push('Thu, 04 Feb 2016 00:00:00 -0800');
-        dates.push('Thu, 28 Jan 2016 00:00:00 -0800');
-        dates.push('Sun, 24 Jan 2016 00:00:00 -0800');
-        dates.push('Tue, 19 Jan 2016 00:00:00 -0800');
-        dates.push('Mon, 18 Jan 2016 00:00:00 -0800');
-        dates.push('Fri, 08 Jan 2016 00:00:00 -0800');
-        dates.push('Fri, 08 Jan 2016 00:00:00 -0800');
-        dates.push('Fri, 18 Dec 2015 00:00:00 -0800');
-        dates.push('Mon, 14 Dec 2015 00:00:00 -0800');
-        dates.push('Tue, 08 Dec 2015 00:00:00 -0800');
-        dates.push('Tue, 08 Dec 2015 00:00:00 -0800');
-        dates.push('Tue, 24 Nov 2015 00:00:00 -0800');
-        dates.push('Tue, 24 Nov 2015 00:00:00 -0800');
-        dates.push('Fri, 20 Nov 2015 00:00:00 -0800');
-        dates.push('Wed, 11 Nov 2015 00:00:00 -0800');
-        dates.push('Mon, 09 Nov 2015 00:00:00 -0800');
-        dates.push('Fri, 06 Nov 2015 00:00:00 -0800');
-        dates.push('Mon, 02 Nov 2015 00:00:00 -0800');
-        dates.push('Tue, 22 Sep 2015 00:00:00 -0700');
-        dates.push('Mon, 21 Sep 2015 00:00:00 -0700');
-        dates.push('Wed, 09 Sep 2015 00:00:00 -0700');
-        dates.push('Tue, 08 Sep 2015 00:00:00 -0700');
-        dates.push('Sat, 05 Sep 2015 00:00:00 -0700');
-        dates.push('Tue, 18 Aug 2015 00:00:00 -0700');
-        dates.push('Thu, 13 Aug 2015 00:00:00 -0700');
-        dates.push('Tue, 04 Aug 2015 00:00:00 -0700');
-        dates.push('Tue, 21 Jul 2015 00:00:00 -0700');
-        dates.push('Mon, 22 Jun 2015 00:00:00 -0700');
-        dates.push('Wed, 10 Jun 2015 00:00:00 -0700');
-        dates.push('Thu, 04 Jun 2015 00:00:00 -0700');
-        dates.push('Wed, 03 Jun 2015 00:00:00 -0700');
-        dates.push('Tue, 26 May 2015 00:00:00 -0700');
-        dates.push('Tue, 21 Apr 2015 00:00:00 -0700');
-        dates.push('Tue, 21 Apr 2015 00:00:00 -0700');
-        dates.push('Wed, 15 Apr 2015 00:00:00 -0700');
-        dates.push('Mon, 02 Mar 2015 00:00:00 -0800');
-        dates.push('Fri, 27 Feb 2015 00:00:00 -0800');
-        dates.push('Wed, 25 Feb 2015 00:00:00 -0800');
-        dates.push('Tue, 10 Feb 2015 00:00:00 -0800');
-        dates.push('Fri, 06 Feb 2015 00:00:00 -0800');
-        dates.push('Fri, 09 Jan 2015 00:00:00 -0800');
-        dates.push('Tue, 09 Dec 2014 00:00:00 -0800');
-        dates.push('Tue, 25 Nov 2014 00:00:00 -0800');
-        dates.push('Tue, 18 Nov 2014 00:00:00 -0800');
-        dates.push('Thu, 13 Nov 2014 00:00:00 -0800');
-        dates.push('Tue, 11 Nov 2014 00:00:00 -0800');
-        dates.push('Thu, 06 Nov 2014 00:00:00 -0800');
-        dates.push('Thu, 06 Nov 2014 00:00:00 -0800');
-        dates.push('Fri, 17 Oct 2014 00:00:00 -0700');
-        dates.push('Thu, 16 Oct 2014 00:00:00 -0700');
-        dates.push('Mon, 22 Sep 2014 00:00:00 -0700');
-        dates.push('Mon, 08 Sep 2014 00:00:00 -0700');
-        dates.push('Wed, 13 Aug 2014 00:00:00 -0700');
-        dates.push('Mon, 11 Aug 2014 00:00:00 -0700');
-        dates.push('Wed, 06 Aug 2014 00:00:00 -0700');
-        dates.push('Mon, 04 Aug 2014 00:00:00 -0700');
-        dates.push('Thu, 10 Jul 2014 00:00:00 -0700');
-        dates.push('Tue, 08 Jul 2014 00:00:00 -0700');
-        dates.push('Thu, 12 Jun 2014 00:00:00 -0700');
-        dates.push('Fri, 23 May 2014 00:00:00 -0700');
-        dates.push('Wed, 23 Apr 2014 00:00:00 -0700');
-        dates.push('Wed, 09 Apr 2014 00:00:00 -0700');
-        dates.push('Wed, 05 Mar 2014 00:00:00 -0800');
-        dates.push('Mon, 03 Mar 2014 00:00:00 -0800');
-        dates.push('Thu, 20 Feb 2014 00:00:00 -0800');
-        dates.push('Mon, 10 Feb 2014 00:00:00 -0800');
-        dates.push('Fri, 31 Jan 2014 00:00:00 -0800');
-        dates.push('Thu, 02 Jan 2014 00:00:00 -0800');
-        dates.push('Mon, 16 Dec 2013 00:00:00 -0800');
-        dates.push('Fri, 06 Dec 2013 00:00:00 -0800');
-        dates.push('Wed, 04 Dec 2013 00:00:00 -0800');
-        dates.push('Fri, 22 Nov 2013 00:00:00 -0800');
-        dates.push('Fri, 15 Nov 2013 00:00:00 -0800');
-        dates.push('Wed, 13 Nov 2013 00:00:00 -0800');
-        dates.push('Wed, 06 Nov 2013 00:00:00 -0800');
-        dates.push('Mon, 28 Oct 2013 00:00:00 -0700');
-        dates.push('Mon, 21 Oct 2013 00:00:00 -0700');
-        dates.push('Thu, 10 Oct 2013 00:00:00 -0700');
-        dates.push('Wed, 02 Oct 2013 00:00:00 -0700');
-        dates.push('Tue, 01 Oct 2013 00:00:00 -0700');
-        dates.push('Fri, 13 Sep 2013 00:00:00 -0700');
-        dates.push('Fri, 06 Sep 2013 00:00:00 -0700');
-        dates.push('Mon, 12 Aug 2013 13:45:04 -0700');
-        dates.push('Tue, 23 Jul 2013 11:45:04 -0700');
-        dates.push('Thu, 11 Jul 2013 13:45:04 -0700');
+        dates.push('Fri, 22 Mar 2019 00:00:00 +0900');
+        dates.push('Fri, 22 Mar 2019 00:00:00 +0900');
+        dates.push('Mon, 18 Mar 2019 00:00:00 +0900');
+        dates.push('Mon, 18 Mar 2019 00:00:00 +0900');
+        dates.push('Fri, 08 Mar 2019 00:00:00 +0900');
+        dates.push('Thu, 28 Feb 2019 00:00:00 +0900');
+        dates.push('Sat, 16 Feb 2019 00:00:00 +0900');
+        dates.push('Sat, 09 Feb 2019 00:00:00 +0900');
+        dates.push('Mon, 04 Feb 2019 00:00:00 +0900');
+        dates.push('Mon, 04 Feb 2019 00:00:00 +0900');
+        dates.push('Thu, 17 Jan 2019 00:00:00 +0900');
+        dates.push('Thu, 10 Jan 2019 00:00:00 +0900');
+        dates.push('Thu, 03 Jan 2019 00:00:00 +0900');
+        dates.push('Tue, 25 Dec 2018 00:00:00 +0900');
+        dates.push('Fri, 21 Dec 2018 00:00:00 +0900');
+        dates.push('Fri, 23 Nov 2018 00:00:00 +0900');
+        dates.push('Wed, 21 Nov 2018 00:00:00 +0900');
+        dates.push('Wed, 07 Nov 2018 00:00:00 +0900');
+        dates.push('Sun, 07 Oct 2018 00:00:00 +0900');
+        dates.push('Fri, 05 Oct 2018 00:00:00 +0900');
+        dates.push('Thu, 04 Oct 2018 00:00:00 +0900');
+        dates.push('Thu, 27 Sep 2018 00:00:00 +0900');
+        dates.push('Wed, 26 Sep 2018 00:00:00 +0900');
+        dates.push('Mon, 17 Sep 2018 00:00:00 +0900');
+        dates.push('Mon, 17 Sep 2018 00:00:00 +0900');
+        dates.push('Tue, 14 Aug 2018 00:00:00 +0900');
+        dates.push('Fri, 10 Aug 2018 00:00:00 +0900');
+        dates.push('Wed, 01 Aug 2018 00:00:00 +0900');
+        dates.push('Thu, 26 Jul 2018 00:00:00 +0900');
+        dates.push('Mon, 23 Jul 2018 00:00:00 +0900');
+        dates.push('Wed, 18 Jul 2018 00:00:00 +0900');
+        dates.push('Tue, 26 Jun 2018 00:00:00 +0900');
+        dates.push('Tue, 19 Jun 2018 00:00:00 +0900');
+        dates.push('Mon, 04 Jun 2018 00:00:00 +0900');
+        dates.push('Mon, 16 Apr 2018 00:00:00 +0900');
+        dates.push('Tue, 27 Feb 2018 00:00:00 +0900');
+        dates.push('Mon, 26 Feb 2018 00:00:00 +0900');
+        dates.push('Fri, 02 Feb 2018 00:00:00 +0900');
+        dates.push('Mon, 29 Jan 2018 00:00:00 +0900');
+        dates.push('Sat, 30 Dec 2017 00:00:00 +0900');
+        dates.push('Wed, 20 Dec 2017 00:00:00 +0900');
+        dates.push('Mon, 18 Dec 2017 00:00:00 +0900');
+        dates.push('Mon, 04 Dec 2017 00:00:00 +0900');
+        dates.push('Mon, 27 Nov 2017 00:00:00 +0900');
+        dates.push('Tue, 21 Nov 2017 00:00:00 +0900');
+        dates.push('Mon, 20 Nov 2017 00:00:00 +0900');
+        dates.push('Fri, 10 Nov 2017 00:00:00 +0900');
+        dates.push('Thu, 09 Nov 2017 00:00:00 +0900');
+        dates.push('Tue, 31 Oct 2017 00:00:00 +0900');
+        dates.push('Mon, 30 Oct 2017 00:00:00 +0900');
+        dates.push('Thu, 19 Oct 2017 00:00:00 +0900');
+        dates.push('Wed, 18 Oct 2017 00:00:00 +0900');
+        dates.push('Mon, 16 Oct 2017 00:00:00 +0900');
+        dates.push('Tue, 10 Oct 2017 00:00:00 +0900');
+        dates.push('Wed, 27 Sep 2017 00:00:00 +0900');
+        dates.push('Mon, 25 Sep 2017 00:00:00 +0900');
+        dates.push('Fri, 22 Sep 2017 00:00:00 +0900');
+        dates.push('Fri, 08 Sep 2017 00:00:00 +0900');
+        dates.push('Tue, 05 Sep 2017 00:00:00 +0900');
+        dates.push('Tue, 29 Aug 2017 00:00:00 +0900');
+        dates.push('Fri, 12 May 2017 00:00:00 +0900');
+        dates.push('Thu, 04 May 2017 00:00:00 +0900');
+        dates.push('Thu, 04 May 2017 00:00:00 +0900');
+        dates.push('Mon, 01 May 2017 00:00:00 +0900');
+        dates.push('Fri, 28 Apr 2017 00:00:00 +0900');
+        dates.push('Wed, 26 Apr 2017 00:00:00 +0900');
+        dates.push('Wed, 05 Apr 2017 00:00:00 +0900');
+        dates.push('Thu, 30 Mar 2017 00:00:00 +0900');
+        dates.push('Tue, 07 Mar 2017 00:00:00 +0900');
+        dates.push('Mon, 13 Feb 2017 00:00:00 +0900');
+        dates.push('Wed, 01 Feb 2017 00:00:00 +0900');
+        dates.push('Fri, 27 Jan 2017 00:00:00 +0900');
+        dates.push('Mon, 23 Jan 2017 00:00:00 +0900');
+        dates.push('Thu, 05 Jan 2017 00:00:00 +0900');
+        dates.push('Mon, 12 Dec 2016 00:00:00 +0900');
+        dates.push('Wed, 07 Dec 2016 00:00:00 +0900');
+        dates.push('Fri, 02 Dec 2016 00:00:00 +0900');
+        dates.push('Mon, 07 Nov 2016 00:00:00 +0900');
+        dates.push('Tue, 25 Oct 2016 00:00:00 +0900');
+        dates.push('Mon, 24 Oct 2016 00:00:00 +0900');
+        dates.push('Mon, 24 Oct 2016 00:00:00 +0900');
+        dates.push('Mon, 24 Oct 2016 00:00:00 +0900');
+        dates.push('Tue, 04 Oct 2016 00:00:00 +0900');
+        dates.push('Sat, 01 Oct 2016 00:00:00 +0900');
+        dates.push('Wed, 14 Sep 2016 00:00:00 +0900');
+        dates.push('Mon, 22 Aug 2016 00:00:00 +0900');
+        dates.push('Fri, 12 Aug 2016 00:00:00 +0900');
+        dates.push('Wed, 27 Jul 2016 00:00:00 +0900');
+        dates.push('Wed, 13 Jul 2016 00:00:00 +0900');
+        dates.push('Wed, 13 Jul 2016 00:00:00 +0900');
+        dates.push('Mon, 11 Jul 2016 00:00:00 +0900');
+        dates.push('Sat, 02 Jul 2016 00:00:00 +0900');
+        dates.push('Thu, 23 Jun 2016 00:00:00 +0900');
+        dates.push('Tue, 14 Jun 2016 00:00:00 +0900');
+        dates.push('Fri, 03 Jun 2016 00:00:00 +0900');
+        dates.push('Tue, 24 May 2016 00:00:00 +0900');
+        dates.push('Wed, 27 Apr 2016 00:00:00 +0900');
+        dates.push('Wed, 20 Apr 2016 00:00:00 +0900');
+        dates.push('Tue, 05 Apr 2016 00:00:00 +0900');
+        dates.push('Mon, 04 Apr 2016 00:00:00 +0900');
+        dates.push('Mon, 04 Apr 2016 00:00:00 +0900');
+        dates.push('Wed, 23 Mar 2016 00:00:00 +0900');
+        dates.push('Tue, 22 Mar 2016 00:00:00 +0900');
+        dates.push('Sat, 12 Mar 2016 00:00:00 +0900');
+        dates.push('Fri, 04 Mar 2016 00:00:00 +0900');
+        dates.push('Thu, 03 Mar 2016 00:00:00 +0900');
+        dates.push('Wed, 02 Mar 2016 00:00:00 +0900');
+        dates.push('Wed, 02 Mar 2016 00:00:00 +0900');
+        dates.push('Tue, 16 Feb 2016 00:00:00 +0900');
+        dates.push('Tue, 09 Feb 2016 00:00:00 +0900');
+        dates.push('Thu, 04 Feb 2016 00:00:00 +0900');
+        dates.push('Thu, 04 Feb 2016 00:00:00 +0900');
+        dates.push('Thu, 28 Jan 2016 00:00:00 +0900');
+        dates.push('Sun, 24 Jan 2016 00:00:00 +0900');
+        dates.push('Tue, 19 Jan 2016 00:00:00 +0900');
+        dates.push('Mon, 18 Jan 2016 00:00:00 +0900');
+        dates.push('Fri, 08 Jan 2016 00:00:00 +0900');
+        dates.push('Fri, 08 Jan 2016 00:00:00 +0900');
+        dates.push('Fri, 18 Dec 2015 00:00:00 +0900');
+        dates.push('Mon, 14 Dec 2015 00:00:00 +0900');
+        dates.push('Tue, 08 Dec 2015 00:00:00 +0900');
+        dates.push('Tue, 08 Dec 2015 00:00:00 +0900');
+        dates.push('Tue, 24 Nov 2015 00:00:00 +0900');
+        dates.push('Tue, 24 Nov 2015 00:00:00 +0900');
+        dates.push('Fri, 20 Nov 2015 00:00:00 +0900');
+        dates.push('Wed, 11 Nov 2015 00:00:00 +0900');
+        dates.push('Mon, 09 Nov 2015 00:00:00 +0900');
+        dates.push('Fri, 06 Nov 2015 00:00:00 +0900');
+        dates.push('Mon, 02 Nov 2015 00:00:00 +0900');
+        dates.push('Tue, 22 Sep 2015 00:00:00 +0900');
+        dates.push('Mon, 21 Sep 2015 00:00:00 +0900');
+        dates.push('Wed, 09 Sep 2015 00:00:00 +0900');
+        dates.push('Tue, 08 Sep 2015 00:00:00 +0900');
+        dates.push('Sat, 05 Sep 2015 00:00:00 +0900');
+        dates.push('Tue, 18 Aug 2015 00:00:00 +0900');
+        dates.push('Thu, 13 Aug 2015 00:00:00 +0900');
+        dates.push('Tue, 04 Aug 2015 00:00:00 +0900');
+        dates.push('Tue, 21 Jul 2015 00:00:00 +0900');
+        dates.push('Mon, 22 Jun 2015 00:00:00 +0900');
+        dates.push('Wed, 10 Jun 2015 00:00:00 +0900');
+        dates.push('Thu, 04 Jun 2015 00:00:00 +0900');
+        dates.push('Wed, 03 Jun 2015 00:00:00 +0900');
+        dates.push('Tue, 26 May 2015 00:00:00 +0900');
+        dates.push('Tue, 21 Apr 2015 00:00:00 +0900');
+        dates.push('Tue, 21 Apr 2015 00:00:00 +0900');
+        dates.push('Wed, 15 Apr 2015 00:00:00 +0900');
+        dates.push('Mon, 02 Mar 2015 00:00:00 +0900');
+        dates.push('Fri, 27 Feb 2015 00:00:00 +0900');
+        dates.push('Wed, 25 Feb 2015 00:00:00 +0900');
+        dates.push('Tue, 10 Feb 2015 00:00:00 +0900');
+        dates.push('Fri, 06 Feb 2015 00:00:00 +0900');
+        dates.push('Fri, 09 Jan 2015 00:00:00 +0900');
+        dates.push('Tue, 09 Dec 2014 00:00:00 +0900');
+        dates.push('Tue, 25 Nov 2014 00:00:00 +0900');
+        dates.push('Tue, 18 Nov 2014 00:00:00 +0900');
+        dates.push('Thu, 13 Nov 2014 00:00:00 +0900');
+        dates.push('Tue, 11 Nov 2014 00:00:00 +0900');
+        dates.push('Thu, 06 Nov 2014 00:00:00 +0900');
+        dates.push('Thu, 06 Nov 2014 00:00:00 +0900');
+        dates.push('Fri, 17 Oct 2014 00:00:00 +0900');
+        dates.push('Thu, 16 Oct 2014 00:00:00 +0900');
+        dates.push('Mon, 22 Sep 2014 00:00:00 +0900');
+        dates.push('Mon, 08 Sep 2014 00:00:00 +0900');
+        dates.push('Wed, 13 Aug 2014 00:00:00 +0900');
+        dates.push('Mon, 11 Aug 2014 00:00:00 +0900');
+        dates.push('Wed, 06 Aug 2014 00:00:00 +0900');
+        dates.push('Mon, 04 Aug 2014 00:00:00 +0900');
+        dates.push('Thu, 10 Jul 2014 00:00:00 +0900');
+        dates.push('Tue, 08 Jul 2014 00:00:00 +0900');
+        dates.push('Thu, 12 Jun 2014 00:00:00 +0900');
+        dates.push('Fri, 23 May 2014 00:00:00 +0900');
+        dates.push('Wed, 23 Apr 2014 00:00:00 +0900');
+        dates.push('Wed, 09 Apr 2014 00:00:00 +0900');
+        dates.push('Wed, 05 Mar 2014 00:00:00 +0900');
+        dates.push('Mon, 03 Mar 2014 00:00:00 +0900');
+        dates.push('Thu, 20 Feb 2014 00:00:00 +0900');
+        dates.push('Mon, 10 Feb 2014 00:00:00 +0900');
+        dates.push('Fri, 31 Jan 2014 00:00:00 +0900');
+        dates.push('Thu, 02 Jan 2014 00:00:00 +0900');
+        dates.push('Mon, 16 Dec 2013 00:00:00 +0900');
+        dates.push('Fri, 06 Dec 2013 00:00:00 +0900');
+        dates.push('Wed, 04 Dec 2013 00:00:00 +0900');
+        dates.push('Fri, 22 Nov 2013 00:00:00 +0900');
+        dates.push('Fri, 15 Nov 2013 00:00:00 +0900');
+        dates.push('Wed, 13 Nov 2013 00:00:00 +0900');
+        dates.push('Wed, 06 Nov 2013 00:00:00 +0900');
+        dates.push('Mon, 28 Oct 2013 00:00:00 +0900');
+        dates.push('Mon, 21 Oct 2013 00:00:00 +0900');
+        dates.push('Thu, 10 Oct 2013 00:00:00 +0900');
+        dates.push('Wed, 02 Oct 2013 00:00:00 +0900');
+        dates.push('Tue, 01 Oct 2013 00:00:00 +0900');
+        dates.push('Fri, 13 Sep 2013 00:00:00 +0900');
+        dates.push('Fri, 06 Sep 2013 00:00:00 +0900');
+        dates.push('Tue, 13 Aug 2013 05:45:04 +0900');
+        dates.push('Wed, 24 Jul 2013 03:45:04 +0900');
+        dates.push('Fri, 12 Jul 2013 05:45:04 +0900');
     }
     var new_blog_count = 0;
     for(var i = 0; i < dates.length ; i++) {



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