You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by st...@apache.org on 2015/03/03 07:53:28 UTC

svn commit: r1663531 [5/12] - in /cordova/site: ./ public/ public/announcements/2013/11/15/ public/announcements/2013/11/22/ public/announcements/2013/12/16/ public/announcements/2014/02/20/ public/announcements/2014/05/23/ public/announcements/2014/08...

Modified: cordova/site/public/blog/2014/11/18/cordova-perf.html
URL: http://svn.apache.org/viewvc/cordova/site/public/blog/2014/11/18/cordova-perf.html?rev=1663531&r1=1663530&r2=1663531&view=diff
==============================================================================
--- cordova/site/public/blog/2014/11/18/cordova-perf.html (original)
+++ cordova/site/public/blog/2014/11/18/cordova-perf.html Tue Mar  3 06:53:27 2015
@@ -69,81 +69,84 @@
     <div class="meta">Posted by: <a href="https://twitter.com/nparashuram">Parashuram</a></div>
     <p class="meta">18 Nov 2014</p>
     <div class="post">
-    <p>While developing mobile apps with Cordova, performance is a common concern many developers have. Though recent WebView improvements have made smooth experiences easy to achieve, it is always important to watch out for code in our apps that may make the app <a href="http://jankfree.org">janky</a>.   </p>
+    
+<p>While developing mobile apps with Cordova, performance is a common concern many developers have. Though recent WebView improvements have made smooth experiences easy to achieve, it is always important to watch out for code in our apps that may make the app <a href="http://jankfree.org">janky</a>.</p>
 
-<h1 id="measuring-performance">Measuring Performance</h1>
-<p>The latest versions of Android and iOS WebViews can connect to and leverage developer tools in browsers for profiling rendering performance of apps. Developer tools provide insights into details like frames rates, repaints, layouts, etc. </p>
+<h1 id="measuring_performance">Measuring Performance</h1>
 
-<p><img src="http://i.imgur.com/zR2f1.gif" alt="Chrome Developer tools - profiling" />   </p>
+<p>The latest versions of Android and iOS WebViews can connect to and leverage developer tools in browsers for profiling rendering performance of apps. Developer tools provide insights into details like frames rates, repaints, layouts, etc.</p>
 
-<p>Articles (like <a href="http://aerotwist.com/blog/my-performance-audit-workflow/">this</a> and <a href="http://calendar.perfplanet.com/2013/the-runtime-performance-checklist/">this</a>) articulate the typical workflow for auditing performance of webpages. Similar principles can be applied to apps too. 
-<!--more-->
-# Automating Performance measurements
-With rapid development and release cycles of apps, it becomes hard to do regular performance audits. Automating the process with tools would ensure that we have a handle on the performance of the app. </p>
+<p><img src="http://i.imgur.com/zR2f1.gif" alt="Chrome Developer tools - profiling" /></p>
+
+<p>Articles (like <a href="http://aerotwist.com/blog/my-performance-audit-workflow/">this</a> and <a href="http://calendar.perfplanet.com/2013/the-runtime-performance-checklist/">this</a>) articulate the typical workflow for auditing performance of webpages. Similar principles can be applied to apps too. <!--more--></p>
+
+<h1 id="automating_performance_measurements">Automating Performance measurements</h1>
+
+<p>With rapid development and release cycles of apps, it becomes hard to do regular performance audits. Automating the process with tools would ensure that we have a handle on the performance of the app.</p>
 
 <p><a href="http://npmjs.org/package/browser-perf">browser-perf</a> is a NodeJS based tool picks up data from browser developer tools and converts them to key performance indicators. It is based on Chromium’s performance test suite called <a href="http://www.chromium.org/developers/telemetry">telemetry</a> and supports iOS and Android based Cordova apps. All metrics are recorded while mimicking typical user interactions.</p>
 
-<h2 id="testing-ios-apps">Testing iOS Apps</h2>
-<p>To start testing your Cordova app for iOS, you would need to <code>npm install</code> <a href="http://appium.io/">Appium</a> and <a href="http://appium.io/getting-started.html?lang=en">set it up</a>. Appium is a tool to automate your app and emulate user interactions like clicking buttons or typing in the app. Ensure that the app is built at least once and the emulator is running. </p>
+<h2 id="testing_ios_apps">Testing iOS Apps</h2>
+
+<p>To start testing your Cordova app for iOS, you would need to <code>npm install</code> <a href="http://appium.io/">Appium</a> and <a href="http://appium.io/getting-started.html?lang=en">set it up</a>. Appium is a tool to automate your app and emulate user interactions like clicking buttons or typing in the app. Ensure that the app is built at least once and the emulator is running.</p>
 
-<p>You can then use the following NodeJS snippet to run a simple test. In the example, a value is typed entered into a text box, and a button is clicked. </p>
+<p>You can then use the following NodeJS snippet to run a simple test. In the example, a value is typed entered into a text box, and a button is clicked.</p>
 
