You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by db...@apache.org on 2015/10/21 00:28:17 UTC

[57/78] [abbrv] docs commit: Adding the bulk of the website.

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/57e2e2aa/www/_includes/tools_and_showcase.html
----------------------------------------------------------------------
diff --git a/www/_includes/tools_and_showcase.html b/www/_includes/tools_and_showcase.html
new file mode 100644
index 0000000..14ab0a1
--- /dev/null
+++ b/www/_includes/tools_and_showcase.html
@@ -0,0 +1,80 @@
+<div class="container">
+    <div class="row showcase_section_intro">
+        <div class="col-md-12 text-center">
+            <h1>Cordova Tools</h1>
+            <h2>A diverse ecosystem of command line tools, JavaScript frameworks, and cloud services exist that augment Cordova</h2>
+        </div>
+    </div>
+    <div class="row card_gallery">
+        {% for tool in site.data.tools %}
+        <div class="col-lg-2 col-md-4 col-sm-6 col-xs-12 card">
+            <div class="tool card_inner">
+                <div class="img_container">
+                    <img src="{{ site.baseurl }}/static/img/tools/{{ tool.image }}" class="center-block"/>
+                </div>
+                <p class="card_title">
+                    {% if tool.url %}
+                        <a href="{{ tool.url }}">
+                            {{ tool.name }}
+                        </a>
+                    {% else %}
+                        {{ tool.name }}
+                    {% endif %}
+                </p>
+                <p class="text">
+                    {{ tool.description | strip_html | truncate:255 }}
+                </p>
+            </div>
+        </div>
+        {% endfor %}
+    </div>
+    <div class="row"> <!-- Add yours or see more links -->
+        <div class="col-sm-12">
+            <div class="pull-right add_seemore_links">
+                <a target="_blank" href="https://github.com/apache/cordova-docs/tree/cordova-website#adding-a-tool-or-a-showcase-app">Add your tool</a>
+            </div>
+        </div>
+    </div>
+</div>
+
+<div class="container">
+    <div class="row showcase_section_intro">
+        <div class="col-md-12 text-center">
+            <h1>Cordova App Showcase</h1>
+            <h2>See other apps that use Cordova</h2>
+        </div>
+    </div>
+    <div class="row card_gallery">
+        {% for app in site.data.showcase-apps %}
+        <div class="col-lg-2 col-md-4 col-sm-6 col-xs-12 card">
+            <div class="app card_inner">
+                <div class="showcase_app_thumb">
+                    <img src="{{ site.baseurl }}/static/img/showcase-apps/{{ app.image }}" class="center-block"/>
+                </div>
+                <p class="card_title">
+                    {% if app.url %}
+                        <a href="{{ app.url }}">
+                            {{ app.name }}
+                        </a>
+                    {% else %}
+                        {{ app.name }}
+                    {% endif %}
+                </p>
+                <p class="text">{{ app.description | strip_html | truncate:128 }}</p>
+            </div>
+        </div>
+        {% endfor %}
+    </div>
+    <div class="row">
+        <div class="col-sm-12">
+            <div class="pull-right add_seemore_links">
+                <a target="_blank" href="https://github.com/apache/cordova-docs/tree/cordova-website#adding-a-tool-or-a-showcase-app">Add your app</a>
+            </div>
+        </div>
+    </div>
+    <div class="row">
+        <p>
+            &nbsp;
+        </p>
+    </div>
+</div>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/57e2e2aa/www/_includes/twitterFeed.html
----------------------------------------------------------------------
diff --git a/www/_includes/twitterFeed.html b/www/_includes/twitterFeed.html
new file mode 100644
index 0000000..4c9e8e6
--- /dev/null
+++ b/www/_includes/twitterFeed.html
@@ -0,0 +1,20 @@
+<a class="twitter-timeline" data-dnt="true" href="https://twitter.com/apachecordova" data-widget-id="629424968011386884">Tweets by @apachecordova</a>
+
+<script>
+window.twttr = (function(d, s, id) {
+    var js, fjs = d.getElementsByTagName(s)[0],
+        t = window.twttr || {};
+    if (d.getElementById(id)) return t;
+    js = d.createElement(s);
+    js.id = id;
+    js.src = "https://platform.twitter.com/widgets.js";
+    fjs.parentNode.insertBefore(js, fjs);
+
+    t._e = [];
+    t.ready = function(f) {
+        t._e.push(f);
+    };
+
+    return t;
+}(document, "script", "twitter-wjs"));
+</script>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/57e2e2aa/www/_layouts/blog.html
----------------------------------------------------------------------
diff --git a/www/_layouts/blog.html b/www/_layouts/blog.html
new file mode 100644
index 0000000..3c9ac0c
--- /dev/null
+++ b/www/_layouts/blog.html
@@ -0,0 +1,10 @@
+---
+layout: cordova
+blog_tab: true
+---
+
+<div class="blog">
+    <div class="container">
+        {{ content }}
+    </div>
+</div>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/57e2e2aa/www/_layouts/cordova.html
----------------------------------------------------------------------
diff --git a/www/_layouts/cordova.html b/www/_layouts/cordova.html
new file mode 100644
index 0000000..815d2b6
--- /dev/null
+++ b/www/_layouts/cordova.html
@@ -0,0 +1,15 @@
+---
+analytics_id: UA-64283057-3
+---
+
+<!DOCTYPE html>
+<html lang="{{ page.language }}">
+{% include head.html %}
+<body>
+    {% include header.html %}
+    {% include banner.html %}
+    {{ content }}
+    {% include footer.html %}
+    {% include analytics.html %}
+</body>
+</html>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/57e2e2aa/www/_layouts/docs-de.html
----------------------------------------------------------------------
diff --git a/www/_layouts/docs-de.html b/www/_layouts/docs-de.html
new file mode 100644
index 0000000..2eea405
--- /dev/null
+++ b/www/_layouts/docs-de.html
@@ -0,0 +1,10 @@
+---
+layout: docs
+title_prefix: "Apache Cordova"
+outdated_text: "Dies ist nicht die neueste Version der Dokumentation!"
+in_development_text: "This version of the documentation is under development!"
+click_here_text: "Click here for the latest released version"
+toc_text: "Inhaltsverzeichnis"
+---
+
+{{ content }}

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/57e2e2aa/www/_layouts/docs-en.html
----------------------------------------------------------------------
diff --git a/www/_layouts/docs-en.html b/www/_layouts/docs-en.html
new file mode 100644
index 0000000..fc1624d
--- /dev/null
+++ b/www/_layouts/docs-en.html
@@ -0,0 +1,10 @@
+---
+layout: docs
+title_prefix: "Apache Cordova"
+outdated_text: "This version of the documentation is outdated!"
+in_development_text: "This version of the documentation is under development!"
+click_here_text: "Click here for the latest released version"
+toc_text: "Table of Contents"
+---
+
+{{ content }}

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/57e2e2aa/www/_layouts/docs-es.html
----------------------------------------------------------------------
diff --git a/www/_layouts/docs-es.html b/www/_layouts/docs-es.html
new file mode 100644
index 0000000..d8fb721
--- /dev/null
+++ b/www/_layouts/docs-es.html
@@ -0,0 +1,10 @@
+---
+layout: docs
+title_prefix: "Apache Cordova"
+outdated_text: "Esta no es la versión más reciente de la documentación!"
+in_development_text: "This version of the documentation is under development!"
+click_here_text: "Click here for the latest released version"
+toc_text: "Tabla de Contenidos"
+---
+
+{{ content }}

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/57e2e2aa/www/_layouts/docs-fr.html
----------------------------------------------------------------------
diff --git a/www/_layouts/docs-fr.html b/www/_layouts/docs-fr.html
new file mode 100644
index 0000000..7c09a0c
--- /dev/null
+++ b/www/_layouts/docs-fr.html
@@ -0,0 +1,10 @@
+---
+layout: docs
+title_prefix: "Apache Cordova"
+outdated_text: "Ca n'est past la dernière version de la documentation."
+in_development_text: "This version of the documentation is under development!"
+click_here_text: "Click here for the latest released version"
+toc_text: "Table des Matières"
+---
+
+{{ content }}

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/57e2e2aa/www/_layouts/docs-it.html
----------------------------------------------------------------------
diff --git a/www/_layouts/docs-it.html b/www/_layouts/docs-it.html
new file mode 100644
index 0000000..727cf39
--- /dev/null
+++ b/www/_layouts/docs-it.html
@@ -0,0 +1,10 @@
+---
+layout: docs
+title_prefix: "Apache Cordova"
+outdated_text: "Questa non è la versione più recente della documentazione!"
+in_development_text: "This version of the documentation is under development!"
+click_here_text: "Click here for the latest released version"
+toc_text: "Sommario"
+---
+
+{{ content }}

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/57e2e2aa/www/_layouts/docs-ja.html
----------------------------------------------------------------------
diff --git a/www/_layouts/docs-ja.html b/www/_layouts/docs-ja.html
new file mode 100644
index 0000000..50cb9f7
--- /dev/null
+++ b/www/_layouts/docs-ja.html
@@ -0,0 +1,10 @@
+---
+layout: docs
+title_prefix: "Apache Cordova"
+outdated_text: "これがないドキュメントの最新バージョンです!"
+in_development_text: "This version of the documentation is under development!"
+click_here_text: "Click here for the latest released version"
+toc_text: "目次"
+---
+
+{{ content }}

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/57e2e2aa/www/_layouts/docs-ko.html
----------------------------------------------------------------------
diff --git a/www/_layouts/docs-ko.html b/www/_layouts/docs-ko.html
new file mode 100644
index 0000000..edc14e4
--- /dev/null
+++ b/www/_layouts/docs-ko.html
@@ -0,0 +1,10 @@
+---
+layout: docs
+title_prefix: "Apache Cordova"
+outdated_text: "이 아닌 문서의 최신 버전입니다!"
+in_development_text: "This version of the documentation is under development!"
+click_here_text: "Click here for the latest released version"
+toc_text: "차례"
+---
+
+{{ content }}

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/57e2e2aa/www/_layouts/docs-pl.html
----------------------------------------------------------------------
diff --git a/www/_layouts/docs-pl.html b/www/_layouts/docs-pl.html
new file mode 100644
index 0000000..3290b2a
--- /dev/null
+++ b/www/_layouts/docs-pl.html
@@ -0,0 +1,10 @@
+---
+layout: docs
+title_prefix: "Apache Cordova"
+outdated_text: "Nie jest to najnowsza wersja dokumentacji!"
+in_development_text: "This version of the documentation is under development!"
+click_here_text: "Click here for the latest released version"
+toc_text: "Spis treści"
+---
+
+{{ content }}

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/57e2e2aa/www/_layouts/docs-ru.html
----------------------------------------------------------------------
diff --git a/www/_layouts/docs-ru.html b/www/_layouts/docs-ru.html
new file mode 100644
index 0000000..5957512
--- /dev/null
+++ b/www/_layouts/docs-ru.html
@@ -0,0 +1,16 @@
+---
+layout: docs
+title_prefix: "Apache Cordova"
+outdated_text: "Эта версия документации устарела!"
+in_development_text: "Эта версия документации находится в стадии разработки!"
+click_here_text: "Нажмите здесь для последней выпущенной версии"
+toc_text: "Содержание"
+---
+
+<style type="text/css">
+    #home ul li {
+        height: 160px;
+    }
+</style>
+
+{{ content }}

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/57e2e2aa/www/_layouts/docs-sl.html
----------------------------------------------------------------------
diff --git a/www/_layouts/docs-sl.html b/www/_layouts/docs-sl.html
new file mode 100644
index 0000000..2405e0d
--- /dev/null
+++ b/www/_layouts/docs-sl.html
@@ -0,0 +1,10 @@
+---
+layout: docs
+title_prefix: "Apache Cordova"
+outdated_text: "To ni najnovejša različica dokumentacije!"
+in_development_text: "This version of the documentation is under development!"
+click_here_text: "Click here for the latest released version"
+toc_text: "Kazalo"
+---
+
+{{ content }}

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/57e2e2aa/www/_layouts/docs-zh.html
----------------------------------------------------------------------
diff --git a/www/_layouts/docs-zh.html b/www/_layouts/docs-zh.html
new file mode 100644
index 0000000..e842fe7
--- /dev/null
+++ b/www/_layouts/docs-zh.html
@@ -0,0 +1,10 @@
+---
+layout: docs
+title_prefix: "Apache Cordova"
+outdated_text: "这不是文档的最新版本!"
+in_development_text: "This version of the documentation is under development!"
+click_here_text: "Click here for the latest released version"
+toc_text: "目录"
+---
+
+{{ content }}

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/57e2e2aa/www/_layouts/docs.html
----------------------------------------------------------------------
diff --git a/www/_layouts/docs.html b/www/_layouts/docs.html
new file mode 100644
index 0000000..8eb2dea
--- /dev/null
+++ b/www/_layouts/docs.html
@@ -0,0 +1,176 @@
+---
+layout: cordova
+docs_tab: true
+analytics_id: UA-64283057-1
+---
+
+<!-- Use the manual ToC, and if it doesn't exist, use the generated one -->
+{% assign toc_dir = site.data.toc %}
+{% if toc_dir.[page.manual_toc] %}
+    {% assign tocfile = toc_dir.[page.manual_toc] %}
+{% else %}
+    {% assign tocfile = toc_dir.[page.generated_toc] %}
+{% endif %}
+
+<div class="docs container">
+
+    <!-- Table of Contents -->
+    <div class="hidden-xs hidden-sm col-md-3 site-toc-container">
+        <h2 class="site-toc-title">{{ page.toc_text }}</h2>
+        <ul class="site-toc">
+            {% for entry in tocfile %}
+            <li>
+                <a class="{% if page.url == entry.url %}this-page{% endif %}" href="{{ site.baseurl }}{{ entry.url }}">
+                    {{ entry.name }}
+                </a>
+                {% if page.url == entry.url %}
+                    <div id="page-toc" class="page-toc"></div>
+                {% else %}
+                <!-- DEBUG: {{ page.url }} != {{ entry.url }} -->
+                {% endif %}
+            </li>
+            {% endfor %}
+        </ul>
+    </div>
+
+    <!-- Page content -->
+    <div class="col-md-8 col-md-offset-1">
+
+        <!-- ToC Dropdown (for XS and SM sizes only) -->
+        <div class="toc-dropdown content-header visible-xs-block visible-sm-block">
+            <div class="dropdown">
+                <button class="btn btn-default dropdown-toggle" type="button" id="tocDropdown" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+                    {{ page.toc_text }}
+                    <span class="caret"></span>
+                </button>
+                <ul class="dropdown-menu">
+                    {% for entry in tocfile %}
+                    <li>
+                        <a class="{% if page.url == entry.url %}this-page{% endif %}" href="{{ site.baseurl }}{{ entry.url }}">
+                            {% if page.url == entry.url %}
+                                <em>{{ entry.name }}</em>
+                            {% else %}
+                                {{ entry.name }}
+                                <!-- DEBUG: {{ page.url }} != {{ entry.url }} -->
+                            {% endif %}
+                        </a>
+                    </li>
+                    {% endfor %}
+                </ul>
+            </div>
+        </div>
+
+        <div class="content-header">
+
+            <a class="edit" href="{{ site.repo.uri }}/tree/{{ site.repo.branch }}/www/{{ page.path }}">
+                <span class="glyphicon glyphicon-pencil" aria-hidden="true"></span> Edit
+            </a>
+
+            <!-- Language dropdown -->
+            <div class="dropdown">
+                <button class="btn btn-default dropdown-toggle" type="button" id="languageDropdown" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+                    {{ site.data.languages.[page.language].name }}
+                    <span class="caret"></span>
+                </button>
+
+                <!-- List all languages -->
+                <ul class="dropdown-menu" aria-labelledby="languageDropdown">
+                    {% for language_entry in site.data.languages %}
+
+                    {% assign language_id = language_entry[0] %}
+                    {% assign language    = language_entry[1] %}
+
+                    {% capture current_language_path %}/{{ page.language }}/{% endcapture %}
+                    {% capture target_language_path %}/{{ language_id }}/{% endcapture %}
+
+                    {% capture missing_version_class %}
+                        {% if language.versions contains page.version %}
+                        {% else %}
+                            missing-version
+                        {% endif %}
+                    {% endcapture %}
+
+                    <li>
+                        <!--
+                        Replace only the language part of the URI, thereby
+                        redirecting to the same page in the other language.
+                        The page should exist because it's for the same version.
+                         -->
+                        <a href="{{ site.baseurl }}{{ page.url | replace:current_language_path,target_language_path }}" class="{{ missing_version_class }}"
+                        >
+                            {% if page.language == language_id %}
+                                <span class="selected">
+                                    {{ language.name }}
+                                </span>
+                            {% else %}
+                                {{ language.name }}
+                            {% endif %}
+                        </a>
+                    </li>
+                    {% endfor %}
+                </ul>
+            </div>
+
+            <!-- Version dropdown -->
+            <div class="dropdown">
+                <button class="btn btn-default dropdown-toggle" type="button" id="versionDropdown" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+                    {{ page.version }}
+                    <span class="caret"></span>
+                </button>
+                <ul class="dropdown-menu" aria-labelledby="versionDropdown">
+
+                    <!-- List versions available in this language -->
+                    {% for version in site.data.languages.[page.language].versions reversed %}
+                    <li>
+
+                        <!--
+                        Redirect to the root of the version docs, not to the same
+                        page, because different versions may not have the same
+                        set of pages.
+                         -->
+                        <a href="{{ site.baseurl }}/docs/{{ page.language }}/{{ version }}">
+                            {% if page.version == version %}
+                                <span class="selected">
+                                    {{ version }}
+                                </span>
+                            {% else %}
+                                {{ version }}
+                            {% endif %}
+                        </a>
+                    </li>
+                    {% endfor %}
+                </ul>
+            </div>
+        </div>
+
+        <!-- Show warnings for special versions (i.e. non-latest, and edge) -->
+        {% capture latest_url %}{{ site.baseurl }}/docs/{{ page.language }}/{{ site.latest_docs_version }}{% endcapture %}
+
+        {% if page.version == 'edge' or page.version != site.latest_docs_version %}
+
+            {% if page.version == 'edge' %}
+                {% assign alert_class = "alert-info" %}
+                {% assign warning_text = page.in_development_text %}
+            {% elsif page.version != site.latest_docs_version %}
+                {% assign alert_class = "alert-danger" %}
+                {% assign warning_text = page.outdated_text %}
+            {% endif %}
+
+            <div class="alert {{ alert_class }} docs-alert" role="alert">
+                <button type="button" class="close" data-dismiss="alert" aria-label="Close">
+                    <span aria-hidden="true">&times;</span>
+                </button>
+                {{ warning_text }} {{ page.click_here_text }}:
+                <a href="{{ latest_url }}">{{ site.latest_docs_version }}</a>
+            </div>
+
+        {% endif %}
+
+        <div id="page-toc-source">
+            {{ content }}
+        </div>
+    </div>
+</div>
+
+<script defer type="text/javascript" src="{{ site.baseurl }}/static/js/lib/toc.min.js"></script>
+<script defer type="text/javascript" src="{{ site.baseurl }}/static/js/docs.js"></script>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/57e2e2aa/www/_layouts/plugins-help.html
----------------------------------------------------------------------
diff --git a/www/_layouts/plugins-help.html b/www/_layouts/plugins-help.html
new file mode 100644
index 0000000..c5ff10d
--- /dev/null
+++ b/www/_layouts/plugins-help.html
@@ -0,0 +1,8 @@
+---
+layout: cordova
+plugins_tab: true
+---
+
+<div class="container">
+{{ content }}
+</div>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/57e2e2aa/www/_layouts/post.html
----------------------------------------------------------------------
diff --git a/www/_layouts/post.html b/www/_layouts/post.html
new file mode 100644
index 0000000..083fac0
--- /dev/null
+++ b/www/_layouts/post.html
@@ -0,0 +1,71 @@
+---
+layout: blog
+---
+
+<h1 class="blogHeader">
+    Blog
+    <span class="rss">
+        <img src="{{ site.baseurl }}/static/img/subscribe.png"><a href="{{ site.baseurl }}{{ site.rss_path }}">RSS Feed</a>
+    </span>
+</h1>
+
+<div class="post">
+    <header>
+        <div class="title">{{ page.title }}</div>
+        <div class="author">By:
+            {% if page.author.url %}
+              <a href="{{ page.author.url }}">{{ page.author.name }}</a>
+            {% else %}
+              {{ page.author.name }}
+            {% endif %}
+        </div>
+        <div class="date">{{ page.date | date_to_string }}</div>
+    </header>
+    <section>
+        <div>
+            {{ content }}
+        </div>
+    </section>
+    <footer>
+        <div class="row">
+            <div class="col-sm-6">
+                {% if page.previous %}
+                    <a href="{{ site.baseurl }}{{ page.previous.url }}">Previous</a>
+                    <br>
+                    <br>
+                    <a class="title" href="{{ site.baseurl }}{{ page.previous.url }}">{{ page.previous.title }}</a>
+                    <div class="date"> {{ page.previous.date | date_to_string }} - By {{ page.previous.author.name }} </div>
+                    <p class="content">
+                        {{ page.previous.excerpt | strip_html | truncatewords:12 }}
+                    </p>
+                {% endif %}
+            </div>
+            <div class="col-sm-6">
+                {% if page.next %}
+                    <a href="{{ site.baseurl }}{{ page.next.url }}">Next</a>
+                    <br>
+                    <br>
+                    <a class="title" href="{{ site.baseurl }}{{ page.next.url }}">{{ page.next.title }}</a>
+                    <div class="date"> {{ page.next.date | date_to_string }} - By {{ page.next.author.name}} </div>
+                    <p class="content">
+                        <!--
+                            NOTE:
+                                the markdownify filter is used here
+                                because posts are rendered in sequence;
+                                that is, the next post's content isn't
+                                yet rendered at the time that this post
+                                is being rendered, so page.next.excerpt
+                                is still in Markdown and not HTML
+
+                            Reference: https://github.com/jekyll/jekyll/issues/2860
+                        -->
+                        {{ page.next.excerpt | markdownify | strip_html | truncatewords:12 }}
+                    </p>
+                {% endif %}
+            </div>
+        </div>
+    </footer>
+    <div class="disqus">
+        {% include disqus.html %}
+    </div>
+</div>

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/57e2e2aa/www/_posts/2013-07-08-cordova-has-a-blog.md
----------------------------------------------------------------------
diff --git a/www/_posts/2013-07-08-cordova-has-a-blog.md b/www/_posts/2013-07-08-cordova-has-a-blog.md
new file mode 100644
index 0000000..702d668
--- /dev/null
+++ b/www/_posts/2013-07-08-cordova-has-a-blog.md
@@ -0,0 +1,16 @@
+---
+layout: post
+author:
+    name: Carlos Santana
+    url: https://twitter.com/csantanapr
+title:  "Apache Cordova Gets an Official Blog"
+date:   2013-07-11 15:45:04 -5
+categories: blog
+tags: news
+---
+
+Cordova now has a Blog! Look here to stay up-to-date with what's happening with the project.
+There is a major release [3.0](https://issues.apache.org/jira/browse/CB/fixforversion/12322491)
+just around the corner (July 19, 2013), and we are really excited about it!
+
+Be sure to [subscribe]({{ site.baseurl }}{{ site.rss_path }}) using RSS

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/57e2e2aa/www/_posts/2013-07-23-cordova-3.md
----------------------------------------------------------------------
diff --git a/www/_posts/2013-07-23-cordova-3.md b/www/_posts/2013-07-23-cordova-3.md
new file mode 100644
index 0000000..57289ea
--- /dev/null
+++ b/www/_posts/2013-07-23-cordova-3.md
@@ -0,0 +1,74 @@
+---
+layout: post
+author:
+    name: Brian LeRoux
+    url: https://twitter.com/brianleroux
+title:  "Apache Cordova 3.0"
+date:   2013-07-23 13:45:04 -5
+categories: blog releases
+tags: news releases MAJOR
+---
+
+It went live on Friday! Snapshot available on our [download page](https://www.apache.org/dist/cordova/) but before downloading please read on to find out whats new including for more ways to work with Cordova!
+
+## Light Weight Core
+
+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.
+
+## New Command Line Tooling
+
+We're very excited to share two new command line tools: Cordova and Plugman. Both are implemented using `NodeJS` and thusly distributed via `npm`. The `cordova` 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 `cordova` tool builds off of our other new tool: `plugman`, which provides automated discovery, installation, and removal of both core and custom plugins.
+
+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 [issue tracker](http://issues.cordova.io
+).
+
+<!--more-->
+
+## Installing > Downloading
+
+First, [ensure you have NodeJS installed](http://nodejs.org) and then simply run `npm install -g cordova`. From here its a typical comand line utility. Get started by building an iOS app!
+
+    cordova create MyFunkyApp
+    cd MyFunkyApp
+    cordova platform add ios
+    cordova emulate ios
+
+Cordova has to download platform files the first time `create` is run, so the first app you create might be a little slow. Just use the `-d` flag to see progress. For example, `cordova -d platform add ios`. Maybe crack a beer and chill while it goes about its business first run.
+
+Now let's add Android, `cordova platform add android`. Yes: that easy!
+
+# Installing Plugins
+
+If you are working with a platform project directly (one created through a Cordova platform's `bin/create` script instead of through the `cordova` tool), then `plugman` can be used standalone. Again, [ensure you have NodeJS installed](http://nodejs.org) and then simply run `npm install -g plugman`.
+
+    cd MyFunkyApp
+    cordova plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-geolocation.git
+
+You now have geolocation enabled your project!
+
+If you are working with a native project directly then `plugman` can be used standalone. Again, [ensure you have NodeJS installed](http://nodejs.org) and then simply run `npm install -g plugman`.
+
+    cd MyAndroidProject
+    plugman --platform android --project . --plugin https://git-wip-us.apache.org/repos/asf/cordova-plugin-geolocation.git
+
+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 [reading the plugin development guide](http://cordova.apache.org/docs/en/3.0.0/guide_hybrid_plugins_index.md.html#Plugin%20Development%20Guide). 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 [core plugins](https://git-wip-us.apache.org/repos/asf?s=cordova-plugin).
+
+# Upgrading
+
+We have documented [upgrading guides](http://cordova.apache.org/docs/en/3.0.0/guide_upgrading_index.md.html) to help with the transition. Of course, do not hesitate to come for help in #cordova irc channel on freenode, or just visit our [issue tracker](http://issues.cordova.io).
+
+# Known Issues
+
+Remember *core plugins no longer exist by default in new projects* and you have to manually add them using `plugman` or `cordova`. 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!
+
+- Various native IDE's show generated files when using `cordova`-based projects. Be careful not to edit them or else you may lose your work when `cordova` is next run!
+- Whitelist (`<access>` tags) format is inconsistent across platforms
+- There is no "upgrade" command for `cordova` yet. You will need to remove and re-add plugins/platforms for now.
+- Not all platforms are supported by `cordova`. *Currently* only iOS, Android, BB10, and Windows Phone
+- A plugin discovery repository is still being baked and will be available very soon
+
+<br>
+
+# Huge Thanks
+
+Thank you to all the committers, testers, developers, and friends of Cordova whom made this possible!

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/57e2e2aa/www/_posts/2013-08-12-crowdintranslation.md
----------------------------------------------------------------------
diff --git a/www/_posts/2013-08-12-crowdintranslation.md b/www/_posts/2013-08-12-crowdintranslation.md
new file mode 100644
index 0000000..51adb4e
--- /dev/null
+++ b/www/_posts/2013-08-12-crowdintranslation.md
@@ -0,0 +1,24 @@
+---
+layout: post
+author:
+    name: Lisa Seacat DeLuca
+    url: https://twitter.com/IBMLisa
+title:  "Apache Cordova Is Looking for a Few Good Translators"
+date:   2013-08-12 15:45:04 -5
+categories: blog
+tags: news, translation, globalization, docs
+---
+
+Apache Cordova is going global!  Apache Cordova is already being used by
+developers all over the world and now, we are proud to announce, the Apache
+Cordova documentation will be translated into a number of languages.  But we
+need your help!  With the support of <a href="http://crowdin.net/project/cordova">Crowdin</a>, a translation and
+localization management platform, translators can login to the easy-to-use
+tooling and provide as much or as little translation assistance as they would
+like.  If you know another language please support Cordova and contribute.
+
+<a href="http://crowdin.net/project/cordova">http://crowdin.net/project/cordova</a>
+
+Email <a href="mailto:ldeluca@apache.org">ldeluca@apache.org</a> for more information.
+
+<!--more-->

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/57e2e2aa/www/_posts/2013-09-06-last-week.md
----------------------------------------------------------------------
diff --git a/www/_posts/2013-09-06-last-week.md b/www/_posts/2013-09-06-last-week.md
new file mode 100644
index 0000000..307a624
--- /dev/null
+++ b/www/_posts/2013-09-06-last-week.md
@@ -0,0 +1,29 @@
+---
+layout: post
+author:
+    name: Andrew Grieve
+    url: https://twitter.com/GrieveAndrew
+title:  "Last Week in Cordova"
+categories: news
+tags: last-week
+---
+
+Last week Cordova saw 39 commits come in, `plugman` reached version `0.11.0`, and `CLI` reached `3.0.9`.
+
+`plugman` now has initial support for Windows Phone, plugin URLs can now
+[specify a git hash and subdirectory](https://issues.apache.org/jira/browse/CB-4622),
+and `<engine>` tags [are now enforced](https://issues.apache.org/jira/browse/CB-4494).
+There was also good progress made towards launching our [Plugin Registry](https://issues.apache.org/jira/browse/CB-4489).
+
+<!--more-->
+
+*Other Notable Changes:*
+
+- `<lib-file>` [can now be used](https://issues.apache.org/jira/browse/CB-4430) by plugins to add `.jar` files on Android.
+- `cordova plugin rm` now doesn't choke when a file is already deleted
+- `cordova platform ls` now shows both installed and [available-to-install](https://issues.apache.org/jira/browse/CB-3904) platforms
+- `cordova-plugin-camera` data-URIs [now work again on Android](https://issues.apache.org/jira/browse/CB-4656)
+- `cordova-plugin-device-orientation` [got BB10 support](https://issues.apache.org/jira/browse/CB-3687)
+- `cordova-plugin-file`'s DirectoryEntry.copy() [is now recursive](https://issues.apache.org/jira/browse/CB-4514).
+- `cordova-plugin-geolocation` got Win8 support
+- `cordova-plugin-vibrate` [added a missing permission](https://issues.apache.org/jira/browse/CB-4661) for Android.

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/57e2e2aa/www/_posts/2013-09-13-last-week.md
----------------------------------------------------------------------
diff --git a/www/_posts/2013-09-13-last-week.md b/www/_posts/2013-09-13-last-week.md
new file mode 100644
index 0000000..e023527
--- /dev/null
+++ b/www/_posts/2013-09-13-last-week.md
@@ -0,0 +1,23 @@
+---
+layout: post
+author:
+    name: Andrew Grieve
+    url: https://twitter.com/GrieveAndrew
+title: "Last Week in Cordova: FirefoxOS, Translations, bug fixes"
+categories: news
+tags: last-week
+---
+
+Last week Cordova saw 83 commits come in from 24 different authors. No releases were made,
+but attention was spent on [adding Firefox OS support](https://issues.apache.org/jira/issues/?jql=project%20%3D%20CB%20AND%20component%20%3D%20FirefoxOS),
+translating docs, and fixing bugs.
+
+<!--more-->
+
+*Other Notable Changes:*
+
+- FileTransfer on wp7 now supports basic authentication
+- BlackBerry [no longer validates buildId](https://issues.apache.org/jira/browse/CB-4732) and [--no-build works again](https://issues.apache.org/jira/browse/CB-4785)
+- `cordova serve` now serves all platforms at the same time (via /android/www, /ios/www, etc)
+- `cordova plugin ls` now takes ~50ms instead of ~700ms to run
+- Plugin URLs [are now optional](https://issues.apache.org/jira/browse/CB-4770) within `<dependency>` tags. The registry will be used when only an ID is given.

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/57e2e2aa/www/_posts/2013-10-01-plugins-release.md
----------------------------------------------------------------------
diff --git a/www/_posts/2013-10-01-plugins-release.md b/www/_posts/2013-10-01-plugins-release.md
new file mode 100644
index 0000000..c99bf65
--- /dev/null
+++ b/www/_posts/2013-10-01-plugins-release.md
@@ -0,0 +1,38 @@
+---
+layout: post
+author:
+    name: Steve Gill
+    url: https://twitter.com/stevesgill
+title:  "Plugins Release: October 1st, 2013"
+categories: news
+tags: release
+---
+
+Today we are doing a plugin release in preparation for Apache Cordova 3.1.0, which is scheduled to be released later this week.
+
+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 [plugin registry](http://plugins.cordova.io/) for plugin installation instead of directly installing from the plugin git urls.
+
+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.
+
+E.g. To update your camera plugin:
+
+    cordova plugin rm org.apache.cordova.core.camera
+    cordova plugin add org.apache.cordova.camera
+
+<br />
+
+<!--more-->
+
+*Other Notable Changes:*
+
+* Firefox OS support for Vibration and Device plugins
+* Windows 8 support for multiple plugins
+* Fixed warnings that arose with XCode 5
+* [CB-4847](https://issues.apache.org/jira/browse/CB-4847) iOS 7 microphone access requires user permission (media plugin)
+* [CB-4799](https://issues.apache.org/jira/browse/CB-4799) Fix incorrect JS references within native code for iOS & Android (media plugin)
+* [CB-4806](https://issues.apache.org/jira/browse/CB-4806) Update splashscreen image bounds for iOS 7 (splashscreen plugin)
+* [CB-4593](https://issues.apache.org/jira/browse/CB-4593) Added vibration support for BB10 (vibration plugin)
+
+<br />
+You can check out the individual release notes in each of the plugin repos for more details.
+

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/57e2e2aa/www/_posts/2013-10-02-cordova-31.md
----------------------------------------------------------------------
diff --git a/www/_posts/2013-10-02-cordova-31.md b/www/_posts/2013-10-02-cordova-31.md
new file mode 100644
index 0000000..d026b04
--- /dev/null
+++ b/www/_posts/2013-10-02-cordova-31.md
@@ -0,0 +1,131 @@
+---
+layout: post
+author:
+    name: Andrew Grieve
+    url: https://twitter.com/GrieveAndrew
+title:  "Apache Cordova 3.1"
+categories: blog releases
+tags: news releases
+---
+
+The [Apache Cordova](http://cordova.apache.org/) team has just released Cordova 3.1.0. Hurray! Most notable changes include:
+
+* Initial (alpha) support for Firefox OS.
+* Windows 8 support for CLI project.
+* Unified [whitelist syntax](http://cordova.apache.org/docs/en/3.1.0/guide_appdev_whitelist_index.md.html) on iOS and Android
+* [Documentation](http://cordova.apache.org/docs/en/3.1.0/) translated into several languages ([fr](http://cordova.apache.org/docs/fr/3.1.0/index.html)
+[zh](http://cordova.apache.org/docs/zh/3.1.0/index.html)
+[de](http://cordova.apache.org/docs/de/3.1.0/index.html)
+[it](http://cordova.apache.org/docs/it/3.1.0/index.html)
+[ja](http://cordova.apache.org/docs/ja/3.1.0/index.html)
+[ko](http://cordova.apache.org/docs/ko/3.1.0/index.html)
+[ru](http://cordova.apache.org/docs/ru/3.1.0/index.html)
+[es](http://cordova.apache.org/docs/es/3.1.0/index.html))
+
+To upgrade a 3.0 project (replace `android` with the platform you want to update):
+
+    npm install -g cordova
+    cd my_project
+    cordova platform update android
+
+For non-CLI projects or for pre-3.0 projects, refer to the [upgrade guides](http://cordova.apache.org/docs/en/3.1.0/guide_platforms_index.md.html).
+
+<!--more-->
+
+## What's new in Android
+
+The Android platform saw 55 commits land since 3.0.0. Notable changes include:
+
+* [CB-4763](https://issues.apache.org/jira/browse/CB-4763) Deprecated JSONUtils.java, ExifHelper.java, DirectoryManager.java, FileHelper.java
+* [CB-4725](https://issues.apache.org/jira/browse/CB-4725) Cordova version is now available to native plugins through `CordovaWebView.CORDOVA_VERSION`
+* [CB-4652](https://issues.apache.org/jira/browse/CB-4652) Support for custom application templates for the `create` command
+* [CB-3819](https://issues.apache.org/jira/browse/CB-3819) Made it easier to set SplashScreen delay.
+* [CB-4013](https://issues.apache.org/jira/browse/CB-4013) Fixed `loadUrlTimeoutValue` preference.
+* [CB-4096](https://issues.apache.org/jira/browse/CB-4096) Implemented new unified whitelist for android
+* [CB-4133](https://issues.apache.org/jira/browse/CB-4133) Add main thread warning for plugins that run too long
+* Made it easier to use custom subclasses of WebChromeClient and WebViewClient
+
+For a full list of changes, refer to the Android [RELEASENOTES.md](https://github.com/apache/cordova-android/blob/master/RELEASENOTES.md).
+
+## What's new in iOS
+
+There were 50 commits to iOS since 3.0.0. The focus, of course, was support for iOS 7 and Xcode 5.
+
+* [CB-3020](https://issues.apache.org/jira/browse/CB-3020) Several fixes to HideKeyboardFormAccessoryBar and KeyboardShrinksView (still not perfect though)
+* [CB-4801](https://issues.apache.org/jira/browse/CB-4801) Add new iOS 7 properties for UIWebView in the config.xml &lt;preferences&gt;
+* [CB-4539](https://issues.apache.org/jira/browse/CB-4539) Can now create CDVViewController in Storyboard
+* [CB-4654](https://issues.apache.org/jira/browse/CB-4654) Allow default project template to be overridden in `create`
+* [CB-4095](https://issues.apache.org/jira/browse/CB-4095) Unified whitelist implementations
+* [CB-4486](https://issues.apache.org/jira/browse/CB-4486) Give iOS plugins the ability to override URL loading
+* [CB-4408](https://issues.apache.org/jira/browse/CB-4408) Modify cordova/build script to build for device (armv7/armv7s)
+* [CB-3005](https://issues.apache.org/jira/browse/CB-3005) Add support for query parameters in StartPage url
+* [CB-4355](https://issues.apache.org/jira/browse/CB-4355) Localstorage plugin handles options incorrectly (the settings key is specified with upper case chars)
+
+For a full list of changes, refer to the iOS [RELEASENOTES.md](https://github.com/apache/cordova-ios/blob/master/RELEASENOTES.md).
+
+## What's new in BlackBerry
+
+There have been 48 commits to the BlackBerry platform since 3.0.0. Many performance and stability improvements were introduced. Other notable changes include:
+
+* [CB-4876](https://issues.apache.org/jira/browse/CB-4876) Removal of playbook implementation
+* [CB-4812](https://issues.apache.org/jira/browse/CB-4812) Support for "default" value in the orientation preference
+* [CB-4544](https://issues.apache.org/jira/browse/CB-4544) Adds a --query flag to query the user for their password when we need it
+* [CB-4563](https://issues.apache.org/jira/browse/CB-4563) Migrated blackberry.app parameters to preferences
+* [CB-4344](https://issues.apache.org/jira/browse/CB-4344) Auto-detect started simulator
+* [CB-4342](https://issues.apache.org/jira/browse/CB-4342) Detect USB connected device
+* [CB-4076](https://issues.apache.org/jira/browse/CB-4076) Modified config-parser to default to the uri attribute
+
+## What's new in Windows Phone 7 & 8
+
+Defects closed:
+
+* [CB-3177](https://issues.apache.org/jira/browse/CB-3177) Remove `<plugin>` support in config.xml and remove deprecation notice in WP8
+* [CB-3176](https://issues.apache.org/jira/browse/CB-3176) Remove `<plugin>` support in config.xml and remove deprecation notice in WP7
+* [CB-4385](https://issues.apache.org/jira/browse/CB-4385) Tooling scripts fail when there are spaces in the path name
+* [CB-4350](https://issues.apache.org/jira/browse/CB-4350) Bad errors when trying to add win* platforms on mac
+* [CB-4421](https://issues.apache.org/jira/browse/CB-4421) WP8 Project - XHRHelper.HandleCommand failing with 'System.InvalidOperationException
+* [CB-4807](https://issues.apache.org/jira/browse/CB-4807) WP7 + 8 cannot handle parsing config.xml with namespaces
+* [CB-4526](https://issues.apache.org/jira/browse/CB-4526) Windows Phone 7+8 `build` script with no flags should call `clean` first
+* [CB-4850](https://issues.apache.org/jira/browse/CB-4850) Apache Cordova Apache Cordova
+* [CB-4850](https://issues.apache.org/jira/browse/CB-4850) WP7 startup optimization
+
+Other changes include:
+
+* Platform script improvements, removed case-sensitive ms-build version
+* Checks affecting some international users.
+* Added hash removal to injected js for backbone + jQuery Mobile routes
+
+## What's new in Windows 8
+
+Windows 8 support has been added to cordova-cli, so you can now run:
+
+    cordova platform add windows8
+
+All plugins were broken out into the respective repositories. All plugins are fully supported to be installed/uninstalled with plugman, and cordova-cli.
+
+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
+
+## What's new in Firefox OS
+
+Firefox OS support has been added to cordova-cli, so you can run:
+
+    cordova platform add firefoxos
+
+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:
+
+* org.apache.cordova.vibration
+* org.apache.cordova.device
+

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/57e2e2aa/www/_posts/2013-10-10-plugins-release.md
----------------------------------------------------------------------
diff --git a/www/_posts/2013-10-10-plugins-release.md b/www/_posts/2013-10-10-plugins-release.md
new file mode 100644
index 0000000..8590c95
--- /dev/null
+++ b/www/_posts/2013-10-10-plugins-release.md
@@ -0,0 +1,57 @@
+---
+layout: post
+author:
+    name: Steve Gill
+    url: https://twitter.com/stevesgill
+title:  "Plugins Release: October 10th, 2013"
+categories: news
+tags: release
+---
+
+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.
+
+The new plugins include:
+
+* websql for Android
+* keyboard for iOS
+* statusbar for iOS
+
+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
+
+<br />
+
+These plugins have been updated on our registry at [plugins.cordova.io](http://plugins.cordova.io).
+
+<br />
+
+<!--more-->
+
+E.g. To update your camera plugin:
+
+    cordova plugin rm org.apache.cordova.camera
+    cordova plugin add org.apache.cordova.camera
+
+
+*Notable Changes:*
+
+* [CB-4950](https://issues.apache.org/jira/browse/CB-4950) Remove the dependence on concrete component android.webkit.WebView. (contacts)
+* [CB-5020](https://issues.apache.org/jira/browse/CB-5020) File plugin should execute on a separate thread (file)
+* Fixed file-transfer issues for windows 8 (file-transfer)
+* [CB-4926](https://issues.apache.org/jira/browse/CB-4926) Fixes inappbrowser plugin loading for windows8 (inappbrowser)
+* [CB-4928](https://issues.apache.org/jira/browse/CB-4928) plugin-media doesn't load on windows8 (media)
+* [CB-4806](https://issues.apache.org/jira/browse/CB-4806) (Re-fix) Update splashscreen image bounds for iOS 7 (splashscreen)
+* [CB-4934](https://issues.apache.org/jira/browse/CB-4934) plugin-splashscreen should not show by default on Windows8 (splashscreen)
+* [CB-4929](https://issues.apache.org/jira/browse/CB-4929) plugin-splashscreen not loading proxy windows8 (splashscreen)
+
+<br />
+You can check out the individual release notes in each of the plugin repos for more details.
+

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/57e2e2aa/www/_posts/2013-10-21-cordova-registry.md
----------------------------------------------------------------------
diff --git a/www/_posts/2013-10-21-cordova-registry.md b/www/_posts/2013-10-21-cordova-registry.md
new file mode 100644
index 0000000..5826d01
--- /dev/null
+++ b/www/_posts/2013-10-21-cordova-registry.md
@@ -0,0 +1,45 @@
+---
+layout: post
+author:
+    name: Max Woghiren
+    url: http://www.maxwoghiren.com
+title:  "Cordova's Plugin Registry"
+categories: news
+tags: plugin
+---
+
+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.
+
+Our solution, which has been alluded to in previous posts, is the [Cordova plugin registry](http://plugins.cordova.io/).  Using the Cordova CLI, app developers can add plugins to their projects with a single command.
+
+<!--more-->
+
+From anywhere within an app's directory, plugins can be added to a project with
+
+    cordova plugin add [PLUGIN_ID]
+
+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:
+
+    cordova plugin add [PLUGIN_ID]@[VERSION]
+
+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.
+
+First, if you don't have a plugman account, you need to create one.
+
+    plugman adduser
+
+Then, you're free to publish!
+
+    plugman publish [PATH_TO_YOUR_PLUGIN]
+
+There's more you can do (such as search for a plugin by keyword)—you can find more information using `plugman --help`.
+
+For general plugin development help, you can find a guide [here](http://cordova.apache.org/docs/en/3.1.0/guide_hybrid_plugins_index.md.html#Plugin%20Development%20Guide).
+
+All of Cordova's plugins (which were bundled with core Cordova prior to 3.0) can be found in the registry.
+
+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 [Chrome Apps APIs](http://developer.chrome.com/apps/api_index.html), such as identity and socket, in their Cordova applications.
+
+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.
+
+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 [here](http://plugins.cordova.io/)!

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/57e2e2aa/www/_posts/2013-10-28-plugins-release.md
----------------------------------------------------------------------
diff --git a/www/_posts/2013-10-28-plugins-release.md b/www/_posts/2013-10-28-plugins-release.md
new file mode 100644
index 0000000..e9cda90
--- /dev/null
+++ b/www/_posts/2013-10-28-plugins-release.md
@@ -0,0 +1,54 @@
+---
+layout: post
+author:
+    name: Steve Gill
+    url: https://twitter.com/stevesgill
+title:  "CLI, Plugman &amp; Plugins Release: Oct 28, 2013"
+categories: news
+tags: release
+---
+
+Today we are doing a plugins and tooling release in preparation for Cordova 3.2.0. Most notable changes include:
+
+* Cordova CLI & Plugman have been refactored to use promises instead of callbacks
+* [CB-5125](https://issues.apache.org/jira/browse/CB-5125) Replace shell.exec with child process spawn
+* [CB-2234](https://issues.apache.org/jira/browse/CB-2234) Added cordova info command
+* [CB-5128](https://issues.apache.org/jira/browse/CB-5128) Repo & Issue tags have been added to all of our core plugins plugin.xml file. This will allow us to display issue tracker and repo information on our registry.
+* [CB-5184](https://issues.apache.org/jira/browse/CB-5184) Fix uninstall logic being too aggressive (plugman)
+* Overhauled dependency uninstallation in regards to plugins (plugman)
+* FirefoxOS support for device-motion, device-orientation and dialogs plugins.
+
+The plugins have been updated on our registry at [plugins.cordova.io](http://plugins.cordova.io/).
+
+<!--more-->
+
+E.g. To update your version of the Cordova-CLI to 3.1.0-0.2.0:
+
+    npm install -g cordova
+
+E.g. To update your vibration plugin:
+
+    cordova plugin rm org.apache.cordova.vibration
+    cordova plugin add org.apache.cordova.vibration
+
+E.g. To upgrade a 3.0 project (replace `android` with the platform you want to update):
+
+    npm install -g cordova
+    cd my_project
+    cordova platform update android
+
+*Notable Changes*
+
+* [CB-5106](https://issues.apache.org/jira/browse/CB-5106) - Fix broken tests (Cordova-CLI)
+* [CB-4958](https://issues.apache.org/jira/browse/CB-4958) - iOS - Camera plugin should not show the status bar (camera)
+* [CB-5154](https://issues.apache.org/jira/browse/CB-5154) log formatting incorrectly to native (console)
+* [CB-4825](https://issues.apache.org/jira/browse/CB-4825) use CoreMotion framework for accelerometer (device-motion)
+* [CB-5129](https://issues.apache.org/jira/browse/CB-5129): Add a consistent filesystem attribute to FileEntry and DirectoryEntry objects (file)
+* [CB-5015](https://issues.apache.org/jira/browse/CB-5015) BlackBerry10 Add missing dependency for File.slice (file)
+* [CB-4995](https://issues.apache.org/jira/browse/CB-4995) Fix crash when WebView is quickly opened then closed (inappbrowser)
+* [CB-4930](https://issues.apache.org/jira/browse/CB-4930) - iOS - InAppBrowser should take into account the status bar (inappbrowser)
+* [CB-4858](https://issues.apache.org/jira/browse/CB-4858) Convert relative URLs to absolute URLs in JS (inappbrowser)
+* [CB-3747](https://issues.apache.org/jira/browse/CB-3747) Fix back button having different dismiss logic from the close button. (inappbrowser)
+* [CB-5021](https://issues.apache.org/jira/browse/CB-5021) Expose closeDialog() as a public function and make it safe to call multiple times. (inappbrowser)
+* [CB-5199](https://issues.apache.org/jira/browse/CB-5199) - ios - Media Capture - UI issues under iOS 7 (media capture)
+

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

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/57e2e2aa/www/_posts/2013-11-13-cordova-320rc1.md
----------------------------------------------------------------------
diff --git a/www/_posts/2013-11-13-cordova-320rc1.md b/www/_posts/2013-11-13-cordova-320rc1.md
new file mode 100644
index 0000000..4f01a3f
--- /dev/null
+++ b/www/_posts/2013-11-13-cordova-320rc1.md
@@ -0,0 +1,29 @@
+---
+layout: post
+author:
+    name: Steve Gill
+    url: https://twitter.com/stevesgill
+title:  "Apache Cordova 3.2.0 RC1"
+categories: announcements releases
+tags: news releases
+---
+
+The [Apache Cordova](http://cordova.apache.org/) team has just released the first release candidate for Cordova 3.2.0! Barring no hiccups, we will be aiming to release the final version later this week. 
+Now we ask you, our community, to please download and help us test! We want this to be the most solid release yet! 
+
+Installing cordova for the first time:
+
+    npm install -g cordova@3.2.0-rc.1
+
+Updating your current version of cordova:
+
+    npm update -g cordova@3.2.0-rc.1
+
+Example of updating your current cordova android project to the latest version:
+
+    cd cordovaApp
+    cordova platform update android
+
+Issues can be reported at [https://issues.apache.org/jira/browse/CB](https://issues.apache.org/jira/browse/CB)
+
+We will release a changelog with the offical 3.2.0 release when it ships!

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/57e2e2aa/www/_posts/2013-11-15-kitkat.md
----------------------------------------------------------------------
diff --git a/www/_posts/2013-11-15-kitkat.md b/www/_posts/2013-11-15-kitkat.md
new file mode 100644
index 0000000..3ae575f
--- /dev/null
+++ b/www/_posts/2013-11-15-kitkat.md
@@ -0,0 +1,27 @@
+---
+layout: post
+author:
+    name: Andrew Grieve
+    url: https://twitter.com/GrieveAndrew
+title: "Action Required: Android KitKat Compatibility"
+categories: announcements
+tags: android
+---
+
+Android KitKat brings a [massive update](https://developers.google.com/chrome/mobile/docs/webview/overview)
+to the system WebView. This is terrific news for Cordova developers, as
+[initial](http://www.mobilexweb.com/blog/android-4-4-kitkat-browser-chrome-webview)
+[reviews](http://thenextweb.com/google/2013/11/02/kitkats-webview-powered-chromium-enabling-android-app-developers-use-new-html5-css-features/)
+give it a big thumbs up.
+
+**Update:** The following is not actually true. It was an issue with a release candidate, but does not manifest in the final version of the WebView.
+
+However, the update introduced [a bug in Cordova applications](https://issues.apache.org/jira/browse/CB-5393)
+that were built with Cordova versions prior to `3.1.0`, or `2.9.1`
+which can cause native bridge callbacks to not be received until another one is made
+(e.g. by switching in & out of the app). We strongly encourage all apps to
+[update their Cordova version](http://cordova.apache.org/docs/en/3.1.0/guide_platforms_android_upgrading.md.html),
+or to directly apply the fix to
+[cordova-android](https://git-wip-us.apache.org/repos/asf?p=cordova-android.git;a=commit;h=166b35bc6c5977cf547f4093690d554b57cb855a) and
+[cordova-js](https://git-wip-us.apache.org/repos/asf?p=cordova-js.git;a=commit;h=1be2876635d2a788270238c4b1cfad200c488e32).
+

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/57e2e2aa/www/_posts/2013-11-22-cordova-320.md
----------------------------------------------------------------------
diff --git a/www/_posts/2013-11-22-cordova-320.md b/www/_posts/2013-11-22-cordova-320.md
new file mode 100644
index 0000000..efa8a16
--- /dev/null
+++ b/www/_posts/2013-11-22-cordova-320.md
@@ -0,0 +1,183 @@
+---
+layout: post
+author:
+    name: Steve Gill
+    url: https://twitter.com/stevesgill
+title:  "Apache Cordova 3.2.0"
+categories: announcements
+tags: news releases
+---
+
+The [Apache Cordova](http://cordova.apache.org/) team has just released Cordova 3.2.0. Woo Hoo! This release has various bug fixes and enhancements for all of the platforms. 
+
+To upgrade to a 3.2 project (replace `android` with the platform you want to update):
+
+    npm install -g cordova
+    cd my_project
+    cordova platform update android
+    
+For non-CLI projects or for pre-3.0 projects, refer to the [upgrade guides](http://cordova.apache.org/docs/en/3.2.0/guide_platforms_index.md.html).
+
+We are in the process of fixing Android 4.4 (KitKat) related bugs. If you want to develop for KitKat, please read our [KitKat blog post](http://cordova.apache.org/announcements/2013/11/15/kitkat.html).
+
+Two known issues can be found at [CB-5398](https://issues.apache.org/jira/browse/CB-5398) and [CB-5294](https://issues.apache.org/jira/browse/CB-5294).
+
+Please report any bugs on our [issue tracker](https://issues.apache.org/jira/browse/CB).
+
+<!--more-->
+
+## What's new in Android
+
+* [CB-5301](https://issues.apache.org/jira/browse/CB-5301) add missing license headers
+* [CB-5349](https://issues.apache.org/jira/browse/CB-5349): fixed regression in update script
+* [CB-5193](https://issues.apache.org/jira/browse/CB-5193) Fix Android WebSQL sometime throwing SECURITY_ERR.
+* [CB-5191](https://issues.apache.org/jira/browse/CB-5191) Deprecate url-filter
+* [CB-4872](https://issues.apache.org/jira/browse/CB-4872) - moved version script to promise model
+* [CB-4872](https://issues.apache.org/jira/browse/CB-4872) - make sure to copy over version scripts to project
+* [CB-4872](https://issues.apache.org/jira/browse/CB-4872) - added android version scripts
+* [CB-5117](https://issues.apache.org/jira/browse/CB-5117): Output confirmation message if check_reqs passes.
+* Refactoring Android project-level and platform scripts to use Q.js
+* Updating to latest shelljs, old version doesn't preserve +x bits
+* Remove cordova.xml fallback from Config.java (it was removed from PluginManager for 3.0)
+* [CB-5080](https://issues.apache.org/jira/browse/CB-5080) Find resources in a way that works with aapt's --rename-manifest-package
+* [CB-4961](https://issues.apache.org/jira/browse/CB-4961): shell.js returns the full path on ls, rebuilding the full path isn't really needed
+* [CB-4892](https://issues.apache.org/jira/browse/CB-4892) Fix create script only escaping the first space instead of all spaces.
+* Fix update script to clobber cordova.js file (missing -f)
+* Add missing copyright header for Whitelist.java.
+
+## What's new in iOS
+
+* [CB-5124](https://issues.apache.org/jira/browse/CB-5124) - Remove splashscreen config.xml values from iOS Configuration Docs, move to plugin docs
+* [CB-5229](https://issues.apache.org/jira/browse/CB-5229) - cordova/emulate important improvements (stderr, check ios-sim before build)
+* [CB-5058](https://issues.apache.org/jira/browse/CB-5058) - CordovaLib xcode project gets assigned problematic Build Active Architecture Only settings.
+* [CB-5217](https://issues.apache.org/jira/browse/CB-5217) - cordova emulate ios doesn't exit
+* [CB-4805](https://issues.apache.org/jira/browse/CB-4805) - Update cordova/run and cordova/lib/install-device to use latest ios-deploy for iOS 7
+* [CB-5103](https://issues.apache.org/jira/browse/CB-5103) - Fix cordova/run: --emulate should be --emulator (fix CLI usage)
+* [CB-4872](https://issues.apache.org/jira/browse/CB-4872) - added iOS sdk version scripts
+* [CB-5099](https://issues.apache.org/jira/browse/CB-5099) - Add missing icons especially iOS 7 120x120 icon to default template
+* [CB-5037](https://issues.apache.org/jira/browse/CB-5037) - Fix bridge sometimes not resetting properly during page transitions
+* [CB-4990](https://issues.apache.org/jira/browse/CB-4990) - Can't run emulator from cordova cli
+* [CB-4978](https://issues.apache.org/jira/browse/CB-4978) - iOS - Remove HideKeyboardFormAccessoryBar and KeyboardShrinksView preferences in config.xml
+* [CB-4935](https://issues.apache.org/jira/browse/CB-4935) - iOS - Remove Keyboard preferences code into its own plugin
+* Make CDVWebViewDelegate able to load pages after a failed load.
+* Prevented automatic logging of whitelist failures.
+
+## What's new in Windows Phone 7 & 8
+
+* [CB-5418](https://issues.apache.org/jira/browse/CB-5418) BrowserMouseHelper fails on WP8 for WP7 apps
+* [CB-5437](https://issues.apache.org/jira/browse/CB-5437) Inconsistent default new project names for wp7 and wp8 visual studio templates
+* Fixes the invalid pattern used to test msbuild availability
+* [CB-5076](https://issues.apache.org/jira/browse/CB-5076) String.Format issue causing exception in exception handler
+* Update regex to handle international version strings
+* [CB-4872](https://issues.apache.org/jira/browse/CB-4872) changed version script file location to right spot and modified sdk version output
+* [CB-4872](https://issues.apache.org/jira/browse/CB-4872) - added os version and edition check
+* [CB-4872](https://issues.apache.org/jira/browse/CB-4872): Added wp7 and wp8 sdk version
+* [CB-3621](https://issues.apache.org/jira/browse/CB-3621) backbutton events can now throw an exception
+* [CB-4850](https://issues.apache.org/jira/browse/CB-4850) only write device guid if it does not exist
+* added case-insensitivity to check_reqs for wp8, just like @albanf did for wp7
+* Version check regexps should be case insensitive
+* pulled in and re-jiggered templates
+* removed risky regex template version number replacement, and added XMLDOM versions
+
+## What's new in Windows 8
+
+* [CB-5024](https://issues.apache.org/jira/browse/CB-5024) Localized output of msbuild -v was not properly parsed.
+
+## What's new in BlackBerry 10
+
+* [CB-5433](https://issues.apache.org/jira/browse/CB-5433) init.bat use %USERPROFILE% on Windows
+* Fix unit tests
+* [CB-5317](https://issues.apache.org/jira/browse/CB-5317) Move signing warn logic to build/run scripts
+* [CB-5258](https://issues.apache.org/jira/browse/CB-5258) use exit library for process.exit
+* [CB-5159](https://issues.apache.org/jira/browse/CB-5159) Add headers to files caught by Apache RAT
+* [CB-4531](https://issues.apache.org/jira/browse/CB-4531) bin/check_reqs scripts exit with code 2 on error
+* [CB-5246](https://issues.apache.org/jira/browse/CB-5246) cordova/run disambiguate no target exists message
+* [CB-5250](https://issues.apache.org/jira/browse/CB-5250) bb init script calls dirname with unquoted variables
+* [CB-5266](https://issues.apache.org/jira/browse/CB-5266) update create.js to copy all shell scripts regardless of host platform
+* [CB-5254](https://issues.apache.org/jira/browse/CB-5254) log useful error info to std err
+* [CB-5237](https://issues.apache.org/jira/browse/CB-5237) Implemented config-file support in config.xml to inject custom xml into the bar-descriptor.
+* [CB-4403](https://issues.apache.org/jira/browse/CB-4403) Combined check_reqs and init to allow prerequisite check before each script
+* [CB-4570](https://issues.apache.org/jira/browse/CB-4570) Removing unnecessary content check for config since index.html is in the default
+* [CB-5135](https://issues.apache.org/jira/browse/CB-5135) Mark scripts as requiring Bash instead of using a random system shell
+* [CB-5182](https://issues.apache.org/jira/browse/CB-5182) Adding generic error case to run script
+* Auto-detect started simulator on Linux
+* [CB-4767](https://issues.apache.org/jira/browse/CB-4767) Remove license from platform config.xml
+* [CB-4340](https://issues.apache.org/jira/browse/CB-4340) Auto-detect target pin when its not there
+* [CB-4768](https://issues.apache.org/jira/browse/CB-4768) Remove access_shared from default config.xml
+* [CB-4931](https://issues.apache.org/jira/browse/CB-4931) Updated signing process to allow passthrough of args
+* [CB-4531](https://issues.apache.org/jira/browse/CB-4531) changed error codes in line with spec for helper scripts
+* [CB-4780](https://issues.apache.org/jira/browse/CB-4780) update script with windows support
+* [CB-4780](https://issues.apache.org/jira/browse/CB-4780) update script for cli platform update command
+* [CB-5139](https://issues.apache.org/jira/browse/CB-5139) - fix to able call bb10 version script from anywhere
+* [CB-4872](https://issues.apache.org/jira/browse/CB-4872) - added bb10 ndk version scripts
+* Adding a missing null check   -Rewriting boolean equation for readability
+* [CB-3015](https://issues.apache.org/jira/browse/CB-3015) Moving dependencies to .cordova folder to speed up create time
+* [CB-3015](https://issues.apache.org/jira/browse/CB-3015) Fix syntax issue in definition check in init.bat
+* [CB-4774](https://issues.apache.org/jira/browse/CB-4774) Adding defaults.xml for new prepare flow
+* [CB-4887](https://issues.apache.org/jira/browse/CB-4887) Added support for true/false for hidekeyboardformaccessorybar
+* [CB-2980](https://issues.apache.org/jira/browse/CB-2980) Added the install-emulator script
+* [CB-2988](https://issues.apache.org/jira/browse/CB-2988) Added the install-device script
+* [CB-4913](https://issues.apache.org/jira/browse/CB-4913) Updates warnings to check for BBID token
+* [CB-4901](https://issues.apache.org/jira/browse/CB-4901) Removed custom modified wrench + wrench bump to 1.4.4
+* [CB-4345](https://issues.apache.org/jira/browse/CB-4345) Added warning message for when signing keys are not installed
+
+## What's new in FirefoxOS
+
+* [CB-5234](https://issues.apache.org/jira/browse/CB-5234): fixed FxOS update script
+* [CB-5234](https://issues.apache.org/jira/browse/CB-5234): added update scripts for FxOS
+* added values to defaults.xml
+* [CB-5051](https://issues.apache.org/jira/browse/CB-5051): moved defaults.xml to cordova folder
+
+## What's new in Cordova-CLI
+
+* add the output of the plugman results to the console
+* [CB-5363](https://issues.apache.org/jira/browse/CB-5363) Improve config_json error reporting
+* [CB-5364](https://issues.apache.org/jira/browse/CB-5364) config_parser - check for null element text
+* Fix issue not finding platform script when in subdir - check platforms which have subdir
+* [CB-5377](https://issues.apache.org/jira/browse/CB-5377) serve: should only indicate listening when it is
+* [CB-5368](https://issues.apache.org/jira/browse/CB-5368) Cordova serve deflate content breaks IE
+* Change cordova serve's project.json to include etags.
+* [CB-5280](https://issues.apache.org/jira/browse/CB-5280) Update serve's help text to remove platform arguments
+* [CB-5364](https://issues.apache.org/jira/browse/CB-5364) config_parser - handle duplicates with children and text when merging
+* [CB-4400](https://issues.apache.org/jira/browse/CB-4400): cd to project root in most cordova commands.
+* [CB-5063](https://issues.apache.org/jira/browse/CB-5063): Revert to copying cordova.js before user www dir
+* fix 3 failing tests for windows8 and wp8 and add assertions for wp7 too.
+* Adding instructions for installing on master.
+* [CB-5063](https://issues.apache.org/jira/browse/CB-5063): Keep cordova.js in platform_www to avoid copying it from lib.
+* [CB-5307](https://issues.apache.org/jira/browse/CB-5307): Remove references to Callback and Incubator
+* tests were failing attempting to match lib/dir and lib\\dir on windows
+* [CB-5183](https://issues.apache.org/jira/browse/CB-5183) WP7/8 lib path is not correctly resolved by CLI (additional changes)
+* [CB-5283](https://issues.apache.org/jira/browse/CB-5283) Improved cordova serve message to be more descriptive
+* [CB-4866](https://issues.apache.org/jira/browse/CB-4866) Execute hooks in ascending order of any leading numbers
+* [CB-5143](https://issues.apache.org/jira/browse/CB-5143) Locate the actual Android app .java file much more carefully.
+* Cleaning up wp7+8 parsers' use of promises. Fix tests.
+* serve: Fix doRoot() not being called & remove duplicated table.
+* serve: provide basic entry point
+* Wait for the pre_package event to finish, or the update_csproj function might give unexpected results
+* Add pre_package event to wp8 project
+* readability + code quality in wp7+8 parsers
+* [CB-5183](https://issues.apache.org/jira/browse/CB-5183) WP7/8 custom_path is not correctly resolved by CLI
+* [CB-4994](https://issues.apache.org/jira/browse/CB-4994) Update xcode dependency to handle Xcode 5 capabilities.
+
+## Plugin versions tested with this release
+
+* cordova-plugin-battery-status: 0.2.4
+* cordova-plugin-camera: 0.2.4
+* cordova-plugin-console: 0.2.4
+* cordova-plugin-contacts: 0.2.5
+* cordova-plugin-device: 0.2.4
+* cordova-plugin-device-motion: 0.2.3
+* cordova-plugin-device-orientation: 0.3.2
+* cordova-plugin-dialogs: 0.2.3
+* cordova-plugin-file: 0.2.5
+* cordova-plugin-file-transfer: 0.3.4
+* cordova-plugin-geolocation: 0.3.3
+* cordova-plugin-globalization: 0.2.3
+* cordova-plugin-inappbrowser: 0.2.4
+* cordova-plugin-media: 0.2.5
+* cordova-plugin-media-capture: 0.2.4
+* cordova-plugin-network-information: 0.2.4
+* cordova-plugin-splashscreen: 0.2.4
+* cordova-plugin-vibration: 0.3.4
+
+For a full list of changes, refer to RELEASENOTES.md file included in the download.

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/57e2e2aa/www/_posts/2013-12-04-plugins-release.md
----------------------------------------------------------------------
diff --git a/www/_posts/2013-12-04-plugins-release.md b/www/_posts/2013-12-04-plugins-release.md
new file mode 100644
index 0000000..39c3483
--- /dev/null
+++ b/www/_posts/2013-12-04-plugins-release.md
@@ -0,0 +1,33 @@
+---
+layout: post
+author:
+    name: Steve Gill
+    url: https://twitter.com/stevesgill
+title:  "Plugins Release: Dec 4, 2013"
+categories: news
+tags: release
+---
+
+Today we are doing a plugins release in preparation for Cordova 3.3.0. Most plugins now have support for our upcoming platform additions, Amazon Fire OS & Ubuntu! Most notable changes include:
+
+* Ubuntu support for most plugins
+* Amazon Fire OS support for most plugins
+* WP8 add support for battery-level
+* Camera Plugin now supports Firefox OS
+* Geolocation Plugin now supports Firefox OS
+* [CB-3420](https://issues.apache.org/jira/browse/CB-3420) WP feature hidden=yes implemented for inappbrowser
+* [CB-4724](https://issues.apache.org/jira/browse/CB-4724) WP8 - Fixed UriFormatException for inappbrowser
+* [CB-5291](https://issues.apache.org/jira/browse/CB-5291) iOS - Media Capture Audio - status bar issues under iOS 7
+* [CB-5275](https://issues.apache.org/jira/browse/CB-5275) Fixed media-capture's ability to select images & videos on Android
+* [CB-4747](https://issues.apache.org/jira/browse/CB-4747) Fixed BlackBerry background vibrate
+
+The plugins have been updated on our registry at [plugins.cordova.io](http://plugins.cordova.io/).
+
+The new & improved file plugin did not get released with todays release. It requires more work & testing. We hope to have it out before 3.3.0 lands next week.
+
+<!--more-->
+
+E.g. To update your vibration plugin:
+
+    cordova plugin rm org.apache.cordova.vibration
+    cordova plugin add org.apache.cordova.vibration

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/57e2e2aa/www/_posts/2013-12-06-cordova-330rc1.md
----------------------------------------------------------------------
diff --git a/www/_posts/2013-12-06-cordova-330rc1.md b/www/_posts/2013-12-06-cordova-330rc1.md
new file mode 100644
index 0000000..1cce759
--- /dev/null
+++ b/www/_posts/2013-12-06-cordova-330rc1.md
@@ -0,0 +1,30 @@
+---
+layout: post
+author:
+    name: Steve Gill
+    url: https://twitter.com/stevesgill
+title:  "Apache Cordova 3.3.0 RC1"
+categories: announcements releases
+tags: news releases
+---
+
+The [Apache Cordova](http://cordova.apache.org/) team has just released the first release candidate for Cordova 3.3.0! We will be aiming to release the final version near the end of next week! Just in time for some holiday hacking! 
+ 
+Now we ask you, our community, to please download and help us test!
+
+Installing cordova for the first time:
+
+    npm install -g cordova@3.3.0-rc.1
+
+Updating your current version of cordova:
+
+    npm update -g cordova@3.3.0-rc.1
+
+Example of updating your current cordova android project to the latest version:
+
+    cd cordovaApp
+    cordova platform update android
+
+Issues can be reported at [https://issues.apache.org/jira/browse/CB](https://issues.apache.org/jira/browse/CB)
+
+We will release a changelog with the offical 3.3.0 release when it ships!


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