-<pre><code>var browserPerf = require('browser-perf');
+<pre><code>var browserPerf = require(&#39;browser-perf&#39;);
 browserPerf(undefined, function(err, res) {
     if (err) {
-        console.log('An error occured');
+        console.log(&#39;An error occured&#39;);
     } else {
-        console.log('Result is ', res);
+        console.log(&#39;Result is &#39;, res);
     }
 }, {
-    selenium: "http://localhost:4723/wd/hub",
+    selenium: &quot;http://localhost:4723/wd/hub&quot;,
     browsers: [{
-        platformName: "iOS",
-        platformVersion: "8.0",
-        deviceName: "iPhone Simulator",
-        app: "~/cordovaapp/platforms/ios/build/emulator/HelloCordova.app",
-        bundleId: "io.cordova.hellocordova",
+        platformName: &quot;iOS&quot;,
+        platformVersion: &quot;8.0&quot;,
+        deviceName: &quot;iPhone Simulator&quot;,
+        app: &quot;~/cordovaapp/platforms/ios/build/emulator/HelloCordova.app&quot;,
+        bundleId: &quot;io.cordova.hellocordova&quot;,
         autoWebview: true
     }],
     log: console.log.bind(console),
     actions: [
         function(browser) {
-            return browser.elementById('count').then(function(el) {
+            return browser.elementById(&#39;count&#39;).then(function(el) {
                 el.type(1000);
             }).then(function() {
-                return browser.elementById('checkout');
+                return browser.elementById(&#39;checkout&#39;);
             }).then(function(el) {
                 return el.click();
             });
         }
     ]
-});
-</code></pre>
+});</code></pre>
 
-<p>Additional user interactions can be used instead of typing and clicking by following the guide on <a href="https://github.com/axemclion/browser-perf/wiki/Node-Module---API#actions">this page</a>. </p>
+<p>Additional user interactions can be used instead of typing and clicking by following the guide on <a href="https://github.com/axemclion/browser-perf/wiki/Node-Module---API#actions">this page</a>.</p>
 
-<p>The <a href="https://www.youtube.com/watch?v=TG_eTe_H-s4">video below</a> illustrates the steps. Note that in the video, the config file does not specify any action. Hence, the default action scrolls the page and records the metrics. </p>
+<p>The <a href="https://www.youtube.com/watch?v=TG_eTe_H-s4">video below</a> illustrates the steps. Note that in the video, the config file does not specify any action. Hence, the default action scrolls the page and records the metrics.</p>
 
 <p><a href="https://www.youtube.com/watch?v=TG_eTe_H-s4"><img src="http://img.youtube.com/vi/TG_eTe_H-s4/0.jpg" alt="Video of steps to run perf tests in Cordova" /></a></p>
 
-<h2 id="testing-android-apps">Testing Android Apps</h2>
-<p>Testing Android apps is very similar to testing iOS Apps. The only difference would be the use of <a href="https://sites.google.com/a/chromium.org/chromedriver/">ChromeDriver</a> instead of Appium. Consequently, the configuration would look something like <a href="https://github.com/axemclion/browser-perf/blob/master/test/res/android-hybrid.config.json">this</a>. </p>
+<h2 id="testing_android_apps">Testing Android Apps</h2>
 
-<p>Additional details about setting up the test environment can be found <a href="https://github.com/axemclion/browser-perf/wiki/Setup-Instructions#testing-mobile-cordova-webviewhybrid-applications">here</a>, with reference for browser-perf in the <a href="https://github.com/axemclion/browser-perf/wiki/Node-Module---API">wiki pages</a>. </p>
+<p>Testing Android apps is very similar to testing iOS Apps. The only difference would be the use of <a href="https://sites.google.com/a/chromium.org/chromedriver/">ChromeDriver</a> instead of Appium. Consequently, the configuration would look something like <a href="https://github.com/axemclion/browser-perf/blob/master/test/res/android-hybrid.config.json">this</a>.</p>
 
-<h1 id="finishing-touches">Finishing touches</h1>
-<p>browser-perf can record a plethora of metrics ranging from frame rates, to count of expensive paints or expensive events that could cause jank. Each of these metrics indicates how a CSS transform or an onscroll handler may have changed the performance of the app. 
-Recording this data over time can give better insight into how each code change affects the smooth experience.
-The <code>res</code> object in browser-perf callback from the example snippet above can be saved to a database and graphed. For example, <a href="http://npmjs.org/package/perfjankie">Perfjankie</a> works on top of browser-perf, stores the results in a CouchDB database, and displays the results</p>
+<p>Additional details about setting up the test environment can be found <a href="https://github.com/axemclion/browser-perf/wiki/Setup-Instructions#testing-mobile-cordova-webviewhybrid-applications">here</a>, with reference for browser-perf in the <a href="https://github.com/axemclion/browser-perf/wiki/Node-Module---API">wiki pages</a>.</p>
+
+<h1 id="finishing_touches">Finishing touches</h1>
+
+<p>browser-perf can record a plethora of metrics ranging from frame rates, to count of expensive paints or expensive events that could cause jank. Each of these metrics indicates how a CSS transform or an onscroll handler may have changed the performance of the app. Recording this data over time can give better insight into how each code change affects the smooth experience. The <code>res</code> object in browser-perf callback from the example snippet above can be saved to a database and graphed. For example, <a href="http://npmjs.org/package/perfjankie">Perfjankie</a> works on top of browser-perf, stores the results in a CouchDB database, and displays the results</p>
 
 <h1 id="summary">Summary</h1>
+
 <p>In this article, we saw how to measure the rendering performance of Cordova apps. With the tools described, you can ensure that your apps are just as good as native apps are supposed to be.</p>
 
 <blockquote>
-  <p>If you would like to run this for your Cordova app, please <a href="http://twitter.com/nparashuram">contact me</a>, and I would be glad to help you to get started or check out this <a href="http://blog.nparashuram.com/2014/10/measuring-rendering-performance-metrics.html">related blog post</a>.  </p>
+<p>If you would like to run this for your Cordova app, please <a href="http://twitter.com/nparashuram">contact me</a>, and I would be glad to help you to get started or check out this <a href="http://blog.nparashuram.com/2014/10/measuring-rendering-performance-metrics.html">related blog post</a>.</p>
 </blockquote>
 
-
     </div>
 </div>
 

Modified: cordova/site/public/blog/index.html
URL: http://svn.apache.org/viewvc/cordova/site/public/blog/index.html?rev=1663531&r1=1663530&r2=1663531&view=diff
==============================================================================
--- cordova/site/public/blog/index.html (original)
+++ cordova/site/public/blog/index.html Tue Mar  3 06:53:27 2015
@@ -69,6 +69,16 @@
 <ul class="posts">
   
     <li>
+    <span>02 Mar 2015</span> &raquo;
+    <a href="//cordova.apache.org/news/2015/03/02/tools-release.html">Tools Release: March 02, 2015</a>
+    </li>
+  
+    <li>
+    <span>27 Feb 2015</span> &raquo;
+    <a href="//cordova.apache.org/announcements/2015/02/27/cordova-windows-3.8.0.html">Apache Cordova Windows 3.8.0</a>
+    </li>
+  
+    <li>
     <span>25 Feb 2015</span> &raquo;
     <a href="//cordova.apache.org/announcements/2015/02/25/cordova-ios-3.8.0.html">Apache Cordova iOS 3.8.0</a>
     </li>
@@ -115,7 +125,7 @@
   
     <li>
     <span>06 Nov 2014</span> &raquo;
-    <a href="//cordova.apache.org/announcements/2014/11/06/cordova-wp-windows-3.7.0.html">Apache Cordova Windows &amp; Windows Phone 3.7.0</a>
+    <a href="//cordova.apache.org/announcements/2014/11/06/cordova-wp-windows-3.7.0.html">Apache Cordova Windows & Windows Phone 3.7.0</a>
     </li>
   
     <li>

Modified: cordova/site/public/blog/releases/2013/07/23/cordova-3.html
URL: http://svn.apache.org/viewvc/cordova/site/public/blog/releases/2013/07/23/cordova-3.html?rev=1663531&r1=1663530&r2=1663531&view=diff
==============================================================================
--- cordova/site/public/blog/releases/2013/07/23/cordova-3.html (original)
+++ cordova/site/public/blog/releases/2013/07/23/cordova-3.html Tue Mar  3 06:53:27 2015
@@ -69,48 +69,46 @@
     <div class="meta">Posted by: <a href="https://twitter.com/brianleroux">Brian LeRoux</a></div>
     <p class="meta">23 Jul 2013</p>
     <div class="post">
-    <p>It went live on Friday! Snapshot available on our <a href="https://www.apache.org/dist/cordova/">download page</a> but before downloading please read on to find out whats new including for more ways to work with Cordova!
-<!--more--></p>
+    
+<p>It went live on Friday! Snapshot available on our <a href="https://www.apache.org/dist/cordova/">download page</a> but before downloading please read on to find out whats new including for more ways to work with Cordova! <!--more--></p>
 
-<h2 id="light-weight-core">Light Weight Core</h2>
+<h2 id="light_weight_core">Light Weight Core</h2>
 
 <p>Cordova 3 introduces a new unified project structure and ships with a very limited API surface. Developers can now compose a version of Cordova with only the APIs they need. In the past, Cordova shipped with the entire kitchen sink of APIs that most applications only needed a small subset of. This lead to messy, and often not even necessary, upgrading for our community. With the release of Cordova 3 you start with a very light weight core and only add the API surface your application requires. Obviously, this means a performance improvement but the real win here is maintenance and upgrading. We’ll continue to maintain “core” APIs which are the same device APIs you’ve come to know and love.</p>
 
-<h2 id="new-command-line-tooling">New Command Line Tooling</h2>
+<h2 id="new_command_line_tooling">New Command Line Tooling</h2>
 
 <p>We’re very excited to share two new command line tools: Cordova and Plugman. Both are implemented using <code>NodeJS</code> and thusly distributed via <code>npm</code>. The <code>cordova</code> command line tool has been a long time coming. It unifies all platforms into a single project structure, making it easy to maintain a single codebase for multiple platforms. The <code>cordova</code> tool builds off of our other new tool: <code>plugman</code>, which provides automated discovery, installation, and removal of both core and custom plugins.</p>
 
-<p>We’ve been testing for months but keep in mind both tools are new. Bugs happen, so you if you find one or even just have an idea for a new feature please visit our <a href="http://issues.cordova.io">issue tracker</a>.</p>
+<p>We’ve been testing for months but keep in mind both tools are new. Bugs happen, so you if you find one or even just have an idea for a new feature please visit our <a href="http://issues.cordova.io
+">issue tracker</a>.</p>
 
-<h2 id="installing--downloading">Installing &gt; Downloading</h2>
+<h2 id="installing__downloading">Installing &gt; Downloading</h2>
 
 <p>First, <a href="http://nodejs.org">ensure you have NodeJS installed</a> and then simply run <code>npm install -g cordova</code>. From here its a typical comand line utility. Get started by building an iOS app!</p>
 
 <pre><code>cordova create MyFunkyApp
 cd MyFunkyApp
 cordova platform add ios
-cordova emulate ios
-</code></pre>
+cordova emulate ios</code></pre>
 
 <p>Cordova has to download platform files the first time <code>create</code> is run, so the first app you create might be a little slow. Just use the <code>-d</code> flag to see progress. For example, <code>cordova -d platform add ios</code>. Maybe crack a beer and chill while it goes about its business first run.</p>
 
 <p>Now let’s add Android, <code>cordova platform add android</code>. Yes: that easy!</p>
 
-<h1 id="installing-plugins">Installing Plugins</h1>
+<h1 id="installing_plugins">Installing Plugins</h1>
 
 <p>If you are working with a platform project directly (one created through a Cordova platform’s <code>bin/create</code> script instead of through the <code>cordova</code> tool), then <code>plugman</code> can be used standalone. Again, <a href="http://nodejs.org">ensure you have NodeJS installed</a> and then simply run <code>npm install -g plugman</code>.</p>
 
 <pre><code>cd MyFunkyApp
-cordova plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-geolocation.git
-</code></pre>
+cordova plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-geolocation.git</code></pre>
 
 <p>You now have geolocation enabled your project!</p>
 
 <p>If you are working with a native project directly then <code>plugman</code> can be used standalone. Again, <a href="http://nodejs.org">ensure you have NodeJS installed</a> and then simply run <code>npm install -g plugman</code>.</p>
 
 <pre><code>cd MyAndroidProject
-plugman --platform android --project . --plugin https://git-wip-us.apache.org/repos/asf/cordova-plugin-geolocation.git
-</code></pre>
+plugman --platform android --project . --plugin https://git-wip-us.apache.org/repos/asf/cordova-plugin-geolocation.git</code></pre>
 
 <p>Of course, you can create your own plugins! (And we’re really excited to see what you do.) You can learn how to author a plugin by <a href="http://cordova.apache.org/docs/en/3.0.0/guide_hybrid_plugins_index.md.html#Plugin%20Development%20Guide">reading the plugin development guide</a>. We are going to be writing much more documentation about this in the future. In the meantime, you can learn a great deal looking at the <a href="https://git-wip-us.apache.org/repos/asf?s=cordova-plugin">core plugins</a>.</p>
 
@@ -118,21 +116,25 @@ plugman --platform android --project . -
 
 <p>We have documented <a href="http://cordova.apache.org/docs/en/3.0.0/guide_upgrading_index.md.html">upgrading guides</a> to help with the transition. Of course, do not hesitate to come for help in #cordova irc channel on freenode, or just visit our <a href="http://issues.cordova.io">issue tracker</a>.</p>
 
-<h1 id="known-issues">Known Issues</h1>
+<h1 id="known_issues">Known Issues</h1>
 
 <p>Remember <em>core plugins no longer exist by default in new projects</em> and you have to manually add them using <code>plugman</code> or <code>cordova</code>. You know we release regularly so you can expect updates soon and we’re going to leave a nice big window for deprecations as usual. Also remember this is an open source project so if something isn’t to your liking you can always pitch in and fix it yourself!</p>
 
 <ul>
-  <li>Various native IDE’s show generated files when using <code>cordova</code>-based projects. Be careful not to edit them or else you may lose your work when <code>cordova</code> is next run!</li>
-  <li>Whitelist (<code>&lt;access&gt;</code> tags) format is inconsistent across platforms</li>
-  <li>There is no “upgrade” command for <code>cordova</code> yet. You will need to remove and re-add plugins/platforms for now.</li>
-  <li>Not all platforms are supported by <code>cordova</code>. <em>Currently</em> only iOS, Android, BB10, and Windows Phone</li>
-  <li>A plugin discovery repository is still being baked and will be available very soon</li>
+<li>Various native IDE’s show generated files when using <code>cordova</code>-based projects. Be careful not to edit them or else you may lose your work when <code>cordova</code> is next run!</li>
+
+<li>Whitelist (<code>&lt;access&gt;</code> tags) format is inconsistent across platforms</li>
+
+<li>There is no “upgrade” command for <code>cordova</code> yet. You will need to remove and re-add plugins/platforms for now.</li>
+
+<li>Not all platforms are supported by <code>cordova</code>. <em>Currently</em> only iOS, Android, BB10, and Windows Phone</li>
+
+<li>A plugin discovery repository is still being baked and will be available very soon</li>
 </ul>
 
 <p><br /></p>
 
-<h1 id="huge-thanks">Huge Thanks</h1>
+<h1 id="huge_thanks">Huge Thanks</h1>
 
 <p>Thank you to all the committers, testers, developers, and friends of Cordova whom made this possible!</p>
 

Modified: cordova/site/public/blog/releases/2013/10/02/cordova-31.html
URL: http://svn.apache.org/viewvc/cordova/site/public/blog/releases/2013/10/02/cordova-31.html?rev=1663531&r1=1663530&r2=1663531&view=diff
==============================================================================
--- cordova/site/public/blog/releases/2013/10/02/cordova-31.html (original)
+++ cordova/site/public/blog/releases/2013/10/02/cordova-31.html Tue Mar  3 06:53:27 2015
@@ -69,142 +69,180 @@
     <div class="meta">Posted by: <a href="https://twitter.com/GrieveAndrew">Andrew Grieve</a></div>
     <p class="meta">02 Oct 2013</p>
     <div class="post">
-    <p>The <a href="http://cordova.apache.org/">Apache Cordova</a> team has just released Cordova 3.1.0. Hurray! Most notable changes include:</p>
+    
+<p>The <a href="http://cordova.apache.org/">Apache Cordova</a> team has just released Cordova 3.1.0. Hurray! Most notable changes include:</p>
 
 <ul>
-  <li>Initial (alpha) support for Firefox OS.</li>
-  <li>Windows 8 support for CLI project.</li>
-  <li>Unified <a href="http://cordova.apache.org/docs/en/3.1.0/guide_appdev_whitelist_index.md.html">whitelist syntax</a> on iOS and Android</li>
-  <li><a href="http://cordova.apache.org/docs/en/3.1.0/">Documentation</a> translated into several languages (<a href="http://cordova.apache.org/docs/fr/3.1.0/index.html">fr</a>
-<a href="http://cordova.apache.org/docs/zh/3.1.0/index.html">zh</a>
-<a href="http://cordova.apache.org/docs/de/3.1.0/index.html">de</a>
-<a href="http://cordova.apache.org/docs/it/3.1.0/index.html">it</a>
-<a href="http://cordova.apache.org/docs/ja/3.1.0/index.html">ja</a>
-<a href="http://cordova.apache.org/docs/ko/3.1.0/index.html">ko</a>
-<a href="http://cordova.apache.org/docs/ru/3.1.0/index.html">ru</a>
-<a href="http://cordova.apache.org/docs/es/3.1.0/index.html">es</a>)</li>
+<li>Initial (alpha) support for Firefox OS.</li>
+
+<li>Windows 8 support for CLI project.</li>
+
+<li>Unified <a href="http://cordova.apache.org/docs/en/3.1.0/guide_appdev_whitelist_index.md.html">whitelist syntax</a> on iOS and Android</li>
+
+<li><a href="http://cordova.apache.org/docs/en/3.1.0/">Documentation</a> translated into several languages (<a href="http://cordova.apache.org/docs/fr/3.1.0/index.html">fr</a> <a href="http://cordova.apache.org/docs/zh/3.1.0/index.html">zh</a> <a href="http://cordova.apache.org/docs/de/3.1.0/index.html">de</a> <a href="http://cordova.apache.org/docs/it/3.1.0/index.html">it</a> <a href="http://cordova.apache.org/docs/ja/3.1.0/index.html">ja</a> <a href="http://cordova.apache.org/docs/ko/3.1.0/index.html">ko</a> <a href="http://cordova.apache.org/docs/ru/3.1.0/index.html">ru</a> <a href="http://cordova.apache.org/docs/es/3.1.0/index.html">es</a>)</li>
 </ul>
 
 <p>To upgrade a 3.0 project (replace <code>android</code> with the platform you want to update):</p>
 
 <pre><code>npm install -g cordova
 cd my_project
-cordova platform update android
-</code></pre>
+cordova platform update android</code></pre>
 
-<p>For non-CLI projects or for pre-3.0 projects, refer to the <a href="http://cordova.apache.org/docs/en/3.1.0/guide_platforms_index.md.html">upgrade guides</a>.
-<!--more--></p>
+<p>For non-CLI projects or for pre-3.0 projects, refer to the <a href="http://cordova.apache.org/docs/en/3.1.0/guide_platforms_index.md.html">upgrade guides</a>. <!--more--></p>
 
-<h2 id="whats-new-in-android">What’s new in Android</h2>
+<h2 id="whats_new_in_android">What’s new in Android</h2>
 
 <p>The Android platform saw 55 commits land since 3.0.0. Notable changes include:</p>
 
 <ul>
-  <li><a href="https://issues.apache.org/jira/browse/CB-4763">CB-4763</a> Deprecated JSONUtils.java, ExifHelper.java, DirectoryManager.java, FileHelper.java</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-4725">CB-4725</a> Cordova version is now available to native plugins through <code>CordovaWebView.CORDOVA_VERSION</code></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-4652">CB-4652</a> Support for custom application templates for the <code>create</code> command</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-3819">CB-3819</a> Made it easier to set SplashScreen delay.</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-4013">CB-4013</a> Fixed <code>loadUrlTimeoutValue</code> preference.</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-4096">CB-4096</a> Implemented new unified whitelist for android</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-4133">CB-4133</a> Add main thread warning for plugins that run too long</li>
-  <li>Made it easier to use custom subclasses of WebChromeClient and WebViewClient</li>
+<li><a href="https://issues.apache.org/jira/browse/CB-4763">CB-4763</a> Deprecated JSONUtils.java, ExifHelper.java, DirectoryManager.java, FileHelper.java</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-4725">CB-4725</a> Cordova version is now available to native plugins through <code>CordovaWebView.CORDOVA_VERSION</code></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-4652">CB-4652</a> Support for custom application templates for the <code>create</code> command</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-3819">CB-3819</a> Made it easier to set SplashScreen delay.</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-4013">CB-4013</a> Fixed <code>loadUrlTimeoutValue</code> preference.</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-4096">CB-4096</a> Implemented new unified whitelist for android</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-4133">CB-4133</a> Add main thread warning for plugins that run too long</li>
+
+<li>Made it easier to use custom subclasses of WebChromeClient and WebViewClient</li>
 </ul>
 
 <p>For a full list of changes, refer to the Android <a href="https://github.com/apache/cordova-android/blob/master/RELEASENOTES.md">RELEASENOTES.md</a>.</p>
 
-<h2 id="whats-new-in-ios">What’s new in iOS</h2>
+<h2 id="whats_new_in_ios">What’s new in iOS</h2>
 
 <p>There were 50 commits to iOS since 3.0.0. The focus, of course, was support for iOS 7 and Xcode 5.</p>
 
 <ul>
-  <li><a href="https://issues.apache.org/jira/browse/CB-3020">CB-3020</a> Several fixes to HideKeyboardFormAccessoryBar and KeyboardShrinksView (still not perfect though)</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-4801">CB-4801</a> Add new iOS 7 properties for UIWebView in the config.xml &lt;preferences&gt;</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-4539">CB-4539</a> Can now create CDVViewController in Storyboard</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-4654">CB-4654</a> Allow default project template to be overridden in <code>create</code></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-4095">CB-4095</a> Unified whitelist implementations</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-4486">CB-4486</a> Give iOS plugins the ability to override URL loading</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-4408">CB-4408</a> Modify cordova/build script to build for device (armv7/armv7s)</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-3005">CB-3005</a> Add support for query parameters in StartPage url</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-4355">CB-4355</a> Localstorage plugin handles options incorrectly (the settings key is specified with upper case chars)</li>
+<li><a href="https://issues.apache.org/jira/browse/CB-3020">CB-3020</a> Several fixes to HideKeyboardFormAccessoryBar and KeyboardShrinksView (still not perfect though)</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-4801">CB-4801</a> Add new iOS 7 properties for UIWebView in the config.xml &lt;preferences&gt;</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-4539">CB-4539</a> Can now create CDVViewController in Storyboard</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-4654">CB-4654</a> Allow default project template to be overridden in <code>create</code></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-4095">CB-4095</a> Unified whitelist implementations</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-4486">CB-4486</a> Give iOS plugins the ability to override URL loading</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-4408">CB-4408</a> Modify cordova/build script to build for device (armv7/armv7s)</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-3005">CB-3005</a> Add support for query parameters in StartPage url</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-4355">CB-4355</a> Localstorage plugin handles options incorrectly (the settings key is specified with upper case chars)</li>
 </ul>
 
 <p>For a full list of changes, refer to the iOS <a href="https://github.com/apache/cordova-ios/blob/master/RELEASENOTES.md">RELEASENOTES.md</a>.</p>
 
-<h2 id="whats-new-in-blackberry">What’s new in BlackBerry</h2>
+<h2 id="whats_new_in_blackberry">What’s new in BlackBerry</h2>
 
 <p>There have been 48 commits to the BlackBerry platform since 3.0.0. Many performance and stability improvements were introduced. Other notable changes include:</p>
 
 <ul>
-  <li><a href="https://issues.apache.org/jira/browse/CB-4876">CB-4876</a> Removal of playbook implementation</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-4812">CB-4812</a> Support for “default” value in the orientation preference</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-4544">CB-4544</a> Adds a –query flag to query the user for their password when we need it</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-4563">CB-4563</a> Migrated blackberry.app parameters to preferences</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-4344">CB-4344</a> Auto-detect started simulator</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-4342">CB-4342</a> Detect USB connected device</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-4076">CB-4076</a> Modified config-parser to default to the uri attribute</li>
+<li><a href="https://issues.apache.org/jira/browse/CB-4876">CB-4876</a> Removal of playbook implementation</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-4812">CB-4812</a> Support for “default” value in the orientation preference</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-4544">CB-4544</a> Adds a –query flag to query the user for their password when we need it</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-4563">CB-4563</a> Migrated blackberry.app parameters to preferences</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-4344">CB-4344</a> Auto-detect started simulator</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-4342">CB-4342</a> Detect USB connected device</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-4076">CB-4076</a> Modified config-parser to default to the uri attribute</li>
 </ul>
 
-<h2 id="whats-new-in-windows-phone-7--8">What’s new in Windows Phone 7 &amp; 8</h2>
+<h2 id="whats_new_in_windows_phone_7__8">What’s new in Windows Phone 7 &amp; 8</h2>
 
 <p>Defects closed:</p>
 
 <ul>
-  <li><a href="https://issues.apache.org/jira/browse/CB-3177">CB-3177</a> Remove <code>&lt;plugin&gt;</code> support in config.xml and remove deprecation notice in WP8</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-3176">CB-3176</a> Remove <code>&lt;plugin&gt;</code> support in config.xml and remove deprecation notice in WP7</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-4385">CB-4385</a> Tooling scripts fail when there are spaces in the path name</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-4350">CB-4350</a> Bad errors when trying to add win* platforms on mac</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-4421">CB-4421</a> WP8 Project - XHRHelper.HandleCommand failing with ‘System.InvalidOperationException</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-4807">CB-4807</a> WP7 + 8 cannot handle parsing config.xml with namespaces</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-4526">CB-4526</a> Windows Phone 7+8 <code>build</code> script with no flags should call <code>clean</code> first</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-4850">CB-4850</a> Apache Cordova Apache Cordova</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-4850">CB-4850</a> WP7 startup optimization</li>
+<li><a href="https://issues.apache.org/jira/browse/CB-3177">CB-3177</a> Remove <code>&lt;plugin&gt;</code> support in config.xml and remove deprecation notice in WP8</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-3176">CB-3176</a> Remove <code>&lt;plugin&gt;</code> support in config.xml and remove deprecation notice in WP7</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-4385">CB-4385</a> Tooling scripts fail when there are spaces in the path name</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-4350">CB-4350</a> Bad errors when trying to add win* platforms on mac</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-4421">CB-4421</a> WP8 Project - XHRHelper.HandleCommand failing with ‘System.InvalidOperationException</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-4807">CB-4807</a> WP7 + 8 cannot handle parsing config.xml with namespaces</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-4526">CB-4526</a> Windows Phone 7+8 <code>build</code> script with no flags should call <code>clean</code> first</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-4850">CB-4850</a> Apache Cordova Apache Cordova</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-4850">CB-4850</a> WP7 startup optimization</li>
 </ul>
 
 <p>Other changes include:</p>
 
 <ul>
-  <li>Platform script improvements, removed case-sensitive ms-build version</li>
-  <li>Checks affecting some international users.</li>
-  <li>Added hash removal to injected js for backbone + jQuery Mobile routes</li>
+<li>Platform script improvements, removed case-sensitive ms-build version</li>
+
+<li>Checks affecting some international users.</li>
+
+<li>Added hash removal to injected js for backbone + jQuery Mobile routes</li>
 </ul>
 
-<h2 id="whats-new-in-windows-8">What’s new in Windows 8</h2>
+<h2 id="whats_new_in_windows_8">What’s new in Windows 8</h2>
 
 <p>Windows 8 support has been added to cordova-cli, so you can now run:</p>
 
-<pre><code>cordova platform add windows8
-</code></pre>
+<pre><code>cordova platform add windows8</code></pre>
 
 <p>All plugins were broken out into the respective repositories. All plugins are fully supported to be installed/uninstalled with plugman, and cordova-cli.</p>
 
-<p>Supported plugins include :
-* org.apache.cordova.camera
-* org.apache.cordova.console
-* org.apache.cordova.device.motion
-* org.apache.cordova.device.orientation
-* org.apache.cordova.device
-* org.apache.cordova.dialogs
-* org.apache.cordova.file-transfer
-* org.apache.cordova.file
-* org.apache.cordova.geolocation
-* org.apache.cordova.inappbrowser (some limitations because of iframe use and security model)
-* org.apache.cordova.media-capture
-* org.apache.cordova.network-information</p>
+<p>Supported plugins include :</p>
+
+<ul>
+<li>org.apache.cordova.camera</li>
+
+<li>org.apache.cordova.console</li>
+
+<li>org.apache.cordova.device.motion</li>
 
-<h2 id="whats-new-in-firefox-os">What’s new in Firefox OS</h2>
+<li>org.apache.cordova.device.orientation</li>
+
+<li>org.apache.cordova.device</li>
+
+<li>org.apache.cordova.dialogs</li>
+
+<li>org.apache.cordova.file-transfer</li>
+
+<li>org.apache.cordova.file</li>
+
+<li>org.apache.cordova.geolocation</li>
+
+<li>org.apache.cordova.inappbrowser (some limitations because of iframe use and security model)</li>
+
+<li>org.apache.cordova.media-capture</li>
+
+<li>org.apache.cordova.network-information</li>
+</ul>
+
+<h2 id="whats_new_in_firefox_os">What’s new in Firefox OS</h2>
 
 <p>Firefox OS support has been added to cordova-cli, so you can run:</p>
 
-<pre><code>cordova platform add firefoxos
-</code></pre>
+<pre><code>cordova platform add firefoxos</code></pre>
 
 <p>Firefox OS support is still in the very early phases of development. We will continue to work towards adding support for all of cordova’s APIs. Currently, Firefox OS support only two plugins:</p>
 
 <ul>
-  <li>org.apache.cordova.vibration</li>
-  <li>org.apache.cordova.device</li>
-</ul>
+<li>org.apache.cordova.vibration</li>
 
+<li>org.apache.cordova.device</li>
+</ul>
 
     </div>
 </div>

Modified: cordova/site/public/blog/releases/2013/11/06/cordova-291.html
URL: http://svn.apache.org/viewvc/cordova/site/public/blog/releases/2013/11/06/cordova-291.html?rev=1663531&r1=1663530&r2=1663531&view=diff
==============================================================================
--- cordova/site/public/blog/releases/2013/11/06/cordova-291.html (original)
+++ cordova/site/public/blog/releases/2013/11/06/cordova-291.html Tue Mar  3 06:53:27 2015
@@ -69,101 +69,159 @@
     <div class="meta">Posted by: <a href="https://twitter.com/stevesgill">Steve Gill</a></div>
     <p class="meta">06 Nov 2013</p>
     <div class="post">
-    <p>The <a href="http://cordova.apache.org/">Apache Cordova</a> team has just released Cordova 2.9.1. Wait what?! You read right! We have backported some bug fixes to the Cordova 2 series for all of you that haven’t upgraded to the Cordova 3 series yet. Hurray! Among other fixes, this release backports iOS 7 support.</p>
+    
+<p>The <a href="http://cordova.apache.org/">Apache Cordova</a> team has just released Cordova 2.9.1. Wait what?! You read right! We have backported some bug fixes to the Cordova 2 series for all of you that haven’t upgraded to the Cordova 3 series yet. Hurray! Among other fixes, this release backports iOS 7 support.</p>
 
 <p>Users can download the source zip from <a href="https://www.apache.org/dist/cordova/cordova-2.9.1-src.zip">https://www.apache.org/dist/cordova/cordova-2.9.1-src.zip</a></p>
 
 <p>We will continue to backport fixes for a few more months, but we highly suggest upgrading to the Cordova 3 series.</p>
-
 <!--more-->
-
-<h2 id="whats-new-in-android">What’s new in Android</h2>
+<h2 id="whats_new_in_android">What’s new in Android</h2>
 
 <ul>
-  <li>Update JS snapshot to version 2.9.1 (via coho)</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-5193">CB-5193</a> Fix Android WebSQL sometime throwing SECURITY_ERR.</li>
-  <li>Move java files back into api/ directory.</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-4817">CB-4817</a> Remove unused assets in project template.</li>
-  <li>Update InAppBrowser.java </li>
-  <li>Update snapshot of CameraLauncher.java </li>
-  <li>Update snapshot of FileTransfer.java</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-5080">CB-5080</a> Find resources in a way that works with aapt’s –rename-manifest-package (cherry picked fro</li>
-  <li>Tweak the online bridge to not send excess online events.</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-4495">CB-4495</a> Modify start-emulator script to exit immediately on a fatal emulator error. (cherry picke</li>
-  <li>Fix data URI decoding in CordovaResourceApi</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-4466">CB-4466</a> fixed jscript check_reqs to get target from project.properties</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-4463">CB-4463</a> Updated bin/check_reqs to looks for android-18 target.Also fixed an issue in unix version</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-4198">CB-4198</a> bin/create script should be better at handling non-word characters in activity name. Patc</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-4198">CB-4198</a> bin/create should handle spaces in activity better.</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-3384">CB-3384</a> Fix thread assertion when plugins remap URIs (cherry picked from commit b915aafb5be319121</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-3384">CB-3384</a> Use the ExposedJsApi to detect webCore thread instead of IceCreamCordovaWebViewClient.</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-3384">CB-3384</a> Reworked UriResolver into CordovaResourceApi.</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-3384">CB-3384</a> Add a length getter for UriResolver. Change from interface -&gt; abstract class.</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-3384">CB-3384</a> Make UriResolver assert that IO is not on the UI nor WebCore threads. (cherry picked from</li>
-  <li>Backporting FileUtils fixes to 2.9</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-4633">CB-4633</a>: Backporting to Android 2.9.x</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-4013">CB-4013</a> Fixed loadUrlTimeoutValue preference.</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-4155">CB-4155</a>: Cordova Android - navigator.app.clearCache(); is called on (prospectively unsupported) Web</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-4103">CB-4103</a> Made config parameters case-insensitive.</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-4038">CB-4038</a> Move non-deprecated classes from the api package into the main package. (cherry picked fr</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-3384">CB-3384</a> Rewrite of DataResource into UriResolver + UriResolvers</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-3998">CB-3998</a> video duration is an int</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-3927">CB-3927</a> Fix start-up race condition that could cause exec() responses to be dropped.</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-3949">CB-3949</a>: Adding code to mitigate broken intents with the application installer</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-3854">CB-3854</a>: Added support for wildcard. </li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-3932">CB-3932</a> Remove baseUrl comment in handleDestroy method made redundant by <a href="https://issues.apache.org/jira/browse/CB-3766">CB-3766</a></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-3902">CB-3902</a>: Explicitly add market URIs to CordovaWebViewClient so this always works, not just sometime</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-3625">CB-3625</a> <a href="https://issues.apache.org/jira/browse/CB-3338">CB-3338</a> updated windows cli scripts and added version option</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-3998">CB-3998</a> video duration is an int</li>
+<li>Update JS snapshot to version 2.9.1 (via coho)</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-5193">CB-5193</a> Fix Android WebSQL sometime throwing SECURITY_ERR.</li>
+
+<li>Move java files back into api/ directory.</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-4817">CB-4817</a> Remove unused assets in project template.</li>
+
+<li>Update InAppBrowser.java</li>
+
+<li>Update snapshot of CameraLauncher.java</li>
+
+<li>Update snapshot of FileTransfer.java</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-5080">CB-5080</a> Find resources in a way that works with aapt’s –rename-manifest-package (cherry picked fro</li>
+
+<li>Tweak the online bridge to not send excess online events.</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-4495">CB-4495</a> Modify start-emulator script to exit immediately on a fatal emulator error. (cherry picke</li>
+
+<li>Fix data URI decoding in CordovaResourceApi</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-4466">CB-4466</a> fixed jscript check_reqs to get target from project.properties</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-4463">CB-4463</a> Updated bin/check_reqs to looks for android-18 target.Also fixed an issue in unix version</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-4198">CB-4198</a> bin/create script should be better at handling non-word characters in activity name. Patc</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-4198">CB-4198</a> bin/create should handle spaces in activity better.</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-3384">CB-3384</a> Fix thread assertion when plugins remap URIs (cherry picked from commit b915aafb5be319121</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-3384">CB-3384</a> Use the ExposedJsApi to detect webCore thread instead of IceCreamCordovaWebViewClient.</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-3384">CB-3384</a> Reworked UriResolver into CordovaResourceApi.</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-3384">CB-3384</a> Add a length getter for UriResolver. Change from interface -&gt; abstract class.</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-3384">CB-3384</a> Make UriResolver assert that IO is not on the UI nor WebCore threads. (cherry picked from</li>
+
+<li>Backporting FileUtils fixes to 2.9</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-4633">CB-4633</a>: Backporting to Android 2.9.x</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-4013">CB-4013</a> Fixed loadUrlTimeoutValue preference.</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-4155">CB-4155</a>: Cordova Android - navigator.app.clearCache(); is called on (prospectively unsupported) Web</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-4103">CB-4103</a> Made config parameters case-insensitive.</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-4038">CB-4038</a> Move non-deprecated classes from the api package into the main package. (cherry picked fr</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-3384">CB-3384</a> Rewrite of DataResource into UriResolver + UriResolvers</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-3998">CB-3998</a> video duration is an int</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-3927">CB-3927</a> Fix start-up race condition that could cause exec() responses to be dropped.</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-3949">CB-3949</a>: Adding code to mitigate broken intents with the application installer</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-3854">CB-3854</a>: Added support for wildcard.</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-3932">CB-3932</a> Remove baseUrl comment in handleDestroy method made redundant by <a href="https://issues.apache.org/jira/browse/CB-3766">CB-3766</a></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-3902">CB-3902</a>: Explicitly add market URIs to CordovaWebViewClient so this always works, not just sometime</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-3625">CB-3625</a> <a href="https://issues.apache.org/jira/browse/CB-3338">CB-3338</a> updated windows cli scripts and added version option</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-3998">CB-3998</a> video duration is an int</li>
 </ul>
 
-<h2 id="whats-new-in-ios">What’s new in iOS</h2>
+<h2 id="whats_new_in_ios">What’s new in iOS</h2>
 
 <ul>
-  <li><a href="https://issues.apache.org/jira/browse/CB-5199">CB-5199</a> - Media Capture - UI issues under iOS 7 (uncrustify style fix-ups as well)</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-5189">CB-5189</a> - ios - Backport of v2.9.1 - add CoreMotion.framework to the default template</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-5189">CB-5189</a> - ios - Backport of v2.9.1 from <a href="https://issues.apache.org/jira/browse/CB-4825">CB-4825</a>, <a href="https://issues.apache.org/jira/browse/CB-5035">CB-5035</a> (Device Motion / Accelerometer)</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-5189">CB-5189</a> - ios - Backport of v2.9.1 from <a href="https://issues.apache.org/jira/browse/CB-4847">CB-4847</a> (Media only)</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-5189">CB-5189</a> - ios - Backport of v2.9.1 from <a href="https://issues.apache.org/jira/browse/CB-4847">CB-4847</a> (Media Capture only)</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-5189">CB-5189</a> - ios - Backport for v2.9.1 of <a href="https://issues.apache.org/jira/browse/CB-4806">CB-4806</a>, <a href="https://issues.apache.org/jira/browse/CB-4355">CB-4355</a> (Splashscreen)</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-5189">CB-5189</a> - ios - Backport for v2.9.1 of <a href="https://issues.apache.org/jira/browse/CB-4930">CB-4930</a> (InAppBrowser)</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-5189">CB-5189</a> - ios - Backport for v2.9.1 of <a href="https://issues.apache.org/jira/browse/CB-4958">CB-4958</a>, <a href="https://issues.apache.org/jira/browse/CB-3482">CB-3482</a> and <a href="https://issues.apache.org/jira/browse/CB-3453">CB-3453</a> changes</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-4480">CB-4480</a> Using 64 bit ints to store file size</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-3448">CB-3448</a> bin/diagnose_project script fails if CORDOVALIB variable not in prefs plist</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-3567">CB-3567</a> Redirect initiated in JavaScript fails the app from loading</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-4147">CB-4147</a> Fixing crash when calling show() on an already open InAppBrowser window.</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-4104">CB-4104</a> Made config parameters case-insensitive.</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-4033">CB-4033</a> Relaxed case-sensitivity of “UTF-8”.</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-4037">CB-4037</a> Unable to Archive iOS projects for upload to App Store in 2.9</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-4025">CB-4025</a> iOS emulate command broken when run inside the cordova folder</li>
+<li><a href="https://issues.apache.org/jira/browse/CB-5199">CB-5199</a> - Media Capture - UI issues under iOS 7 (uncrustify style fix-ups as well)</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-5189">CB-5189</a> - ios - Backport of v2.9.1 - add CoreMotion.framework to the default template</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-5189">CB-5189</a> - ios - Backport of v2.9.1 from <a href="https://issues.apache.org/jira/browse/CB-4825">CB-4825</a>, <a href="https://issues.apache.org/jira/browse/CB-5035">CB-5035</a> (Device Motion / Accelerometer)</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-5189">CB-5189</a> - ios - Backport of v2.9.1 from <a href="https://issues.apache.org/jira/browse/CB-4847">CB-4847</a> (Media only)</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-5189">CB-5189</a> - ios - Backport of v2.9.1 from <a href="https://issues.apache.org/jira/browse/CB-4847">CB-4847</a> (Media Capture only)</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-5189">CB-5189</a> - ios - Backport for v2.9.1 of <a href="https://issues.apache.org/jira/browse/CB-4806">CB-4806</a>, <a href="https://issues.apache.org/jira/browse/CB-4355">CB-4355</a> (Splashscreen)</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-5189">CB-5189</a> - ios - Backport for v2.9.1 of <a href="https://issues.apache.org/jira/browse/CB-4930">CB-4930</a> (InAppBrowser)</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-5189">CB-5189</a> - ios - Backport for v2.9.1 of <a href="https://issues.apache.org/jira/browse/CB-4958">CB-4958</a>, <a href="https://issues.apache.org/jira/browse/CB-3482">CB-3482</a> and <a href="https://issues.apache.org/jira/browse/CB-3453">CB-3453</a> changes</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-4480">CB-4480</a> Using 64 bit ints to store file size</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-3448">CB-3448</a> bin/diagnose_project script fails if CORDOVALIB variable not in prefs plist</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-3567">CB-3567</a> Redirect initiated in JavaScript fails the app from loading</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-4147">CB-4147</a> Fixing crash when calling show() on an already open InAppBrowser window.</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-4104">CB-4104</a> Made config parameters case-insensitive.</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-4033">CB-4033</a> Relaxed case-sensitivity of “UTF-8”.</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-4037">CB-4037</a> Unable to Archive iOS projects for upload to App Store in 2.9</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-4025">CB-4025</a> iOS emulate command broken when run inside the cordova folder</li>
 </ul>
 
-<h2 id="whats-new-in-windows-phone-7--8">What’s new in Windows Phone 7 &amp; 8</h2>
+<h2 id="whats_new_in_windows_phone_7__8">What’s new in Windows Phone 7 &amp; 8</h2>
 
 <ul>
-  <li>support namespace, and deprecated plugin tags in config.xml</li>
-  <li>Update File.write method with additional params</li>
-  <li>bumped version to 2.9.1 and removed dupe geolocation from config.xml for wp7+8 <a href="https://issues.apache.org/jira/browse/CB-4090">CB-4090</a></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-4090">CB-4090</a> Broken notification handling</li>
-  <li>update templates to include all plugins for 2.9.1</li>
-  <li>update cordova.js for 2.9.1</li>
-  <li>Fix null reference exception</li>
-  <li>update Audio/Media plugins</li>
-  <li>add callback id to compass callbacks</li>
-  <li>add callback id to callbacks</li>
-  <li>update FileTransfer plug from plugin repo</li>
-  <li>add plugns back, and remove dupe classes</li>
+<li>support namespace, and deprecated plugin tags in config.xml</li>
+
+<li>Update File.write method with additional params</li>
+
+<li>bumped version to 2.9.1 and removed dupe geolocation from config.xml for wp7+8 <a href="https://issues.apache.org/jira/browse/CB-4090">CB-4090</a></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-4090">CB-4090</a> Broken notification handling</li>
+
+<li>update templates to include all plugins for 2.9.1</li>
+
+<li>update cordova.js for 2.9.1</li>
+
+<li>Fix null reference exception</li>
+
+<li>update Audio/Media plugins</li>
+
+<li>add callback id to compass callbacks</li>
+
+<li>add callback id to callbacks</li>
+
+<li>update FileTransfer plug from plugin repo</li>
+
+<li>add plugns back, and remove dupe classes</li>
 </ul>
 
-<h2 id="whats-new-in-windows-8">What’s new in Windows 8</h2>
+<h2 id="whats_new_in_windows_8">What’s new in Windows 8</h2>
 
 <ul>
-  <li>Cordova JS has been updated to 2.9.1</li>
+<li>Cordova JS has been updated to 2.9.1</li>
 </ul>
 
 <p>For a full list of changes, refer to RELEASENOTES.md included in the download.</p>
 
-
     </div>
 </div>
 

Modified: cordova/site/public/index.html
URL: http://svn.apache.org/viewvc/cordova/site/public/index.html?rev=1663531&r1=1663530&r2=1663531&view=diff
==============================================================================
--- cordova/site/public/index.html (original)
+++ cordova/site/public/index.html Tue Mar  3 06:53:27 2015
@@ -75,7 +75,7 @@
         </ul>
         <div class="button-container">
 
-            <a class="button" href="#download">DOWNLOAD<label>Cordova version 4.0.0</label></a>
+            <a class="button" href="#download">DOWNLOAD<label>Cordova version 4.3.0</label></a>
 
         </div>
     </div>
@@ -101,93 +101,89 @@
   <h2>News <a href="/rss.xml" style="font-size:12pt; margin-left:10px">Subscribe</a></h2>
   <ul class="posts">
     
-      <li><span>25 Feb 2015</span> &raquo; <a href="//cordova.apache.org/announcements/2015/02/25/cordova-ios-3.8.0.html">Apache Cordova iOS 3.8.0</a>
-      <p>We are happy to announce that <code>Cordova iOS 3.8.0</code> has been released!</p>
+      <li><span>02 Mar 2015</span> &raquo; <a href="//cordova.apache.org/news/2015/03/02/tools-release.html">Tools Release: March 02, 2015</a>
+      
+<p>New versions of cordova tools are now live!</p>
 
-<p>This release has various bug fixes, and will be the default iOS version when the cordova-cli 4.3.0 is released.
-This release also requires Xcode 6.</p>
+<ul>
+<li><a href="https://www.npmjs.org/package/cordova-lib">cordova-lib@4.3.0</a></li>
 
-<p>To upgrade:</p>
+<li><a href="https://www.npmjs.org/package/cordova">cordova@4.3.0</a></li>
 
-<pre><code>npm install -g cordova
-cd my_project
-cordova platform update ios
-</code></pre>
+<li><a href="https://www.npmjs.org/package/plugman">plugman@0.23.0</a></li>
 
-<p>To add it explicitly:</p>
+<li><a href="https://www.npmjs.org/package/cordova-js">cordova-js@3.8.0</a></li>
+</ul>
 
-<pre><code>cordova platform add ios@3.8.0
-</code></pre>
+<p>To update your tools:</p>
 
-<p>For non-CLI projects or for pre-3.0 projects, refer to the <a href="http://cordova.apache.org/docs/en/edge/guide_platforms_index.md.html">upgrade guides</a>.</p>
+<ul>
+<li>
+<p>If you have <code>cordova</code> installed:</p>
 
+<pre><code>npm install -g cordova</code></pre>
+</li>
 
-      <div style="padding-bottom:2em"><a href="//cordova.apache.org/announcements/2015/02/25/cordova-ios-3.8.0.html">Read More</a></div>
-    
-      <li><span>10 Feb 2015</span> &raquo; <a href="//cordova.apache.org/news/2015/02/10/plugins-release.html">Plugins Release: February 10, 2015</a>
-      <p>The following plugins were updated today:</p>
+<li>
+<p>If you have <code>plugman</code> installed:</p>
+
+<pre><code>npm install -g plugman</code></pre>
+</li>
+</ul>
+
+<p>Release highlights:</p>
 
 <ul>
-  <li>cordova-plugin-battery-status@0.2.12</li>
-  <li>cordova-plugin-camera@0.3.5</li>
-  <li>cordova-plugin-console@0.2.13</li>
-  <li>cordova-plugin-contacts@0.2.16</li>
-  <li>cordova-plugin-device-motion@0.2.11</li>
-  <li>cordova-plugin-device-orientation@0.3.11</li>
-  <li>cordova-plugin-device@0.3.0</li>
-  <li>cordova-plugin-dialogs@0.3.0</li>
-  <li>cordova-plugin-file-transfer@0.5.0</li>
-  <li>cordova-plugin-file@1.3.3</li>
-  <li>cordova-plugin-geolocation@0.3.12</li>
-  <li>cordova-plugin-globalization@0.3.4</li>
-  <li>cordova-plugin-inappbrowser@0.6.0</li>
-  <li>cordova-plugin-media@0.2.16</li>
-  <li>cordova-plugin-media-capture@0.3.6</li>
-  <li>cordova-plugin-network-information@0.2.15</li>
-  <li>cordova-plugin-splashscreen@1.0.0</li>
-  <li>cordova-plugin-vibration@0.3.13</li>
-  <li>cordova-plugin-statusbar@0.1.10</li>
-  <li>cordova-plugins@file-system-roots-0.1.0</li>
-  <li>cordova-plugin-test-framework@0.0.1</li>
+<li>You can now save your list of installed plugins and platforms using the <code>--save</code> command when adding platforms and plugins to your project. Saved platforms and plugins are automagically restored during prepare. Ex. <code>cordova platform add android --save</code>. This should make it easier developing cordova projects among a team.</li>
+
+<li>Plugin authors can use the new command <code>plugman createpackagejson &lt;plugin_path&gt;</code> to add a <code>package.json</code> file to their plugins.</li>
+
+<li>We are preparing to transition our plugin hosting over to npm. We will be doing a detailed blog post soon. <strong>Stay tuned</strong>.</li>
 </ul>
 
-<p>The plugins have been updated on our registry at <a href="http://plugins.cordova.io/">plugins.cordova.io</a>.</p>
+<h1 id="changes_include">Changes include:</h1>
 
-<hr />
-<p>You can update any plugin by removing it, and then re-adding it.</p>
+      <div style="padding-bottom:2em"><a href="//cordova.apache.org/news/2015/03/02/tools-release.html">Read More</a></div>
+    
+      <li><span>27 Feb 2015</span> &raquo; <a href="//cordova.apache.org/announcements/2015/02/27/cordova-windows-3.8.0.html">Apache Cordova Windows 3.8.0</a>
+      
+<p>We are happy to announce that <code>Cordova Windows 3.8.0</code> has been released!</p>
 
-<p>E.g. To update your camera plugin:</p>
+<p>This release adds support for new Visual Studio 2015 Tools and has various other improvements. It will be the default Windows version when the cordova-cli 4.3.0 is released.</p>
 
-<pre><code>cordova plugin rm org.apache.cordova.camera
-cordova plugin add org.apache.cordova.camera
-</code></pre>
+<p>To upgrade:</p>
 
-<p>Changes include:</p>
+<pre><code>npm install -g cordova
+cd my_project
+cordova platform update windows</code></pre>
 
+<p>To add it explicitly:</p>
 
-      <div style="padding-bottom:2em"><a href="//cordova.apache.org/news/2015/02/10/plugins-release.html">Read More</a></div>
+<pre><code>cordova platform add windows@3.8.0</code></pre>
+
+<p>For non-CLI projects or for pre-3.0 projects, refer to the <a href="http://cordova.apache.org/docs/en/edge/guide_platforms_index.md.html">upgrade guides</a>.</p>
+
+      <div style="padding-bottom:2em"><a href="//cordova.apache.org/announcements/2015/02/27/cordova-windows-3.8.0.html">Read More</a></div>
     
-      <li><span>06 Feb 2015</span> &raquo; <a href="//cordova.apache.org/announcements/2015/02/06/cordova-android-3.7.1.html">Apache Cordova Android 3.7.1</a>
-      <p>We are happy to announce that <code>Cordova Android 3.7.1</code> has been released!</p>
+      <li><span>25 Feb 2015</span> &raquo; <a href="//cordova.apache.org/announcements/2015/02/25/cordova-ios-3.8.0.html">Apache Cordova iOS 3.8.0</a>
+      
+<p>We are happy to announce that <code>Cordova iOS 3.8.0</code> has been released!</p>
 
-<p>This release has numerous bug fixes, and sets the target-sdk to android-21 (which yields a pretty good graphics speed-up on Lollipop devices!). It will be the default Android version when the cordova-cli 4.1.0 is released.</p>
+<p>This release has various bug fixes, and will be the default iOS version when the cordova-cli 4.3.0 is released. This release also requires Xcode 6.</p>
 
 <p>To upgrade:</p>
 
 <pre><code>npm install -g cordova
 cd my_project
-cordova platform update android@3.7.1
-</code></pre>
+cordova platform update ios</code></pre>
 
 <p>To add it explicitly:</p>
 
-<pre><code>cordova platform add android@3.7.1
-</code></pre>
+<pre><code>cordova platform add ios@3.8.0</code></pre>
 
 <p>For non-CLI projects or for pre-3.0 projects, refer to the <a href="http://cordova.apache.org/docs/en/edge/guide_platforms_index.md.html">upgrade guides</a>.</p>
 
-
-      <div style="padding-bottom:2em"><a href="//cordova.apache.org/announcements/2015/02/06/cordova-android-3.7.1.html">Read More</a></div>
+      <div style="padding-bottom:2em"><a href="//cordova.apache.org/announcements/2015/02/25/cordova-ios-3.8.0.html">Read More</a></div>
     
   </ul>
   
@@ -391,7 +387,7 @@ cordova platform update android@3.7.1
 <div class="wrap download-pane">
     <h2 class="icon icon-download">Download &amp; Archives</h2>
     <p>It is recommended that the cordova CLI be installed from npm rather than downloading this .zip version.  For more information on installing the npm version see the <a href="http://cordova.apache.org/docs/en/4.0.0//guide_cli_index.md.html#The%20Command-Line%20Interface">Command-Line Interface</a> section of the documentation. </p>
-    <p>You can find our release zips with corresponding OpenPGPkeys, MD5 and SHA files on the <a onclick="_gaq.push(['_trackEvent', 'Download', '4.0.0'])" href="https://www.apache.org/dist/cordova/">Apache Cordova dist page</a>.</p>
+    <p>You can find our release zips with corresponding OpenPGPkeys, MD5 and SHA files on the <a onclick="_gaq.push(['_trackEvent', 'Download', '4.3.0'])" href="https://www.apache.org/dist/cordova/">Apache Cordova dist page</a>.</p>
 
     <p>Our <a href="artwork.html">artwork</a> is also available.</p>
     <p>Older versions can be downloaded from the <a href="http://archive.apache.org/dist/cordova/">archive</a>.</p>

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=1663531&r1=1663530&r2=1663531&view=diff
==============================================================================
--- cordova/site/public/news/2013/09/06/last-week.html (original)
+++ cordova/site/public/news/2013/09/06/last-week.html Tue Mar  3 06:53:27 2015
@@ -69,27 +69,30 @@
     <div class="meta">Posted by: <a href="https://twitter.com/GrieveAndrew">Andrew Grieve</a></div>
     <p class="meta">06 Sep 2013</p>
     <div class="post">
-    <p>Last week Cordova saw 39 commits come in, <code>plugman</code> reached version <code>0.11.0</code>, and <code>CLI</code> reached <code>3.0.9</code>.</p>
+    
+<p>Last week Cordova saw 39 commits come in, <code>plugman</code> reached version <code>0.11.0</code>, and <code>CLI</code> reached <code>3.0.9</code>.</p>
 
-<p><code>plugman</code> now has initial support for Windows Phone, plugin URLs can now
-<a href="https://issues.apache.org/jira/browse/CB-4622">specify a git hash and subdirectory</a>,
-and <code>&lt;engine&gt;</code> tags <a href="https://issues.apache.org/jira/browse/CB-4494">are now enforced</a>.
-There was also good progress made towards launching our <a href="https://issues.apache.org/jira/browse/CB-4489">Plugin Registry</a>.
-<!--more--></p>
+<p><code>plugman</code> now has initial support for Windows Phone, plugin URLs can now <a href="https://issues.apache.org/jira/browse/CB-4622">specify a git hash and subdirectory</a>, and <code>&lt;engine&gt;</code> tags <a href="https://issues.apache.org/jira/browse/CB-4494">are now enforced</a>. There was also good progress made towards launching our <a href="https://issues.apache.org/jira/browse/CB-4489">Plugin Registry</a>. <!--more--></p>
 
 <p><em>Other Notable Changes:</em></p>
 
 <ul>
-  <li><code>&lt;lib-file&gt;</code> <a href="https://issues.apache.org/jira/browse/CB-4430">can now be used</a> by plugins to add <code>.jar</code> files on Android.</li>
-  <li><code>cordova plugin rm</code> now doesn’t choke when a file is already deleted</li>
-  <li><code>cordova platform ls</code> now shows both installed and <a href="https://issues.apache.org/jira/browse/CB-3904">available-to-install</a> platforms</li>
-  <li><code>cordova-plugin-camera</code> data-URIs <a href="https://issues.apache.org/jira/browse/CB-4656">now work again on Android</a></li>
-  <li><code>cordova-plugin-device-orientation</code> <a href="https://issues.apache.org/jira/browse/CB-3687">got BB10 support</a></li>
-  <li><code>cordova-plugin-file</code>’s DirectoryEntry.copy() <a href="https://issues.apache.org/jira/browse/CB-4514">is now recursive</a>.</li>
-  <li><code>cordova-plugin-geolocation</code> got Win8 support</li>
-  <li><code>cordova-plugin-vibrate</code> <a href="https://issues.apache.org/jira/browse/CB-4661">added a missing permission</a> for Android.</li>
-</ul>
+<li><code>&lt;lib-file&gt;</code> <a href="https://issues.apache.org/jira/browse/CB-4430">can now be used</a> by plugins to add <code>.jar</code> files on Android.</li>
+
+<li><code>cordova plugin rm</code> now doesn’t choke when a file is already deleted</li>
+
+<li><code>cordova platform ls</code> now shows both installed and <a href="https://issues.apache.org/jira/browse/CB-3904">available-to-install</a> platforms</li>
+
+<li><code>cordova-plugin-camera</code> data-URIs <a href="https://issues.apache.org/jira/browse/CB-4656">now work again on Android</a></li>
 
+<li><code>cordova-plugin-device-orientation</code> <a href="https://issues.apache.org/jira/browse/CB-3687">got BB10 support</a></li>
+
+<li><code>cordova-plugin-file</code>‘s DirectoryEntry.copy() <a href="https://issues.apache.org/jira/browse/CB-4514">is now recursive</a>.</li>
+
+<li><code>cordova-plugin-geolocation</code> got Win8 support</li>
+
+<li><code>cordova-plugin-vibrate</code> <a href="https://issues.apache.org/jira/browse/CB-4661">added a missing permission</a> for Android.</li>
+</ul>
 
     </div>
 </div>

Modified: cordova/site/public/news/2013/09/13/last-week.html
URL: http://svn.apache.org/viewvc/cordova/site/public/news/2013/09/13/last-week.html?rev=1663531&r1=1663530&r2=1663531&view=diff
==============================================================================
--- cordova/site/public/news/2013/09/13/last-week.html (original)
+++ cordova/site/public/news/2013/09/13/last-week.html Tue Mar  3 06:53:27 2015
@@ -69,21 +69,22 @@
     <div class="meta">Posted by: <a href="https://twitter.com/GrieveAndrew">Andrew Grieve</a></div>
     <p class="meta">13 Sep 2013</p>
     <div class="post">
-    <p>Last week Cordova saw 83 commits come in from 24 different authors. No releases were made,
-but attention was spent on <a href="https://issues.apache.org/jira/issues/?jql=project%20%3D%20CB%20AND%20component%20%3D%20FirefoxOS">adding Firefox OS support</a>,
-translating docs, and fixing bugs.
-<!--more--></p>
+    
+<p>Last week Cordova saw 83 commits come in from 24 different authors. No releases were made, but attention was spent on <a href="https://issues.apache.org/jira/issues/?jql=project%20%3D%20CB%20AND%20component%20%3D%20FirefoxOS">adding Firefox OS support</a>, translating docs, and fixing bugs. <!--more--></p>
 
 <p><em>Other Notable Changes:</em></p>
 
 <ul>
-  <li>FileTransfer on wp7 now supports basic authentication</li>
-  <li>BlackBerry <a href="https://issues.apache.org/jira/browse/CB-4732">no longer validates buildId</a> and <a href="https://issues.apache.org/jira/browse/CB-4785">–no-build works again</a></li>
-  <li><code>cordova serve</code> now serves all platforms at the same time (via /android/www, /ios/www, etc)</li>
-  <li><code>cordova plugin ls</code> now takes ~50ms instead of ~700ms to run</li>
-  <li>Plugin URLs <a href="https://issues.apache.org/jira/browse/CB-4770">are now optional</a> within <code>&lt;dependency&gt;</code> tags. The registry will be used when only an ID is given.</li>
-</ul>
+<li>FileTransfer on wp7 now supports basic authentication</li>
+
+<li>BlackBerry <a href="https://issues.apache.org/jira/browse/CB-4732">no longer validates buildId</a> and <a href="https://issues.apache.org/jira/browse/CB-4785">–no-build works again</a></li>
+
+<li><code>cordova serve</code> now serves all platforms at the same time (via /android/www, /ios/www, etc)</li>
 
+<li><code>cordova plugin ls</code> now takes ~50ms instead of ~700ms to run</li>
+
+<li>Plugin URLs <a href="https://issues.apache.org/jira/browse/CB-4770">are now optional</a> within <code>&lt;dependency&gt;</code> tags. The registry will be used when only an ID is given.</li>
+</ul>
 
     </div>
 </div>

Modified: cordova/site/public/news/2013/10/01/plugins-release.html
URL: http://svn.apache.org/viewvc/cordova/site/public/news/2013/10/01/plugins-release.html?rev=1663531&r1=1663530&r2=1663531&view=diff
==============================================================================
--- cordova/site/public/news/2013/10/01/plugins-release.html (original)
+++ cordova/site/public/news/2013/10/01/plugins-release.html Tue Mar  3 06:53:27 2015
@@ -69,33 +69,41 @@
     <div class="meta">Posted by: <a href="https://twitter.com/stevesgill">Steve Gill</a></div>
     <p class="meta">01 Oct 2013</p>
     <div class="post">
-    <p>Today we are doing a plugin release in preparation for Apache Cordova 3.1.0, which is scheduled to be released later this week. </p>
+    
+<p>Today we are doing a plugin release in preparation for Apache Cordova 3.1.0, which is scheduled to be released later this week.</p>
 
 <p>The main change for this release is removing ‘core’ from the plugin ID fields. This was done to make installing plugins simpler in 3.1.0. We are switching over to using plugin IDs and our <a href="http://plugins.cordova.io/">plugin registry</a> for plugin installation instead of directly installing from the plugin git urls.</p>
 
-<p>These plugins are compatible with Cordova 3.0.0. Feel free to upgrade your current plugins if you can’t wait for 3.1.0 next week. Keep in mind that after you install these updated plugins, if you decide to remove these plugins from your project, you will have to reference the new IDs instead of the old ones that our docs show. </p>
+<p>These plugins are compatible with Cordova 3.0.0. Feel free to upgrade your current plugins if you can’t wait for 3.1.0 next week. Keep in mind that after you install these updated plugins, if you decide to remove these plugins from your project, you will have to reference the new IDs instead of the old ones that our docs show.</p>
 
 <p>E.g. To update your camera plugin:</p>
 
 <pre><code>cordova plugin rm org.apache.cordova.core.camera
-cordova plugin add org.apache.cordova.camera
-</code></pre>
+cordova plugin add org.apache.cordova.camera</code></pre>
 
-<p><br />
-<!--more--></p>
+<p><br /></p>
+<!--more-->
+<p><em>Other Notable Changes:</em></p>
 
-<p><em>Other Notable Changes:</em>
-* Firefox OS support for Vibration and Device plugins
-* Windows 8 support for multiple plugins
-* Fixed warnings that arose with XCode 5
-* <a href="https://issues.apache.org/jira/browse/CB-4847">CB-4847</a> iOS 7 microphone access requires user permission (media plugin)
-* <a href="https://issues.apache.org/jira/browse/CB-4799">CB-4799</a> Fix incorrect JS references within native code for iOS &amp; Android (media plugin)
-* <a href="https://issues.apache.org/jira/browse/CB-4806">CB-4806</a> Update splashscreen image bounds for iOS 7 (splashscreen plugin)
-* <a href="https://issues.apache.org/jira/browse/CB-4593">CB-4593</a> Added vibration support for BB10 (vibration plugin) </p>
+<ul>
+<li>Firefox OS support for Vibration and Device plugins</li>
 
-<p><br />
-You can check out the individual release notes in each of the plugin repos for more details.</p>
+<li>Windows 8 support for multiple plugins</li>
 
+<li>Fixed warnings that arose with XCode 5</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-4847">CB-4847</a> iOS 7 microphone access requires user permission (media plugin)</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-4799">CB-4799</a> Fix incorrect JS references within native code for iOS &amp; Android (media plugin)</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-4806">CB-4806</a> Update splashscreen image bounds for iOS 7 (splashscreen plugin)</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-4593">CB-4593</a> Added vibration support for BB10 (vibration plugin)</li>
+</ul>
+
+<p><br /></p>
+
+<p>You can check out the individual release notes in each of the plugin repos for more details.</p>
 
     </div>
 </div>

Modified: cordova/site/public/news/2013/10/10/plugins-release.html
URL: http://svn.apache.org/viewvc/cordova/site/public/news/2013/10/10/plugins-release.html?rev=1663531&r1=1663530&r2=1663531&view=diff
==============================================================================
--- cordova/site/public/news/2013/10/10/plugins-release.html (original)
+++ cordova/site/public/news/2013/10/10/plugins-release.html Tue Mar  3 06:53:27 2015
@@ -69,48 +69,73 @@
     <div class="meta">Posted by: <a href="https://twitter.com/stevesgill">Steve Gill</a></div>
     <p class="meta">10 Oct 2013</p>
     <div class="post">
-    <p>Today we are doing a release for the plugins that have been updated since our last release. We are also excited to announce three new plugins that have recently been added to our registry. </p>
+    
+<p>Today we are doing a release for the plugins that have been updated since our last release. We are also excited to announce three new plugins that have recently been added to our registry.</p>
 
-<p>The new plugins include:
-* websql for Android
-* keyboard for iOS
-* statusbar for iOS</p>
-
-<p>The following plugins have been updated for this release:
-* cordova-plugin-contacts
-* cordova-plugin-file
-* cordova-plugin-file-transfer
-* cordova-plugin-inappbrowser
-* cordova-plugin-media
-* cordova-plugin-media-capture
-* cordova-plugin-splashscreen
-* cordova-plugin-vibration</p>
+<p>The new plugins include:</p>
 
-<p><br />
-These plugins have been updated on our registry at <a href="http://plugins.cordova.io">plugins.cordova.io</a>.</p>
+<ul>
+<li>websql for Android</li>
 
-<p><br />
-<!--more--></p>
+<li>keyboard for iOS</li>
 
+<li>statusbar for iOS</li>
+</ul>
+
+<p>The following plugins have been updated for this release:</p>
+
+<ul>
+<li>cordova-plugin-contacts</li>
+
+<li>cordova-plugin-file</li>
+
+<li>cordova-plugin-file-transfer</li>
+
+<li>cordova-plugin-inappbrowser</li>
+
+<li>cordova-plugin-media</li>
+
+<li>cordova-plugin-media-capture</li>
+
+<li>cordova-plugin-splashscreen</li>
+
+<li>cordova-plugin-vibration</li>
+</ul>
+
+<p><br /></p>
+
+<p>These plugins have been updated on our registry at <a href="http://plugins.cordova.io">plugins.cordova.io</a>.</p>
+
+<p><br /></p>
+<!--more-->
 <p>E.g. To update your camera plugin:</p>
 
 <pre><code>cordova plugin rm org.apache.cordova.camera
-cordova plugin add org.apache.cordova.camera
-</code></pre>
+cordova plugin add org.apache.cordova.camera</code></pre>
+
+<p><em>Notable Changes:</em></p>
+
+<ul>
+<li><a href="https://issues.apache.org/jira/browse/CB-4950">CB-4950</a> Remove the dependence on concrete component android.webkit.WebView. (contacts)</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-5020">CB-5020</a> File plugin should execute on a separate thread (file)</li>
+
+<li>Fixed file-transfer issues for windows 8 (file-transfer)</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-4926">CB-4926</a> Fixes inappbrowser plugin loading for windows8 (inappbrowser)</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-4928">CB-4928</a> plugin-media doesn’t load on windows8 (media)</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-4806">CB-4806</a> (Re-fix) Update splashscreen image bounds for iOS 7 (splashscreen)</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-4934">CB-4934</a> plugin-splashscreen should not show by default on Windows8 (splashscreen)</li>
 
-<p><em>Notable Changes:</em>
-* <a href="https://issues.apache.org/jira/browse/CB-4950">CB-4950</a> Remove the dependence on concrete component android.webkit.WebView. (contacts)
-* <a href="https://issues.apache.org/jira/browse/CB-5020">CB-5020</a> File plugin should execute on a separate thread (file)
-* Fixed file-transfer issues for windows 8 (file-transfer)
-* <a href="https://issues.apache.org/jira/browse/CB-4926">CB-4926</a> Fixes inappbrowser plugin loading for windows8 (inappbrowser)
-* <a href="https://issues.apache.org/jira/browse/CB-4928">CB-4928</a> plugin-media doesn’t load on windows8 (media)
-* <a href="https://issues.apache.org/jira/browse/CB-4806">CB-4806</a> (Re-fix) Update splashscreen image bounds for iOS 7 (splashscreen)
-* <a href="https://issues.apache.org/jira/browse/CB-4934">CB-4934</a> plugin-splashscreen should not show by default on Windows8 (splashscreen)
-* <a href="https://issues.apache.org/jira/browse/CB-4929">CB-4929</a> plugin-splashscreen not loading proxy windows8 (splashscreen)</p>
+<li><a href="https://issues.apache.org/jira/browse/CB-4929">CB-4929</a> plugin-splashscreen not loading proxy windows8 (splashscreen)</li>
+</ul>
 
-<p><br />
-You can check out the individual release notes in each of the plugin repos for more details.</p>
+<p><br /></p>
 
+<p>You can check out the individual release notes in each of the plugin repos for more details.</p>
 
     </div>
 </div>

Modified: cordova/site/public/news/2013/10/21/cordova-registry.html
URL: http://svn.apache.org/viewvc/cordova/site/public/news/2013/10/21/cordova-registry.html?rev=1663531&r1=1663530&r2=1663531&view=diff
==============================================================================
--- cordova/site/public/news/2013/10/21/cordova-registry.html (original)
+++ cordova/site/public/news/2013/10/21/cordova-registry.html Tue Mar  3 06:53:27 2015
@@ -69,32 +69,28 @@
     <div class="meta">Posted by: <a href="http://www.maxwoghiren.com">Max Woghiren</a></div>
     <p class="meta">21 Oct 2013</p>
     <div class="post">
-    <p>Cordova 3.0 saw a major shift towards plugins.  As part of this shift, we’re focusing on making plugins easy to use and, equally importantly, easy to discover.  App developers want to know what plugins are available to them, and plugin developers want their plugins to be visible to the community.</p>
-
-<p>Our solution, which has been alluded to in previous posts, is the <a href="http://plugins.cordova.io/">Cordova plugin registry</a>.  Using the Cordova CLI, app developers can add plugins to their projects with a single command.</p>
+    
+<p>Cordova 3.0 saw a major shift towards plugins. As part of this shift, we’re focusing on making plugins easy to use and, equally importantly, easy to discover. App developers want to know what plugins are available to them, and plugin developers want their plugins to be visible to the community.</p>
 
+<p>Our solution, which has been alluded to in previous posts, is the <a href="http://plugins.cordova.io/">Cordova plugin registry</a>. Using the Cordova CLI, app developers can add plugins to their projects with a single command.</p>
 <!--more-->
 <p>From anywhere within an app’s directory, plugins can be added to a project with</p>
 
-<pre><code>cordova plugin add [PLUGIN_ID]
-</code></pre>
+<pre><code>cordova plugin add [PLUGIN_ID]</code></pre>
 
-<p>where PLUGIN_ID is the id (typically reverse-domain style) shown on the plugin registry website.  You can also download a specific version of a plugin:</p>
+<p>where PLUGIN_ID is the id (typically reverse-domain style) shown on the plugin registry website. You can also download a specific version of a plugin:</p>
 
-<pre><code>cordova plugin add [PLUGIN_ID]@[VERSION]
-</code></pre>
+<pre><code>cordova plugin add [PLUGIN_ID]@[VERSION]</code></pre>
 
-<p>How do these plugins get there?  Using plugman, plugin developers can easily send their plugins out into the world to be discovered by app developers.</p>
+<p>How do these plugins get there? Using plugman, plugin developers can easily send their plugins out into the world to be discovered by app developers.</p>
 
 <p>First, if you don’t have a plugman account, you need to create one.</p>
 
-<pre><code>plugman adduser
-</code></pre>
+<pre><code>plugman adduser</code></pre>
 
 <p>Then, you’re free to publish!</p>
 
-<pre><code>plugman publish [PATH_TO_YOUR_PLUGIN]
-</code></pre>
+<pre><code>plugman publish [PATH_TO_YOUR_PLUGIN]</code></pre>
 
 <p>There’s more you can do (such as search for a plugin by keyword)—you can find more information using <code>plugman --help</code>.</p>
 
@@ -102,11 +98,11 @@
 
 <p>All of Cordova’s plugins (which were bundled with core Cordova prior to 3.0) can be found in the registry.</p>
 
-<p>Also, there are already some third-party plugins available and ready to use.  Google has contributed multiple plugins to the registry, allowing app developers to use some <a href="http://developer.chrome.com/apps/api_index.html">Chrome Apps APIs</a>, such as identity and socket, in their Cordova applications.</p>
+<p>Also, there are already some third-party plugins available and ready to use. Google has contributed multiple plugins to the registry, allowing app developers to use some <a href="http://developer.chrome.com/apps/api_index.html">Chrome Apps APIs</a>, such as identity and socket, in their Cordova applications.</p>
 
 <p>Other great examples include an NFC plugin by Chariot Solutions, an iOS keychain plugin by prominent Cordova contributor Shazron Abdullah, and a spinner/loader plugin by Wizcorp—and the list keeps growing.</p>
 
-<p>Cordova’s new plugin registry makes it easier than ever to discover and contribute plugins.  Whether you want to peruse what’s available or add to that list, check it out <a href="http://plugins.cordova.io/">here</a>!</p>
+<p>Cordova’s new plugin registry makes it easier than ever to discover and contribute plugins. Whether you want to peruse what’s available or add to that list, check it out <a href="http://plugins.cordova.io/">here</a>!</p>
 
     </div>
 </div>



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