cordova-medic git commit: Made medic run on device by default.

2016-01-11 Thread dblotsky
Repository: cordova-medic
Updated Branches:
  refs/heads/master 09fa69981 -> 0958662e3


Made medic run on device by default.


Project: http://git-wip-us.apache.org/repos/asf/cordova-medic/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-medic/commit/0958662e
Tree: http://git-wip-us.apache.org/repos/asf/cordova-medic/tree/0958662e
Diff: http://git-wip-us.apache.org/repos/asf/cordova-medic/diff/0958662e

Branch: refs/heads/master
Commit: 0958662e38c42063405deb0a80c4b36a40d86b53
Parents: 09fa699
Author: Dmitry Blotsky 
Authored: Mon Jan 11 17:46:08 2016 -0800
Committer: Dmitry Blotsky 
Committed: Mon Jan 11 17:46:08 2016 -0800

--
 medic/medic-run.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/cordova-medic/blob/0958662e/medic/medic-run.js
--
diff --git a/medic/medic-run.js b/medic/medic-run.js
index 1feefd7..4a33068 100644
--- a/medic/medic-run.js
+++ b/medic/medic-run.js
@@ -348,7 +348,7 @@ function main() {
 
 // compose commands
 var buildCommand = cli + " build " + platform + " -- " + platformArgs;
-var runCommand   = cli + " run " + platform + " -- " + platformArgs;
+var runCommand   = cli + " run --device " + platform + " -- " + 
platformArgs;
 
 // build the code
 // NOTE:


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



cordova-medic git commit: Made medic-run fall back to emulator if running via device fails because a device is not found.

2016-01-11 Thread dblotsky
Repository: cordova-medic
Updated Branches:
  refs/heads/master 0958662e3 -> c66fbcacd


Made medic-run fall back to emulator if running via device fails because a 
device is not found.


Project: http://git-wip-us.apache.org/repos/asf/cordova-medic/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-medic/commit/c66fbcac
Tree: http://git-wip-us.apache.org/repos/asf/cordova-medic/tree/c66fbcac
Diff: http://git-wip-us.apache.org/repos/asf/cordova-medic/diff/c66fbcac

Branch: refs/heads/master
Commit: c66fbcacddabb202740b1c8939a626d082200ae3
Parents: 0958662
Author: Dmitry Blotsky 
Authored: Mon Jan 11 21:04:46 2016 -0800
Committer: Dmitry Blotsky 
Committed: Mon Jan 11 21:04:46 2016 -0800

--
 lib/util.js| 52 +--
 medic/medic-run.js | 81 +++--
 2 files changed, 81 insertions(+), 52 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/cordova-medic/blob/c66fbcac/lib/util.js
--
diff --git a/lib/util.js b/lib/util.js
index 8c7e74f..2f649ad 100644
--- a/lib/util.js
+++ b/lib/util.js
@@ -30,6 +30,30 @@ module.exports = (function () {
 var RED_COLOR = ESCAPE + "[31m";
 var NO_COLOR  = ESCAPE + "[m";
 
+function medicLog(message) {
+console.log(RED_COLOR + "[MEDIC LOG " + new Date().toUTCString() + "]" 
+ NO_COLOR + " " + message);
+}
+
+function contains(collection, item) {
+return collection.indexOf(item) !== (-1);
+}
+
+function isWindows () {
+// NOTE:
+//  - including "^" because otherwise "Darwin" matches
+//  - only "win" and not "windows" because "win32" should also 
match
+return /^win/.test(os.platform());
+}
+
+function fatal(message) {
+medicLog("FATAL: " + message);
+process.exit(1);
+}
+
+function secToMin (seconds) {
+return Math.ceil(seconds / 60);
+}
+
 return {
 
 // constants
@@ -44,28 +68,10 @@ module.exports = (function () {
 DEFAULT_LOG_TIME_ADDITIONAL: 2,
 
 // functions
-fatal: function (message) {
-console.error("FATAL: " + message);
-process.exit(1);
-},
-
-isWindows: function () {
-// NOTE:
-//  - including "^" because otherwise "Darwin" matches
-//  - only "win" and not "windows" because "win32" should also 
match
-return /^win/.test(os.platform());
-},
-
-medicLog: function (message) {
-console.log(RED_COLOR + "[MEDIC LOG " + new Date().toUTCString() + 
"]" + NO_COLOR + " " + message);
-},
-
-contains: function (collection, item) {
-return collection.indexOf(item) !== (-1);
-},
-
-secToMin: function (seconds) {
-return Math.ceil(seconds / 60);
-}
+fatal: fatal,
+isWindows: isWindows,
+medicLog:  medicLog,
+contains:  contains,
+secToMin:  secToMin
 };
 }());

http://git-wip-us.apache.org/repos/asf/cordova-medic/blob/c66fbcac/medic/medic-run.js
--
diff --git a/medic/medic-run.js b/medic/medic-run.js
index 4a33068..20bb4bc 100644
--- a/medic/medic-run.js
+++ b/medic/medic-run.js
@@ -37,6 +37,7 @@ var testwait = require("../lib/testwait");
 var CORDOVA_MEDIC_DIR = "cordova-medic";
 var DEFAULT_APP_PATH  = "mobilespec";
 var CORDOVA_ERROR_PATTERN = /^ERROR/m;
+var NO_DEVICE_PATTERN = /(^.*no .* was detected)|(^.*no devices 
found)/m;
 var DEFAULT_APP_ENTRY = "index.html";
 var ANDROID_PAGE_LOAD_TIMEOUT = 12; // in milliseconds
 var MEDIC_BUILD_PREFIX= "medic-cli-build";
@@ -279,6 +280,17 @@ function getLocalCLI() {
 }
 }
 
+function cordovaReturnedError(returnCode, output) {
+if (returnCode !== 0 || CORDOVA_ERROR_PATTERN.test(output)) {
+return true;
+}
+return false;
+}
+
+function failedBecauseNoDevice(output) {
+return NO_DEVICE_PATTERN.test(output);
+}
+
 // main
 function main() {
 
@@ -324,8 +336,10 @@ function main() {
 
 // bail if the results server is down
 if (error || response.statusCode !== 200) {
-util.fatal("results server is down, so test run can't be 
monitored");
+util.fatal("it's not up, so test run can't be monitored");
 process.exit(1);
+} else {
+util.medicLog("it's up");
 }
 
 // modify the app to run autonomously
@@ -343,12 +357,31 @@ function main() {
 platformArgs = wp8SpecificPreparation(argv);
 }
 
+// start waiting for test results
+// NOTE:
+//  

docs commit: Removing some old cleanup code.

2016-01-07 Thread dblotsky
Repository: cordova-docs
Updated Branches:
  refs/heads/master 63f1eb27b -> 9381b5a60


Removing some old cleanup code.


Project: http://git-wip-us.apache.org/repos/asf/cordova-docs/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-docs/commit/9381b5a6
Tree: http://git-wip-us.apache.org/repos/asf/cordova-docs/tree/9381b5a6
Diff: http://git-wip-us.apache.org/repos/asf/cordova-docs/diff/9381b5a6

Branch: refs/heads/master
Commit: 9381b5a60623467434f4e7c6efe3ef219ff1f49c
Parents: 63f1eb2
Author: Dmitry Blotsky 
Authored: Thu Jan 7 17:41:36 2016 -0800
Committer: Dmitry Blotsky 
Committed: Thu Jan 7 17:43:22 2016 -0800

--
 Makefile | 6 --
 1 file changed, 6 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/9381b5a6/Makefile
--
diff --git a/Makefile b/Makefile
index 517774b..92527cb 100644
--- a/Makefile
+++ b/Makefile
@@ -239,12 +239,6 @@ clean:
$(RM) $(PLUGINS_APP)
$(RM) -r $(CSS_DEST_DIR)
 
-# I couldn't find a way to do this nicely on Windows
-ifdef WINDOWS
-else
-   find . -name *.pyc -delete
-endif
-
 nuke: clean
$(RM) -r node_modules
$(RM) Gemfile.lock


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



svn commit: r1719575 - /cordova/site/public/static/img/search_icon_hover.svg

2015-12-11 Thread dblotsky
Author: dblotsky
Date: Fri Dec 11 21:53:12 2015
New Revision: 1719575

URL: http://svn.apache.org/viewvc?rev=1719575=rev
Log:
Forgot to add file.

Added:
cordova/site/public/static/img/search_icon_hover.svg

Added: cordova/site/public/static/img/search_icon_hover.svg
URL: 
http://svn.apache.org/viewvc/cordova/site/public/static/img/search_icon_hover.svg?rev=1719575=auto
==
--- cordova/site/public/static/img/search_icon_hover.svg (added)
+++ cordova/site/public/static/img/search_icon_hover.svg Fri Dec 11 21:53:12 
2015
@@ -0,0 +1,12 @@
+
+
+http://www.w3.org/2000/svg; 
xmlns:xlink="http://www.w3.org/1999/xlink; x="0px" y="0px"
+ viewBox="0 0 30 60.3" style="enable-background:new 0 0 30 60.3;" 
xml:space="preserve">
+
+.st0{fill:#AC;}
+
+
+



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



docs commit: CB-10182 Adding search field and linking it to Google search.

2015-12-10 Thread dblotsky
Repository: cordova-docs
Updated Branches:
  refs/heads/master de535f6fa -> 466f58443


CB-10182 Adding search field and linking it to Google search.


Project: http://git-wip-us.apache.org/repos/asf/cordova-docs/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-docs/commit/466f5844
Tree: http://git-wip-us.apache.org/repos/asf/cordova-docs/tree/466f5844
Diff: http://git-wip-us.apache.org/repos/asf/cordova-docs/diff/466f5844

Branch: refs/heads/master
Commit: 466f5844327d3d1b9150b8d5fb2ca006b840cc2c
Parents: de535f6
Author: Dmitry Blotsky 
Authored: Fri Dec 4 04:30:47 2015 -0800
Committer: Dmitry Blotsky 
Committed: Thu Dec 10 12:34:18 2015 -0800

--
 Makefile |  2 +
 _config.yml  |  3 +-
 www/_includes/header.html| 87 +--
 www/static/css-src/_home.scss| 16 +++---
 www/static/css-src/main.scss | 17 ++
 www/static/img/search_icon_hover.svg | 12 +
 www/static/js/index.js   |  4 +-
 7 files changed, 93 insertions(+), 48 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/466f5844/Makefile
--
diff --git a/Makefile b/Makefile
index d0d24a7..517774b 100644
--- a/Makefile
+++ b/Makefile
@@ -194,6 +194,8 @@ $(TOC_FILES): $(BIN_DIR)/toc.js Makefile
 
 $(MAIN_STYLE_FILE): $(SCSS_SRC)
 
+# pattern rules
+
 # NODE:
 #  $(@D) means "directory part of target"
 $(CSS_DEST_DIR)/%.css: $(CSS_SRC_DIR)/%.less Makefile

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/466f5844/_config.yml
--
diff --git a/_config.yml b/_config.yml
index d98edae..91b1e9d 100644
--- a/_config.yml
+++ b/_config.yml
@@ -24,7 +24,8 @@ repo:
 latest_docs_version: dev
 
 # NOTE:
-#  this value might get overwritten on some pages; see _defaults.yml
+#  this value _might_ get overwritten on some pages;
+#  see _defaults.yml, which is a generated file
 language: en
 
 # NOTE:

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/466f5844/www/_includes/header.html
--
diff --git a/www/_includes/header.html b/www/_includes/header.html
index fa81447..906a57a 100644
--- a/www/_includes/header.html
+++ b/www/_includes/header.html
@@ -1,40 +1,49 @@
-
-
-
-
-
-Toggle navigation
-
-
-
-
-
-
-
-
-
-
-
-Documentation
-
-
-Plugins
-
-
-Blog
-
-
-Contribute
-
-
-Get 
Started
-
-
-
+
+
+
+
+
+
+Toggle navigation
+
+
+
+
+
 
-
-
-
-
+
+
+
+
+Documentation
+
+
+Plugins
+
+
+Blog
+
+
+Contribute
+
+
+Get 
Started
+
+
+https://www.google.com/search; method="GET" 
class="navbar-form navbar-right" id="header-search-form" role="search">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/466f5844/www/static/css-src/_home.scss
--
diff --git a/www/static/css-src/_home.scss b/www/static/css-src/_home.scss
index 6c671fc..351762f 100644
--- a/www/static/css-src/_home.scss
+++ b/www/static/css-src/_home.scss
@@ -175,24 +175,26 @@ html {
 #sprite_apis { @include sprite-img(100%, 0) }
 
 .navbar-brand {
-padding:0;
+padding: 0;
 

svn commit: r1719230 - in /cordova/site/public: ./ announcements/2013/11/15/ announcements/2013/11/22/ announcements/2013/12/16/ announcements/2014/02/20/ announcements/2014/05/23/ announcements/2014/

2015-12-10 Thread dblotsky
Author: dblotsky
Date: Thu Dec 10 22:55:46 2015
New Revision: 1719230

URL: http://svn.apache.org/viewvc?rev=1719230=rev
Log:
Updating to latest site.


[This commit notification would consist of 603 parts, 
which exceeds the limit of 50 ones, so it was shortened to the summary.]

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



docs commit: Making language-generating script error out when it sees a language whose name it doesn't know.

2015-12-09 Thread dblotsky
Repository: cordova-docs
Updated Branches:
  refs/heads/master ce2879aab -> de535f6fa


Making language-generating script error out when it sees a language whose name 
it doesn't know.


Project: http://git-wip-us.apache.org/repos/asf/cordova-docs/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-docs/commit/de535f6f
Tree: http://git-wip-us.apache.org/repos/asf/cordova-docs/tree/de535f6f
Diff: http://git-wip-us.apache.org/repos/asf/cordova-docs/diff/de535f6f

Branch: refs/heads/master
Commit: de535f6faee6edd07a3c9aa35299d7ffafde2da7
Parents: ce2879a
Author: Dmitry Blotsky 
Authored: Wed Dec 9 21:37:45 2015 -0800
Committer: Dmitry Blotsky 
Committed: Wed Dec 9 21:37:45 2015 -0800

--
 tools/bin/gen_languages.js | 11 +++
 1 file changed, 11 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/de535f6f/tools/bin/gen_languages.js
--
diff --git a/tools/bin/gen_languages.js b/tools/bin/gen_languages.js
index 0ee27cf..0f60ccd 100755
--- a/tools/bin/gen_languages.js
+++ b/tools/bin/gen_languages.js
@@ -40,6 +40,7 @@ var LANGUAGE_MAP = {
 
 function main () {
 
+var scriptName = process.argv[1];
 var rootDir = process.argv[2];
 var config = {};
 
@@ -54,6 +55,16 @@ function main () {
 var langPath = path.join(rootDir, langId);
 var versionNames = util.listdirsSync(langPath);
 
+// get language ID
+var langName;
+if (langId in LANGUAGE_MAP) {
+langName = LANGUAGE_MAP[langId];
+} else {
+console.error("Language identifier '" + langId + "' doesn't have 
an associated name. Please fix that by changing " + scriptName + ".");
+process.exit(1);
+}
+
+// set the language name and the versions it has
 config[langId] = {
 'name': LANGUAGE_MAP[langId],
 'versions': versionNames


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



svn commit: r1718721 [4/4] - in /cordova/site/public: ./ announcements/2015/12/ announcements/2015/12/08/ blog/ news/2015/11/24/ news/2015/12/ news/2015/12/08/ static/js/

2015-12-08 Thread dblotsky
Modified: cordova/site/public/static/js/index.js
URL: 
http://svn.apache.org/viewvc/cordova/site/public/static/js/index.js?rev=1718721=1718720=1718721=diff
==
--- cordova/site/public/static/js/index.js (original)
+++ cordova/site/public/static/js/index.js Tue Dec  8 22:01:34 2015
@@ -77,6 +77,8 @@ function checkNotification() {
 var dates = [];
 if (lastVisit != "") {
 
+dates.push('Tue, 08 Dec 2015 00:00:00 -0800');
+dates.push('Tue, 08 Dec 2015 00:00:00 -0800');
 dates.push('Tue, 24 Nov 2015 00:00:00 -0800');
 dates.push('Tue, 24 Nov 2015 00:00:00 -0800');
 dates.push('Fri, 20 Nov 2015 00:00:00 -0800');



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



svn commit: r1718721 [1/4] - in /cordova/site/public: ./ announcements/2015/12/ announcements/2015/12/08/ blog/ news/2015/11/24/ news/2015/12/ news/2015/12/08/ static/js/

2015-12-08 Thread dblotsky
Author: dblotsky
Date: Tue Dec  8 22:01:34 2015
New Revision: 1718721

URL: http://svn.apache.org/viewvc?rev=1718721=rev
Log:
Updating site.

Added:
cordova/site/public/announcements/2015/12/
cordova/site/public/announcements/2015/12/08/
cordova/site/public/announcements/2015/12/08/cordova-ios-4.0.0.html
cordova/site/public/news/2015/12/
cordova/site/public/news/2015/12/08/
cordova/site/public/news/2015/12/08/wkwebview-engine-plugin-release.html
Modified:
cordova/site/public/blog/index.html
cordova/site/public/feed.xml
cordova/site/public/news/2015/11/24/tools-release.html
cordova/site/public/sitemap.xml
cordova/site/public/static/js/index.js

Added: cordova/site/public/announcements/2015/12/08/cordova-ios-4.0.0.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/announcements/2015/12/08/cordova-ios-4.0.0.html?rev=1718721=auto
==
--- cordova/site/public/announcements/2015/12/08/cordova-ios-4.0.0.html (added)
+++ cordova/site/public/announcements/2015/12/08/cordova-ios-4.0.0.html Tue Dec 
 8 22:01:34 2015
@@ -0,0 +1,418 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+Cordova iOS 4.0.0 - Apache Cordova
+
+
+
+
+
+https://cordova.apache.org/announcements/2015/12/08/cordova-ios-4.0.0.html;>
+
+
+
+
+
+
+
+
+
+
+
+var disqus_developer = 1; // this would set it to developer mode
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Toggle navigation
+
+
+
+
+
+
+
+
+
+
+
+Documentation
+
+
+Plugins
+
+
+Blog
+
+
+Contribute
+
+
+Get Started
+
+
+
+
+
+
+
+
+
+
+
+
+Blog
+
+RSS Feed
+
+
+
+
+
+Cordova iOS 4.0.0
+By:
+
+  https://twitter.com/shazron;>Shazron Abdullah
+
+
+08 Dec 2015
+
+
+
+We are happy to announce that Cordova 
iOS 4.0.0 has been released.
+
+This is a major release, and https://github.com/apache/cordova-ios/blob/master/guides/API%20changes%20in%204.0.md;>deprecated
 APIs have been removed. Some 3rd party plugins might require updates 
before they are compatible. This release adds first-class support for pluggable 
webviews - namely we now support https://developer.apple.com/library/ios/documentation/WebKit/Reference/WKWebView_Ref/;>WKWebView
 -- a bundled modern WebView for iOS! 
+
+The platform now supports Asset Catalogs for splashscreens and icons -- 
this is all transparent to you when using the splash and icon tags in http://cordova.apache.org/docs/en/latest/config_ref/images.html;>config.xml.
 
+
+https://www.npmjs.com/package/ios-sim;>ios-sim is bundled with 
the platform now, you will not need to install this separately anymore. However 
for https://www.npmjs.com/package/ios-deploy;>ios-deploy you will 
need to update your version to the latest.
+
+The minimum deployment target has been updated to iOS 8.0. 
This means that this platform release has only been tested on iOS 8 devices and 
greater only and will only support those iOS versions.
+
+cordova-ios@4.0.0 will be the default iOS 
version in the next version of cordova. If you 
just cant wait though, you can try it out now:
+cd 
my_project
+cordova platform update ios@4.0.0
+# To install the WKWebView engine (optional):
+cordova plugin add cordova-plugin-wkwebview-engine
+
+We are in the process of releasing the cordova-plugin-wkwebview-engine plugin to https://www.npmjs.com/;>npm. If you decide to update to cordova-ios@4.0.0 before we release this plugin, 
please install the plugin via git for now.
+cordova plugin add 
https://github.com/apache/cordova-plugin-wkwebview-engine.git#1.0.0
+
+Note that the cordova-plugin-wkwebview-engine plugin has some 
limitations versus the default UIWebView, please consult the https://github.com/apache/cordova-plugin-wkwebview-engine/blob/master/README.md;>README
 for more details.
+
+In addition to the access tag, 
there is support for the new allow-intent and allow-navigation tags, documented https://github.com/apache/cordova-plugin-whitelist/blob/master/README.md;>here.
 Note that you do not need cordova-plugin-whitelist installed for cordova-ios-4.0.0.
+
+cordova will convert access and allow-navigation tags to the appropriate https://developer.apple.com/li

svn commit: r1718721 [3/4] - in /cordova/site/public: ./ announcements/2015/12/ announcements/2015/12/08/ blog/ news/2015/11/24/ news/2015/12/ news/2015/12/08/ static/js/

2015-12-08 Thread dblotsky
Modified: cordova/site/public/sitemap.xml
URL: 
http://svn.apache.org/viewvc/cordova/site/public/sitemap.xml?rev=1718721=1718720=1718721=diff
==
--- cordova/site/public/sitemap.xml (original)
+++ cordova/site/public/sitemap.xml Tue Dec  8 22:01:34 2015
@@ -307,6 +307,14 @@
 2015-12-04T02:57:31-08:00
 
 
+
https://cordova.apache.org/announcements/2015/12/08/cordova-ios-4.0.0.html
+2015-12-08T12:33:01-08:00
+
+
+
https://cordova.apache.org/news/2015/12/08/wkwebview-engine-plugin-release.html
+2015-12-08T12:33:01-08:00
+
+
 https://cordova.apache.org/.htaccess
 2015-11-23T15:30:29-08:00
 
@@ -319,7 +327,7 @@
 
 
https://cordova.apache.org/docs/en/2.6.0/cordova/camera/parameter/CameraPopoverHandle.html
 
-2015-11-23T15:30:29-08:00
+2015-12-08T04:23:05-08:00
 monthly
 0.4
 
@@ -327,7 +335,7 @@
 
 
https://cordova.apache.org/docs/de/3.1.0/cordova/camera/parameter/CameraPopoverHandle.html
 
-2015-11-23T15:30:29-08:00
+2015-12-08T04:23:05-08:00
 monthly
 0.4
 
@@ -335,7 +343,7 @@
 
 
https://cordova.apache.org/docs/en/2.8.0/cordova/camera/parameter/CameraPopoverHandle.html
 
-2015-11-23T15:30:29-08:00
+2015-12-08T04:23:05-08:00
 monthly
 0.4
 
@@ -343,7 +351,7 @@
 
 
https://cordova.apache.org/docs/en/2.7.0/cordova/camera/parameter/CameraPopoverHandle.html
 
-2015-11-23T15:30:29-08:00
+2015-12-08T04:23:05-08:00
 monthly
 0.4
 
@@ -351,7 +359,7 @@
 
 
https://cordova.apache.org/docs/en/2.9.0/cordova/camera/parameter/CameraPopoverHandle.html
 
-2015-11-23T15:30:29-08:00
+2015-12-08T04:23:05-08:00
 monthly
 0.4
 
@@ -359,7 +367,7 @@
 
 
https://cordova.apache.org/docs/en/3.1.0/cordova/camera/parameter/CameraPopoverHandle.html
 
-2015-11-23T15:30:29-08:00
+2015-12-08T04:23:05-08:00
 monthly
 0.4
 
@@ -367,7 +375,7 @@
 
 
https://cordova.apache.org/docs/en/3.0.0/cordova/camera/parameter/CameraPopoverHandle.html
 
-2015-11-23T15:30:29-08:00
+2015-12-08T04:23:05-08:00
 monthly
 0.4
 
@@ -375,7 +383,7 @@
 
 
https://cordova.apache.org/docs/en/3.3.0/cordova/camera/parameter/CameraPopoverHandle.html
 
-2015-11-23T15:30:29-08:00
+2015-12-08T04:23:05-08:00
 monthly
 0.4
 
@@ -383,7 +391,7 @@
 
 
https://cordova.apache.org/docs/es/3.1.0/cordova/camera/parameter/CameraPopoverHandle.html
 
-2015-11-23T15:30:29-08:00
+2015-12-08T04:23:05-08:00
 monthly
 0.4
 
@@ -391,7 +399,7 @@
 
 
https://cordova.apache.org/docs/fr/3.1.0/cordova/camera/parameter/CameraPopoverHandle.html
 
-2015-11-23T15:30:29-08:00
+2015-12-08T04:23:05-08:00
 monthly
 0.4
 
@@ -399,7 +407,7 @@
 
 
https://cordova.apache.org/docs/it/3.1.0/cordova/camera/parameter/CameraPopoverHandle.html
 
-2015-11-23T15:30:29-08:00
+2015-12-08T04:23:05-08:00
 monthly
 0.4
 
@@ -407,7 +415,7 @@
 
 
https://cordova.apache.org/docs/ja/3.1.0/cordova/camera/parameter/CameraPopoverHandle.html
 
-2015-11-23T15:30:29-08:00
+2015-12-08T04:23:05-08:00
 monthly
 0.4
 
@@ -415,7 +423,7 @@
 
 
https://cordova.apache.org/docs/ko/3.1.0/cordova/camera/parameter/CameraPopoverHandle.html
 
-2015-11-23T15:30:29-08:00
+2015-12-08T04:23:05-08:00
 monthly
 0.4
 
@@ -423,7 +431,7 @@
 
 
https://cordova.apache.org/docs/ru/3.1.0/cordova/camera/parameter/CameraPopoverHandle.html
 
-2015-11-23T15:30:29-08:00
+2015-12-08T04:23:05-08:00
 monthly
 0.4
 
@@ -431,7 +439,7 @@
 
 
https://cordova.apache.org/docs/zh/3.1.0/cordova/camera/parameter/CameraPopoverHandle.html
 
-2015-11-23T15:30:29-08:00
+2015-12-08T04:23:05-08:00
 monthly
 0.4
 
@@ -439,7 +447,7 @@
 
 
https://cordova.apache.org/docs/en/3.2.0/cordova/camera/parameter/CameraPopoverHandle.html
 
-2015-11-23T15:30:29-08:00
+2015-12-08T04:23:05-08:00
 monthly
 0.4
 
@@ -447,7 +455,7 @@
 
 
https://cordova.apache.org/docs/ko/2.0.0/cordova/camera/parameter/CameraPopoverOptions.html
 
-2015-11-23T15:30:29-08:00
+2015-12-08T04:23:05-08:00
 

svn commit: r1718721 [2/4] - in /cordova/site/public: ./ announcements/2015/12/ announcements/2015/12/08/ blog/ news/2015/11/24/ news/2015/12/ news/2015/12/08/ static/js/

2015-12-08 Thread dblotsky
Added: cordova/site/public/news/2015/12/08/wkwebview-engine-plugin-release.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/news/2015/12/08/wkwebview-engine-plugin-release.html?rev=1718721=auto
==
--- cordova/site/public/news/2015/12/08/wkwebview-engine-plugin-release.html 
(added)
+++ cordova/site/public/news/2015/12/08/wkwebview-engine-plugin-release.html 
Tue Dec  8 22:01:34 2015
@@ -0,0 +1,267 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+Plugins Release - Apache Cordova
+
+
+
+
+
+https://cordova.apache.org/news/2015/12/08/wkwebview-engine-plugin-release.html;>
+
+
+
+
+
+
+
+
+
+
+
+var disqus_developer = 1; // this would set it to developer mode
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Toggle navigation
+
+
+
+
+
+
+
+
+
+
+
+Documentation
+
+
+Plugins
+
+
+Blog
+
+
+Contribute
+
+
+Get Started
+
+
+
+
+
+
+
+
+
+
+
+
+Blog
+
+RSS Feed
+
+
+
+
+
+Plugins Release
+By:
+
+  https://twitter.com/shazron;>Shazron Abdullah
+
+
+08 Dec 2015
+
+
+
+The following plugins were updated today:
+
+
+cordova-plugin-wkwebview-engine@1.0.0
+
+
+This is the initial release of this plugin. This plugin requires cordova-ios@4.0.0. Please read the http://cordova.apache.org/announcements/2015/12/08/cordova-ios-4.0.0.html;>iOS
 4.0.0 release blog for instructions to update. 
+
+To install:
+cordova plugin add cordova-plugin-wkwebview-engine --save
+
+If you are thinking of migrating from using the UIWebView on iOS, please 
read the https://github.com/apache/cordova-plugin-wkwebview-engine/blob/master/README.md;>README
 and also take note of the https://issues.apache.org/jira/issues/?jql=project%20%3D%20CB%20AND%20labels%20%3D%20wkwebview-known-issues;>limitations
 of this plugin.
+
+Changes include:
+
+
+
+cordova-plugin-wkwebview-engine@1.0.0
+
+
+https://issues.apache.org/jira/browse/CB-10146;>CB-10146 - 
Add to README WKWebViewEngine quirks that will affect migration from 
UIWebView
+https://issues.apache.org/jira/browse/CB-10133;>CB-10133 - 
DataClone DOM Exception 25 thrown for postMessage
+https://issues.apache.org/jira/browse/CB-10106;>CB-10106 - 
added bridge proxy
+https://issues.apache.org/jira/browse/CB-10107;>CB-10107 - 
nativeEvalAndFetch called for all bridges
+https://issues.apache.org/jira/browse/CB-10106;>CB-10106 - 
iOS bridges need to take into account bridge changes
+https://issues.apache.org/jira/browse/CB-10073;>CB-10073 - 
WKWebViewEngine should post CDVPluginResetNotification
+https://issues.apache.org/jira/browse/CB-10035;>CB-10035 
Updated RELEASENOTES to be newest to oldest
+https://issues.apache.org/jira/browse/CB-10002;>CB-10002 - 
WKWebView should propagate shouldOverrideLoadWithRequest to plugins
+https://issues.apache.org/jira/browse/CB-9979;>CB-9979 https://issues.apache.org/jira/browse/CB-9972;>CB-9972 Change ATS 
link to new link
+https://issues.apache.org/jira/browse/CB-9636;>CB-9636 - 
Plugin should detect at runtime iOS 8 and use of file:// url and present an 
error
+https://issues.apache.org/jira/browse/CB-8839;>CB-8839 - 
WKWebView ignores DisallowOverscroll preference
+https://issues.apache.org/jira/browse/CB-8556;>CB-8556 - fix 
handleOpenURL for WKWebViewEngine plugin
+https://issues.apache.org/jira/browse/CB-8666;>CB-8666 - 
Update CDVWKWebViewEngine plugin to use 4.0.x branch code
+
+
+
+
+
+
+
+
+Previous
+
+
+Cordova iOS 4.0.0
+ 08 Dec 2015 - By Shazron Abdullah 
+
+We are happy to announce that Cordova iOS 4.0.0 has 
been released
+
+
+
+
+
+
+
+
+
+
+
+/* * * CONFIGURATION VARIABLES * * */
+var disqus_shortname = 'cordovablogs';
+
+/* * * DON'T EDIT BELOW THIS LINE * * */
+(function() {
+var dsq = document.createElement('script'); dsq.type = 
'text/javascript'; dsq.async = true;
+dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
+

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

2015-12-07 Thread dblotsky
Added: cordova/site/public/docs/en/dev/guide/platforms/android/lifecycle.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/guide/platforms/android/lifecycle.html?rev=1718507=auto
==
--- cordova/site/public/docs/en/dev/guide/platforms/android/lifecycle.html 
(added)
+++ cordova/site/public/docs/en/dev/guide/platforms/android/lifecycle.html Tue 
Dec  8 04:08:48 2015
@@ -0,0 +1,1805 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+Android Lifecycle Guide - Apache Cordova
+
+
+
+
+
+https://cordova.apache.org/docs/en/dev/guide/platforms/android/lifecycle.html;>
+
+
+
+
+
+
+
+
+
+
+
+var disqus_developer = 1; // this would set it to developer mode
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Toggle navigation
+
+
+
+
+
+
+
+
+
+
+
+Documentation
+
+
+Plugins
+
+
+Blog
+
+
+Contribute
+
+
+Get Started
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Table of Contents
+
+
+
+
+Guides
+
+
+
+
+
+
+Overview
+
+
+
+
+
+
+Platform Support
+
+
+
+
+
+
+The Command-Line Interface
+
+
+
+
+
+
+Platform Guides
+
+
+
+
+
+
+Using Plugman to Manage Plugins
+
+
+
+
+
+
+The config.xml File
+
+
+
+
+
+
+Icons and Splash Screens
+
+
+
+
+
+
+Embedding WebViews
+
+
+
+
+
+
+Plugin Development Guide
+
+
+
+
+
+
+Plugin Specification
+
+
+
+
+
+
+Privacy Guide
+
+
+
+
+
+
+Security Guide
+
+
+
+
+
+
+Platforms and Plugins Version Management
+
+
+
+
+
+
+Whitelist Guide
+
+
+
+
+
+
+Storage
+
+
+
+
+
+
+Hooks Guide
+
+
+
+
+
+
+Next Steps
+
+
+
+
+
+
+Events
+
+
+
+
+
+
+Plugin APIs
+
+
+
+
+
+
+Keyword Index
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Table of Contents
+
+
+
+
+
+
+
+Guides
+
+
+
+
+
+

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

2015-12-07 Thread dblotsky
Modified: cordova/site/public/sitemap.xml
URL: 
http://svn.apache.org/viewvc/cordova/site/public/sitemap.xml?rev=1718507=1718506=1718507=diff
==
--- cordova/site/public/sitemap.xml (original)
+++ cordova/site/public/sitemap.xml Tue Dec  8 04:08:48 2015
@@ -2,309 +2,309 @@
 
 
 
https://cordova.apache.org/blog/2013/07/11/cordova-has-a-blog.html
-2015-11-23T15:30:29-08:00
+2015-12-04T02:57:31-08:00
 
 
 
https://cordova.apache.org/blog/releases/2013/07/23/cordova-3.html
-2015-11-23T15:30:29-08:00
+2015-12-04T02:57:31-08:00
 
 
 
https://cordova.apache.org/blog/2013/08/12/crowdintranslation.html
-2015-11-23T15:30:29-08:00
+2015-12-04T02:57:31-08:00
 
 
 https://cordova.apache.org/news/2013/09/06/last-week.html
-2015-11-23T15:30:29-08:00
+2015-12-04T02:57:31-08:00
 
 
 https://cordova.apache.org/news/2013/09/13/last-week.html
-2015-11-23T15:30:29-08:00
+2015-12-04T02:57:31-08:00
 
 
 
https://cordova.apache.org/news/2013/10/01/plugins-release.html
-2015-11-23T15:30:29-08:00
+2015-12-04T02:57:31-08:00
 
 
 
https://cordova.apache.org/blog/releases/2013/10/02/cordova-31.html
-2015-11-23T15:30:29-08:00
+2015-12-04T02:57:31-08:00
 
 
 
https://cordova.apache.org/news/2013/10/10/plugins-release.html
-2015-11-23T15:30:29-08:00
+2015-12-04T02:57:31-08:00
 
 
 
https://cordova.apache.org/news/2013/10/21/cordova-registry.html
-2015-11-23T15:30:29-08:00
+2015-12-04T02:57:31-08:00
 
 
 
https://cordova.apache.org/news/2013/10/28/plugins-release.html
-2015-11-23T15:30:29-08:00
+2015-12-04T02:57:31-08:00
 
 
 
https://cordova.apache.org/blog/releases/2013/11/06/cordova-291.html
-2015-11-23T15:30:29-08:00
+2015-12-04T02:57:31-08:00
 
 
 
 
https://cordova.apache.org/announcements/releases/2013/11/13/cordova-320rc1.html
 
-2015-11-23T15:30:29-08:00
+2015-12-04T02:57:31-08:00
 
 
 
https://cordova.apache.org/announcements/2013/11/15/kitkat.html
-2015-11-23T15:30:29-08:00
+2015-12-04T02:57:31-08:00
 
 
 
https://cordova.apache.org/announcements/2013/11/22/cordova-320.html
-2015-11-23T15:30:29-08:00
+2015-12-04T02:57:31-08:00
 
 
 
https://cordova.apache.org/news/2013/12/04/plugins-release.html
-2015-11-23T15:30:29-08:00
+2015-12-04T02:57:31-08:00
 
 
 
 
https://cordova.apache.org/announcements/releases/2013/12/06/cordova-330rc1.html
 
-2015-11-23T15:30:29-08:00
+2015-12-04T02:57:31-08:00
 
 
 
https://cordova.apache.org/announcements/2013/12/16/cordova-330.html
-2015-11-23T15:30:29-08:00
+2015-12-04T02:57:31-08:00
 
 
 
https://cordova.apache.org/news/2014/01/02/plugins-release.html
-2015-11-23T15:30:29-08:00
+2015-12-04T02:57:31-08:00
 
 
 
https://cordova.apache.org/news/2014/01/31/tools-release.html
-2015-11-23T15:30:29-08:00
+2015-12-04T02:57:31-08:00
 
 
 
https://cordova.apache.org/news/2014/02/10/plugins-release.html
-2015-11-23T15:30:29-08:00
+2015-12-04T02:57:31-08:00
 
 
 
https://cordova.apache.org/announcements/2014/02/20/cordova-340.html
-2015-11-23T15:30:29-08:00
+2015-12-04T02:57:31-08:00
 
 
 
https://cordova.apache.org/news/2014/03/03/plugins-release.html
-2015-11-23T15:30:29-08:00
+2015-12-04T02:57:31-08:00
 
 
 
https://cordova.apache.org/news/2014/03/05/tools-release.html
-2015-11-23T15:30:29-08:00
+2015-12-04T02:57:31-08:00
 
 
 
https://cordova.apache.org/news/2014/04/09/tools-ios-release.html
-2015-11-23T15:30:29-08:00
+2015-12-04T02:57:31-08:00
 
 
 
https://cordova.apache.org/news/2014/04/23/plugins.release.html
-2015-11-23T15:30:29-08:00
+2015-12-04T02:57:31-08:00
 
 
 
https://cordova.apache.org/announcements/2014/05/23/cordova-350.html
-2015-11-23T15:30:29-08:00
+2015-12-04T02:57:31-08:00
 
 
 
https://cordova.apache.org/news/2014/06/12/plugins-release.html
-2015-11-23T15:30:29-08:00
+2015-12-04T02:57:31-08:00
 
 
 
https://cordova.apache.org/news/2014/07/08/plugins-release.html
-2015-11-23T15:30:29-08:00
+2015-12-04T02:57:31-08:00
 
 
 
https://cordova.apache.org/news/2014/07/10/tools-release.html
-2015-11-23T15:30:29-08:00
+2015-12-04T02:57:31-08:00
 
 
 

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

2015-12-07 Thread dblotsky
Modified: cordova/site/public/news/2014/04/23/plugins.release.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/news/2014/04/23/plugins.release.html?rev=1718507=1718506=1718507=diff
==
--- cordova/site/public/news/2014/04/23/plugins.release.html (original)
+++ cordova/site/public/news/2014/04/23/plugins.release.html Tue Dec  8 
04:08:48 2015
@@ -83,7 +83,7 @@
 
 
 
-
+
 
 
 Blog

Modified: cordova/site/public/news/2014/06/12/plugins-release.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/news/2014/06/12/plugins-release.html?rev=1718507=1718506=1718507=diff
==
--- cordova/site/public/news/2014/06/12/plugins-release.html (original)
+++ cordova/site/public/news/2014/06/12/plugins-release.html Tue Dec  8 
04:08:48 2015
@@ -83,7 +83,7 @@
 
 
 
-
+
 
 
 Blog

Modified: cordova/site/public/news/2014/07/08/plugins-release.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/news/2014/07/08/plugins-release.html?rev=1718507=1718506=1718507=diff
==
--- cordova/site/public/news/2014/07/08/plugins-release.html (original)
+++ cordova/site/public/news/2014/07/08/plugins-release.html Tue Dec  8 
04:08:48 2015
@@ -83,7 +83,7 @@
 
 
 
-
+
 
 
 Blog

Modified: cordova/site/public/news/2014/07/10/tools-release.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/news/2014/07/10/tools-release.html?rev=1718507=1718506=1718507=diff
==
--- cordova/site/public/news/2014/07/10/tools-release.html (original)
+++ cordova/site/public/news/2014/07/10/tools-release.html Tue Dec  8 04:08:48 
2015
@@ -83,7 +83,7 @@
 
 
 
-
+
 
 
 Blog

Modified: cordova/site/public/news/2014/08/11/plugins-release.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/news/2014/08/11/plugins-release.html?rev=1718507=1718506=1718507=diff
==
--- cordova/site/public/news/2014/08/11/plugins-release.html (original)
+++ cordova/site/public/news/2014/08/11/plugins-release.html Tue Dec  8 
04:08:48 2015
@@ -83,7 +83,7 @@
 
 
 
-
+
 
 
 Blog

Modified: cordova/site/public/news/2014/08/13/tools-update.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/news/2014/08/13/tools-update.html?rev=1718507=1718506=1718507=diff
==
--- cordova/site/public/news/2014/08/13/tools-update.html (original)
+++ cordova/site/public/news/2014/08/13/tools-update.html Tue Dec  8 04:08:48 
2015
@@ -83,7 +83,7 @@
 
 
 
-
+
 
 
 Blog

Modified: cordova/site/public/news/2014/09/22/plugins-release.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/news/2014/09/22/plugins-release.html?rev=1718507=1718506=1718507=diff
==
--- cordova/site/public/news/2014/09/22/plugins-release.html (original)
+++ cordova/site/public/news/2014/09/22/plugins-release.html Tue Dec  8 
04:08:48 2015
@@ -83,7 +83,7 @@
 
 
 
-
+
 
 
 Blog

Modified: cordova/site/public/news/2014/10/17/plugins-release.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/news/2014/10/17/plugins-release.html?rev=1718507=1718506=1718507=diff
==
--- cordova/site/public/news/2014/10/17/plugins-release.html (original)
+++ cordova/site/public/news/2014/10/17/plugins-release.html Tue Dec  8 
04:08:48 2015
@@ -83,7 +83,7 @@
 
 
 
-
+
 
 
 Blog

Modified: cordova/site/public/news/2014/11/11/windows-cert.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/news/2014/11/11/windows-cert.html?rev=1718507=1718506=1718507=diff
==
--- cordova/site/public/news/2014/11/11/windows-cert.html (original)
+++ cordova/site/public/news/2014/11/11/windows-cert.html Tue Dec  8 04:08:48 
2015
@@ -83,7 +83,7 @@
 
 
 
-
+
 
 
 Blog

Modified: cordova/site/public/news/2014/11/13/tools-release.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/news/2014/11/13/tools-release.html?rev=1718507=1718506=1718507=diff
==
--- cordova/site/public/news/2014/11/13/tools-release.html (original)
+++ cordova/site/public/news/2014/11/13/tools-release.html Tue Dec  8 04:08:48 
2015
@@ -83,7 +83,7 @@
 
 
 
-
+
 
 
 Blog

Modified: cordova/site/public/news/2014/12/09/plugins-release.html
URL: 

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

2015-12-07 Thread dblotsky
Author: dblotsky
Date: Tue Dec  8 04:08:48 2015
New Revision: 1718507

URL: http://svn.apache.org/viewvc?rev=1718507=rev
Log:
Updating site.

Added:
cordova/site/public/docs/en/dev/guide/platforms/android/lifecycle.html
Modified:
cordova/site/public/announcements/2013/11/15/kitkat.html
cordova/site/public/announcements/2013/11/22/cordova-320.html
cordova/site/public/announcements/2013/12/16/cordova-330.html
cordova/site/public/announcements/2014/02/20/cordova-340.html
cordova/site/public/announcements/2014/05/23/cordova-350.html
cordova/site/public/announcements/2014/08/04/android-351.html
cordova/site/public/announcements/2014/08/06/android-351-update.html
cordova/site/public/announcements/2014/09/08/cordova-361.html
cordova/site/public/announcements/2014/10/16/cordova-4.html
cordova/site/public/announcements/2014/11/06/cordova-ios-3.7.0.html
cordova/site/public/announcements/2014/11/06/cordova-wp-windows-3.7.0.html
cordova/site/public/announcements/2014/11/25/ios-64bit.html
cordova/site/public/announcements/2015/02/06/cordova-android-3.7.1.html
cordova/site/public/announcements/2015/02/25/cordova-ios-3.8.0.html
cordova/site/public/announcements/2015/02/27/cordova-windows-3.8.0.html
cordova/site/public/announcements/2015/04/15/cordova-android-4.0.0.html

cordova/site/public/announcements/2015/04/21/plugins-release-and-move-to-npm.html
cordova/site/public/announcements/2015/05/26/android-402.html
cordova/site/public/announcements/2015/06/03/windows-release.html
cordova/site/public/announcements/2015/07/21/cordova-android-4.1.0.html
cordova/site/public/announcements/2015/08/04/cordova-ios-3.9.0.html
cordova/site/public/announcements/2015/08/18/cordova-windows-4.1.0.html
cordova/site/public/announcements/2015/09/05/cordova-blackberry-3.8.0.html
cordova/site/public/announcements/2015/11/02/cordova-ios-3.9.2.html
cordova/site/public/announcements/2015/11/09/cordova-android-5.0.0.html
cordova/site/public/announcements/2015/11/11/cordova-windows-4.2.0.html
cordova/site/public/announcements/2015/11/20/security.html
cordova/site/public/announcements/releases/2013/11/13/cordova-320rc1.html
cordova/site/public/announcements/releases/2013/12/06/cordova-330rc1.html
cordova/site/public/blog/2013/07/11/cordova-has-a-blog.html
cordova/site/public/blog/2013/08/12/crowdintranslation.html
cordova/site/public/blog/2014/11/18/cordova-perf.html
cordova/site/public/blog/index.html
cordova/site/public/blog/releases/2013/07/23/cordova-3.html
cordova/site/public/blog/releases/2013/10/02/cordova-31.html
cordova/site/public/blog/releases/2013/11/06/cordova-291.html
cordova/site/public/contact/index.html
cordova/site/public/contribute/contribute_guidelines.html
cordova/site/public/contribute/index.html
cordova/site/public/contribute/issues.html
cordova/site/public/docs/en/dev/guide/cli/index.html
cordova/site/public/docs/en/dev/guide/platforms/android/plugin.html
cordova/site/public/docs/en/dev/guide/platforms/index.html
cordova/site/public/docs/en/dev/page_index.html
cordova/site/public/feed.xml
cordova/site/public/news/2013/09/06/last-week.html
cordova/site/public/news/2013/09/13/last-week.html
cordova/site/public/news/2013/10/01/plugins-release.html
cordova/site/public/news/2013/10/10/plugins-release.html
cordova/site/public/news/2013/10/21/cordova-registry.html
cordova/site/public/news/2013/10/28/plugins-release.html
cordova/site/public/news/2013/12/04/plugins-release.html
cordova/site/public/news/2014/01/02/plugins-release.html
cordova/site/public/news/2014/01/31/tools-release.html
cordova/site/public/news/2014/02/10/plugins-release.html
cordova/site/public/news/2014/03/03/plugins-release.html
cordova/site/public/news/2014/03/05/tools-release.html
cordova/site/public/news/2014/04/09/tools-ios-release.html
cordova/site/public/news/2014/04/23/plugins.release.html
cordova/site/public/news/2014/06/12/plugins-release.html
cordova/site/public/news/2014/07/08/plugins-release.html
cordova/site/public/news/2014/07/10/tools-release.html
cordova/site/public/news/2014/08/11/plugins-release.html
cordova/site/public/news/2014/08/13/tools-update.html
cordova/site/public/news/2014/09/22/plugins-release.html
cordova/site/public/news/2014/10/17/plugins-release.html
cordova/site/public/news/2014/11/11/windows-cert.html
cordova/site/public/news/2014/11/13/tools-release.html
cordova/site/public/news/2014/12/09/plugins-release.html
cordova/site/public/news/2015/01/09/tools-release.html
cordova/site/public/news/2015/02/10/plugins-release.html
cordova/site/public/news/2015/03/02/tools-release.html
cordova/site/public/news/2015/04/21/tools-release.html
cordova/site/public/news/2015/06/04/tools-release.html
cordova/site/public/news/2015/06/10/tools

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

2015-12-07 Thread dblotsky
Modified: cordova/site/public/static/css/main.css
URL: 
http://svn.apache.org/viewvc/cordova/site/public/static/css/main.css?rev=1718507=1718506=1718507=diff
==
--- cordova/site/public/static/css/main.css (original)
+++ cordova/site/public/static/css/main.css Tue Dec  8 04:08:48 2015
@@ -6668,6 +6668,9 @@ footer ul.nav li > a:hover {
 footer .copyright_text {
   margin-top: 25px; }
 
+.page {
+  margin-bottom: 2em; }
+
 /*
  * position anchors of fragment links slightly above their targets
  */



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



docs commit: Adding spacing at the bottom of regular pages.

2015-12-04 Thread dblotsky
Repository: cordova-docs
Updated Branches:
  refs/heads/master fcc72231a -> c975cd27a


Adding spacing at the bottom of regular pages.


Project: http://git-wip-us.apache.org/repos/asf/cordova-docs/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-docs/commit/c975cd27
Tree: http://git-wip-us.apache.org/repos/asf/cordova-docs/tree/c975cd27
Diff: http://git-wip-us.apache.org/repos/asf/cordova-docs/diff/c975cd27

Branch: refs/heads/master
Commit: c975cd27a89cec28be210e932b1267257c6125c5
Parents: fcc7223
Author: Dmitry Blotsky 
Authored: Fri Dec 4 03:21:50 2015 -0800
Committer: Dmitry Blotsky 
Committed: Fri Dec 4 03:21:50 2015 -0800

--
 www/_layouts/page.html   | 2 +-
 www/static/css-src/main.scss | 4 
 2 files changed, 5 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c975cd27/www/_layouts/page.html
--
diff --git a/www/_layouts/page.html b/www/_layouts/page.html
index b4cecb3..932f88a 100644
--- a/www/_layouts/page.html
+++ b/www/_layouts/page.html
@@ -2,6 +2,6 @@
 layout: cordova
 ---
 
-
+
 {{ content }}
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c975cd27/www/static/css-src/main.scss
--
diff --git a/www/static/css-src/main.scss b/www/static/css-src/main.scss
index 7367a8a..1c948fa 100644
--- a/www/static/css-src/main.scss
+++ b/www/static/css-src/main.scss
@@ -80,6 +80,10 @@ footer .copyright_text {
 margin-top: 25px;
 }
 
+.page {
+margin-bottom: 2em;
+}
+
 /*
  * position anchors of fragment links slightly above their targets
  */


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



cordova-medic git commit: Fixing linter errors. Adding check to medic-run that aborts the run if the results server is down.

2015-12-03 Thread dblotsky
Repository: cordova-medic
Updated Branches:
  refs/heads/master 5fd1c869e -> 09fa69981


Fixing linter errors. Adding check to medic-run that aborts the run if the 
results server is down.


Project: http://git-wip-us.apache.org/repos/asf/cordova-medic/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-medic/commit/09fa6998
Tree: http://git-wip-us.apache.org/repos/asf/cordova-medic/tree/09fa6998
Diff: http://git-wip-us.apache.org/repos/asf/cordova-medic/diff/09fa6998

Branch: refs/heads/master
Commit: 09fa6998172fd4a8f33a050f6637e0c2ba0a88dd
Parents: 5fd1c86
Author: Dmitry Blotsky 
Authored: Thu Dec 3 15:11:26 2015 -0800
Committer: Dmitry Blotsky 
Committed: Thu Dec 3 15:11:26 2015 -0800

--
 lib/couchdb.js |  69 +
 lib/testwait.js|   5 +-
 lib/util.js|  15 +++--
 medic/medic-run.js | 155 ++--
 package.json   |   6 +-
 5 files changed, 146 insertions(+), 104 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/cordova-medic/blob/09fa6998/lib/couchdb.js
--
diff --git a/lib/couchdb.js b/lib/couchdb.js
index c151f0c..340c495 100644
--- a/lib/couchdb.js
+++ b/lib/couchdb.js
@@ -19,6 +19,8 @@
 
 /* jshint node: true */
 
+"use strict";
+
 var request = require('request');
 var follow = require('follow');
 
@@ -41,15 +43,14 @@ db.prototype = {
 get:function(id, callback) {
 // Gets a specific document by id
 
-var db = this;
 var url = this.db_url + '/' + id;
 request.get(url, function(error, response, body) {
 if (error) {
 callback(error);
 } else {
-if (response.statusCode == 200) {
+if (response.statusCode === 200) {
 callback(false, JSON.parse(body));
-} else if (response.statusCode == 404) {
+} else if (response.statusCode === 404) {
 callback(true, 404);
 } else {
 callback(true, response.statusCode);
@@ -60,15 +61,14 @@ db.prototype = {
 query_view:function(design, view, callback) {
 // Queries a view.
 
-var db = this;
 var url = this.db_url + '/_design/' + design + '/_view/' + view;
 request.get(url, function(error, response, body) {
 if (error) {
 callback(error);
 } else {
-if (response.statusCode == 200) {
+if (response.statusCode === 200) {
 callback(false, JSON.parse(body));
-} else if (response.statusCode == 404) {
+} else if (response.statusCode === 404) {
 callback(true, 404);
 } else {
 callback(true, response.statusCode);
@@ -78,7 +78,6 @@ db.prototype = {
 },
 clobber:function(id, document, callback) {
 // Overwrites a document
-var db = this;
 var url = this.db_url + '/' + id;
 
 request.put({
@@ -92,41 +91,54 @@ db.prototype = {
 }
 
 var status = response.statusCode;
-if (status == 201) callback(false, body);
-else if (status == 409) {
+if (status === 201) {
+callback(false, body);
+} else if (status === 409) {
 request.get(url, function(err, resp, bod) {
-if (err) callback(err);
-else {
-if (resp.statusCode == 200) {
+if (err) {
+callback(err);
+} else {
+if (resp.statusCode === 200) {
 var existing = JSON.parse(bod);
 var rev = existing._rev;
 request.del({
 url:url + '?rev=' + rev,
 }, function(er, res, boday) {
-if (er) callback(er);
-else {
-if (res.statusCode == 200) {
+if (er) {
+callback(er);
+}  else {
+if (res.statusCode === 200) {
 request.put({
 url:url,
 json:document
 }, function(argh, r, bodee) {
-if (argh) callback(argh);
-else {
-if(r){
-   

docs commit: Fixing a typo.

2015-12-03 Thread dblotsky
Repository: cordova-docs
Updated Branches:
  refs/heads/master 3faced5ab -> fcc72231a


Fixing a typo.


Project: http://git-wip-us.apache.org/repos/asf/cordova-docs/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-docs/commit/fcc72231
Tree: http://git-wip-us.apache.org/repos/asf/cordova-docs/tree/fcc72231
Diff: http://git-wip-us.apache.org/repos/asf/cordova-docs/diff/fcc72231

Branch: refs/heads/master
Commit: fcc72231a0674506f155159ee284d035e062c4d6
Parents: 3faced5
Author: Dmitry Blotsky 
Authored: Thu Dec 3 15:29:10 2015 -0800
Committer: Dmitry Blotsky 
Committed: Thu Dec 3 15:30:10 2015 -0800

--
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/fcc72231/README.md
--
diff --git a/README.md b/README.md
index 2b85f46..e0a038b 100644
--- a/README.md
+++ b/README.md
@@ -91,7 +91,7 @@ To work on the website and see changes live as you save, run:
 
 node_modules/.bin/gulp serve
 
-That command will build the sute and start a local server. To work on only the 
website without the docs, add the `--nodocs` flag, as follows:
+That command will build the site and start a local server. To work on only the 
website without the docs, add the `--nodocs` flag, as follows:
 
 node_modules/.bin/gulp serve --nodocs
 


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



cordova-plugin-file-transfer git commit: Adding linting and fixing linter warnings. Reducing timeouts to 7 seconds.

2015-12-02 Thread dblotsky
Repository: cordova-plugin-file-transfer
Updated Branches:
  refs/heads/master b11415da2 -> 0913325be


Adding linting and fixing linter warnings. Reducing timeouts to 7 seconds.


Project: 
http://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer/commit/0913325b
Tree: 
http://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer/tree/0913325b
Diff: 
http://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer/diff/0913325b

Branch: refs/heads/master
Commit: 0913325be598f1eeebebd4ad2cf2a911a561c939
Parents: b11415d
Author: Dmitry Blotsky 
Authored: Wed Dec 2 19:20:44 2015 -0800
Committer: Dmitry Blotsky 
Committed: Wed Dec 2 19:20:44 2015 -0800

--
 .gitignore |  10 +-
 .jscsrc|  24 +
 .jshintrc  |  91 +++
 package.json   |  11 ++-
 tests/tests.js | 256 ++--
 5 files changed, 256 insertions(+), 136 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer/blob/0913325b/.gitignore
--
diff --git a/.gitignore b/.gitignore
index 52b558e..ef71d04 100644
--- a/.gitignore
+++ b/.gitignore
@@ -12,12 +12,4 @@ Thumbs.db
 *.swp
 *.user
 
-
-
-
-
-
-
-
-
- 
\ No newline at end of file
+node_modules

http://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer/blob/0913325b/.jscsrc
--
diff --git a/.jscsrc b/.jscsrc
new file mode 100644
index 000..9c04214
--- /dev/null
+++ b/.jscsrc
@@ -0,0 +1,24 @@
+{
+"disallowMixedSpacesAndTabs": true,
+"disallowTrailingWhitespace": true,
+"validateLineBreaks": "CRLF",
+"validateIndentation": 4,
+"requireLineFeedAtFileEnd": true,
+
+"disallowSpaceAfterPrefixUnaryOperators": true,
+"disallowSpaceBeforePostfixUnaryOperators": true,
+"requireSpaceAfterLineComment": true,
+"requireCapitalizedConstructors": true,
+
+"disallowSpacesInNamedFunctionExpression": {
+"beforeOpeningRoundBrace": true
+},
+
+"requireSpaceAfterKeywords": [
+  "if",
+  "else",
+  "for",
+  "while",
+  "do"
+]
+}

http://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer/blob/0913325b/.jshintrc
--
diff --git a/.jshintrc b/.jshintrc
new file mode 100644
index 000..52ecff1
--- /dev/null
+++ b/.jshintrc
@@ -0,0 +1,91 @@
+{
+// Copied from http://jshint.com/docs/
+
+"maxerr": 50,   // {int} Maximum error before stopping
+
+// Enforcing
+"bitwise"   : true, // true: Prohibit bitwise operators (&, |, ^, 
etc.)
+"camelcase" : false,// true: Identifiers must be in camelCase
+"curly" : true, // true: Require {} for every new block or 
scope
+"eqeqeq": true, // true: Require triple equals (===) for 
comparison
+"forin" : true, // true: Require filtering for..in loops with 
obj.hasOwnProperty()
+"freeze": true, // true: prohibits overwriting prototypes of 
native objects such as Array, Date etc.
+"immed" : true, // true: Require immediate invocations to be 
wrapped in parens e.g. `(function () { } ());`
+"latedef"   : true, // true: Require variables/functions to be 
defined before being used
+"newcap": true, // true: Require capitalization of all 
constructor functions e.g. `new F()`
+"noarg" : true, // true: Prohibit use of `arguments.caller` 
and `arguments.callee`
+"noempty"   : true, // true: Prohibit use of empty blocks
+"nonbsp": true, // true: Prohibit "non-breaking whitespace" 
characters.
+"nonew" : true, // true: Prohibit use of constructors for 
side-effects (without assignment)
+"plusplus"  : true, // true: Prohibit use of `++` and `--`
+"quotmark"  : false,// Quotation mark consistency:
+//   false: do nothing (default)
+//   true : ensure whatever is used is 
consistent
+//   "single" : require single quotes
+//   "double" : require double quotes
+"undef" : true, // true: Require all non-global variables to 
be declared (prevents global leaks)
+"unused": "strict", // Unused variables:
+//   true : all variables, last function 
parameter
+//   "vars"   : all variables only
+//   "strict" : all variables, all function 

cordova-labs git commit: Updating README not to use sudo.

2015-11-25 Thread dblotsky
Repository: cordova-labs
Updated Branches:
  refs/heads/cordova-filetransfer 0876854a9 -> 46e45fd51


Updating README not to use sudo.


Project: http://git-wip-us.apache.org/repos/asf/cordova-labs/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-labs/commit/46e45fd5
Tree: http://git-wip-us.apache.org/repos/asf/cordova-labs/tree/46e45fd5
Diff: http://git-wip-us.apache.org/repos/asf/cordova-labs/diff/46e45fd5

Branch: refs/heads/cordova-filetransfer
Commit: 46e45fd513b59eb8c41b87bf54ec85a4cf5a2672
Parents: 0876854
Author: Dmitry Blotsky 
Authored: Wed Nov 25 10:38:24 2015 -0800
Committer: Dmitry Blotsky 
Committed: Wed Nov 25 10:38:24 2015 -0800

--
 README.md | 22 +++---
 1 file changed, 7 insertions(+), 15 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/cordova-labs/blob/46e45fd5/README.md
--
diff --git a/README.md b/README.md
index da2a2ac..8289b33 100644
--- a/README.md
+++ b/README.md
@@ -1,20 +1,12 @@
-Server for Cordova FileTransfer Jasmine tests
-
+This the test server for these Cordova FileTransfer Jasmine tests: 
 
https://github.com/apache/cordova-mobile-spec/blob/master/autotest/tests/filetransfer.tests.js
 
-This needs to be published on the cordova-vm.
-
-Currently, ask Dimitry or Steve Gill to do this.
+It runs on cordova-vm.apache.org. Currently, ask Dmitry Blotsky or Steve Gill 
to 
+do deploy it.
 
-ssh u...@cordova-vm.apache.org
+The commands to (re)start the server are:
 
-sudo access:
-sudo ls
-Use: https://reference.apache.org/committer/otp-md5
-Challenge: get when you type sudo in vm
-password: normal apache password
-enter computed string as password on machine when prompted for password
+forever list
+kill [pid for server.js from above command]
+forever run cordova-labs/server.js
 
-sudo forever list
-kill pid for server.js
-sudo forever run cordova-labs/server.js


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



cordova-labs git commit: Fixing link to tests.

2015-11-25 Thread dblotsky
Repository: cordova-labs
Updated Branches:
  refs/heads/cordova-filetransfer 46e45fd51 -> cc780555b


Fixing link to tests.


Project: http://git-wip-us.apache.org/repos/asf/cordova-labs/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-labs/commit/cc780555
Tree: http://git-wip-us.apache.org/repos/asf/cordova-labs/tree/cc780555
Diff: http://git-wip-us.apache.org/repos/asf/cordova-labs/diff/cc780555

Branch: refs/heads/cordova-filetransfer
Commit: cc780555bdf97ede89fc5b2da52c0e91123f54c2
Parents: 46e45fd
Author: Dmitry Blotsky 
Authored: Wed Nov 25 10:45:07 2015 -0800
Committer: Dmitry Blotsky 
Committed: Wed Nov 25 10:45:07 2015 -0800

--
 README.md | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/cordova-labs/blob/cc780555/README.md
--
diff --git a/README.md b/README.md
index 8289b33..851e19f 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,6 @@
-This the test server for these Cordova FileTransfer Jasmine tests: 
-https://github.com/apache/cordova-mobile-spec/blob/master/autotest/tests/filetransfer.tests.js
+This the test server for these Cordova FileTransfer Jasmine tests: 
https://github.com/apache/cordova-plugin-file-transfer/blob/master/tests/tests.js
 
-It runs on cordova-vm.apache.org. Currently, ask Dmitry Blotsky or Steve Gill 
to 
+It runs on cordova-vm.apache.org. Currently, ask Dmitry Blotsky or Steve Gill 
to
 do deploy it.
 
 The commands to (re)start the server are:


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



docs commit: Fixing some styling issues and simplifying content on Contribute page. Fixing CSS for contact page. Fixing Makefile for Unix.

2015-11-24 Thread dblotsky
Repository: cordova-docs
Updated Branches:
  refs/heads/master 69a068d19 -> fc483207b


Fixing some styling issues and simplifying content on Contribute page. Fixing 
CSS for contact page. Fixing Makefile for Unix.


Project: http://git-wip-us.apache.org/repos/asf/cordova-docs/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-docs/commit/fc483207
Tree: http://git-wip-us.apache.org/repos/asf/cordova-docs/tree/fc483207
Diff: http://git-wip-us.apache.org/repos/asf/cordova-docs/diff/fc483207

Branch: refs/heads/master
Commit: fc483207bf214d5df70a450d8fe880e325ea6cff
Parents: 69a068d
Author: Dmitry Blotsky 
Authored: Fri Nov 20 18:30:57 2015 -0800
Committer: Dmitry Blotsky 
Committed: Tue Nov 24 22:13:33 2015 -0800

--
 Makefile|  14 ++
 www/_data/mailing-lists.yml |   8 +-
 www/contact/index.html  |  83 ++--
 www/contribute/index.html   | 122 -
 www/contribute/issues.md|  22 +++-
 www/static/css-src/_contact.scss|  78 +++
 www/static/css-src/_contribute.scss | 218 +--
 www/static/css-src/main.scss|   4 -
 8 files changed, 308 insertions(+), 241 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/fc483207/Makefile
--
diff --git a/Makefile b/Makefile
index d9ba501..d0d24a7 100644
--- a/Makefile
+++ b/Makefile
@@ -194,20 +194,34 @@ $(TOC_FILES): $(BIN_DIR)/toc.js Makefile
 
 $(MAIN_STYLE_FILE): $(SCSS_SRC)
 
+# NODE:
+#  $(@D) means "directory part of target"
 $(CSS_DEST_DIR)/%.css: $(CSS_SRC_DIR)/%.less Makefile
+ifdef WINDOWS
-$(MKDIRP) $(subst /,\,$(@D))
+else
+   $(MKDIRP) $(@D)
+endif
echo ---> $@
echo --->> $@
$(LESSC) $< >> $@
 
 $(CSS_DEST_DIR)/%.css: $(CSS_SRC_DIR)/%.scss Makefile
+ifdef WINDOWS
-$(MKDIRP) $(subst /,\,$(@D))
+else
+   $(MKDIRP) $(@D)
+endif
echo ---> $@
echo --->> $@
$(SASSC) $< >> $@
 
 $(CSS_DEST_DIR)/%.css: $(CSS_SRC_DIR)/%.css Makefile
+ifdef WINDOWS
-$(MKDIRP) $(subst /,\,$(@D))
+else
+   $(MKDIRP) $(@D)
+endif
echo ---> $@
echo --->> $@
cat $< >> $@

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/fc483207/www/_data/mailing-lists.yml
--
diff --git a/www/_data/mailing-lists.yml b/www/_data/mailing-lists.yml
index fd14ece..8f0a520 100644
--- a/www/_data/mailing-lists.yml
+++ b/www/_data/mailing-lists.yml
@@ -24,8 +24,8 @@
 text: Dev Mailing List Archive
 href: 
http://callback.markmail.org/search/?q=#query:%20list%3Aorg.apache.incubator.callback-dev+page:1+state:facets
 description: >
-Dev mailing list is a place for discussion about developing Apache 
Cordova.
-If you are a Cordova user looking for help, use the cordova tag 
on http://stackoverflow.com/questions/tagged/cordova;>Stack 
Overflow.
+The Dev mailing list is a place for discussion about developing Apache 
Cordova.
+If you are a Cordova user looking for help, use the http://stackoverflow.com/questions/tagged/cordova;>cordova tag on Stack 
Overflow.
 
 -   title: Commits Mailing List
 links:
@@ -53,7 +53,7 @@
 text: Commits Mailing List Archive
 href: 
http://callback.markmail.org/search/?q=#query:%20list%3Aorg.apache.incubator.callback-commits+page:1+state:facets
 description: >
-Commits mailing list tracks commit logs for Apache Cordova repos.
+The Commits mailing list tracks commit logs for Apache Cordova repos.
 
 -   title: Issues Mailing List
 links:
@@ -81,4 +81,4 @@
 text: Issues Mailing List Archive
 href: 
http://apache.markmail.org/search/?q=#query:%20list%3Aorg.apache.cordova.issues%20order%3Adate-backward+page:1+state:facets
 description: >
-Issues mailing list tracks comments and updates to http://issues.apache.org/jira/browse/CB;>Jira items regarding Apache 
Cordova.
+The Issues mailing list tracks comments and updates to http://issues.apache.org/jira/browse/CB;>Jira items regarding Apache 
Cordova.

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/fc483207/www/contact/index.html
--
diff --git a/www/contact/index.html b/www/contact/index.html
index 6e75208..aff008c 100644
--- a/www/contact/index.html
+++ b/www/contact/index.html
@@ -3,53 +3,58 @@ layout: page
 title: Contact
 ---
 
-
-
-Mailing List
+
+
+
+Mailing List
+
+NOTE: To subscribe to a mailing list, send a non-empty 
email to its subscription address 

svn commit: r1716315 [1/5] - in /cordova/site/public: contact/index.html contribute/index.html contribute/issues.html feed.xml sitemap.xml static/css/main.css static/js/plugins.js

2015-11-24 Thread dblotsky
Author: dblotsky
Date: Wed Nov 25 07:35:49 2015
New Revision: 1716315

URL: http://svn.apache.org/viewvc?rev=1716315=rev
Log:
Updating site.

Modified:
cordova/site/public/contact/index.html
cordova/site/public/contribute/index.html
cordova/site/public/contribute/issues.html
cordova/site/public/feed.xml
cordova/site/public/sitemap.xml
cordova/site/public/static/css/main.css
cordova/site/public/static/js/plugins.js

Modified: cordova/site/public/contact/index.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/contact/index.html?rev=1716315=1716314=1716315=diff
==
--- cordova/site/public/contact/index.html (original)
+++ cordova/site/public/contact/index.html Wed Nov 25 07:35:49 2015
@@ -84,402 +84,407 @@
 
 
 
+
 
-
-Mailing List
+
+Mailing List
+
+NOTE: To subscribe to a mailing list, send a non-empty 
email to its subscription address from the email address that you wish to be 
subscribed.
+
+
 
-
-
-
-
-
-
-
-
-
-Dev Mailing List
-
-
-
-Dev mailing list is a place for discussion about 
developing Apache Cordova. If you are a Cordova user looking for help, use 
the cordova tag on http://stackoverflow.com/questions/tagged/cordova;>Stack Overflow.
+
+
+
+
+
+
+
+
+Dev Mailing List
+
+
+
+The Dev mailing list is a place for discussion 
about developing Apache Cordova. If you are a Cordova user looking for 
help, use the http://stackoverflow.com/questions/tagged/cordova;>cordova tag on Stack 
Overflow.
 
-
-
-
-
-
-
-
-
-
-
-Writing to the list
+
+
+
+
+
+
+
+
+
+
+Writing to the list
+
 
-
-
-
-mailto:d...@cordova.apache.org;>d...@cordova.apache.org
-
-mailto:d...@cordova.apache.org;>
+
+
+mailto:d...@cordova.apache.org;>d...@cordova.apache.org
+
+mailto:d...@cordova.apache.org;>
+
 
 
 
-
-
-
-
-
-
-
-Subscription address
+
+
+
+
+
+
+Subscription address
+
 
-
-
-
-mailto:dev-subscr...@cordova.apache.org;>dev-subscr...@cordova.apache.org
-
-mailto:dev-subscr...@cordova.apache.org;>
+
+
+  

svn commit: r1716315 [3/5] - in /cordova/site/public: contact/index.html contribute/index.html contribute/issues.html feed.xml sitemap.xml static/css/main.css static/js/plugins.js

2015-11-24 Thread dblotsky
Modified: cordova/site/public/contribute/issues.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/contribute/issues.html?rev=1716315=1716314=1716315=diff
==
--- cordova/site/public/contribute/issues.html (original)
+++ cordova/site/public/contribute/issues.html Wed Nov 25 07:35:49 2015
@@ -87,11 +87,11 @@
 
 Reporting Issues
 
-Thank you for helping to improve Cordova! Issues for Apache Cordova are 
hosted at the Apache https://issues.apache.org/jira/browse/CB;>JIRA. A JIRA account is 
required before you can submit issues (you can https://issues.apache.org/jira/secure/Signup!default.jspa;>create one 
here). Before submitting an issue, please take a moment to search JIRA to 
see if an issue already exists. If it does, please consider commenting or 
voting for the issue to help raise its visibility.
+Thank you for helping to improve Cordova! Issues for Apache Cordova are 
hosted at the Apache https://issues.apache.org/jira/browse/CB;>JIRA. A JIRA account is 
required before you can submit issues (you can easily https://issues.apache.org/jira/secure/Signup!default.jspa;>create one 
here). Before submitting an issue, please take a moment to search JIRA to 
see if an issue already exists. If it does, please consider commenting or 
voting for the issue to help raise its visibility.
 
 Creating an issue in JIRA
 
-Once you have created an account and logged in, click the blue 
Create button at the top of the https://issues.apache.org/jira/browse/CB;>Cordova JIRA page to create 
an issue. In the dialog that appears, please fill out the following fields to 
the best of your ability. All fields besides those listed here can be left 
blank.
+Once you have created an account and logged in, click the blue 
Create button at the top of the https://issues.apache.org/jira/browse/CB;>Cordova JIRA page to create 
an issue. In the dialog that appears, please fill out the following fields 
to the best of your ability. All fields besides those listed here can 
be left blank.
 
 
 
@@ -133,7 +133,7 @@
 
 
 Priority
-The impact of the issue. See below
+The impact of the issue (see below)
 
 
 
@@ -150,6 +150,17 @@
 
 If you arent sure about the priority, leave the default (major) 
selected. Please be aware that as our contributors triage issues, they may 
change the priority based on our criteria.
 
+Finding out versions
+
+You can quickly find out versions of platforms/plugins youre using by 
running:
+cordova platform ls
+
+or
+cordova plugin ls
+
+in your project respectively. You can find out the version of the Cordova 
CLI youre using by running:
+cordova --version
+
 
 
 

Modified: cordova/site/public/feed.xml
URL: 
http://svn.apache.org/viewvc/cordova/site/public/feed.xml?rev=1716315=1716314=1716315=diff
==
--- cordova/site/public/feed.xml (original)
+++ cordova/site/public/feed.xml Wed Nov 25 07:35:49 2015
@@ -6,8 +6,8 @@
 
 https://cordova.apache.org/
 https://cordova.apache.org/feed.xml; rel="self" 
type="application/rss+xml"/>
-Tue, 24 Nov 2015 17:36:59 -0800
-Tue, 24 Nov 2015 17:36:59 -0800
+Tue, 24 Nov 2015 22:14:50 -0800
+Tue, 24 Nov 2015 22:14:50 -0800
 Jekyll v2.5.3
 
   



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



svn commit: r1716315 [2/5] - in /cordova/site/public: contact/index.html contribute/index.html contribute/issues.html feed.xml sitemap.xml static/css/main.css static/js/plugins.js

2015-11-24 Thread dblotsky
Modified: cordova/site/public/contribute/index.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/contribute/index.html?rev=1716315=1716314=1716315=diff
==
--- cordova/site/public/contribute/index.html (original)
+++ cordova/site/public/contribute/index.html Wed Nov 25 07:35:49 2015
@@ -89,1079 +89,1079 @@
 
 
 
-
-
-
-Want to Contribute?
-Contributors are needed to keep the project moving forward!
-
+
+
+Want to Contribute?
+Contributors are needed to keep the project moving forward!
 
-
-
-To share your contributions with the community, you can send a 
pull request on GitHub to the Apache git mirrors. You can also advocate for 
your changes directly on our dev mailing list.
-Get Started Now
-
-Join the Mailing List
-Sign the http://www.apache.org/licenses/#clas;>Individual Contributor License 
Agreement (ICLA)
-Create an account in https://issues.apache.org/jira/secure/Dashboard.jspa;>Apache Jira
-Bookmark the official URL for https://issues.apache.org/jira/browse/CB/?selectedTab=com.atlassian.jira.jira-projects-plugin:issues-panel;>Cordova
 Issues
-Send a brief introduction of yourself to mailto:d...@cordova.apache.org;>d...@cordova.apache.org
-Read the Contributor Guidelines
-
-
-
-
-
-
-
-
-
-
-
-https://issues.apache.org/jira/browse/CB/?selectedTab=com.atlassian.jira.jira-projects-plugin:issues-panel;>View All 
Issues
-Report a Bug
-https://people.apache.org/committer-index.html;>View Committers / Non-Committers
-
+
+
+
+What you can do
+
+File a bug or task
+Read the Contributor 
Guidelines
+Join the Dev mailing list and send a 
brief introduction of yourself to it
+Join the discussion on http://slack.cordova.io/;>Slack
+Sign the http://www.apache.org/licenses/#clas;>Individual Contributor License 
Agreement (ICLA) and mailto:secret...@apache.org;>submit 
it
+
+
+
+
+
+
+
+
+
 
+
+
+
+https://issues.apache.org/jira/browse/CB/?selectedTab=com.atlassian.jira.jira-projects-plugin:issues-panel;>View
 All Issues
+
+
+
+See all https://people.apache.org/committers-by-project.html#cordova;>Committers
 / https://people.apache.org/committer-index.html#unlistedclas;>Contributors
+
+
 
 
-
-
-
-
-
-Platforms
-
+
+
+
+
+
+
+Platforms
+
 
+
 
-
-
-
-
-
-
-Amazon Fire OS
-
-
-
-https://github.com/apache/cordova-amazon-fireos;>
-
-
-https://git-wip-us.apache.org/repos/asf?p=cordova-amazon-fireos.git;a=summary;>
-
+
+
+
+
+
+Amazon Fire OS
+
+
+
+https://github.com/apache/cordova-amazon-fireos;>
+
+
+https://git-wip-us.apache.org/repos/asf?p=cordova-amazon-fireos.git;a=summary;>
 
 
-
-
+
+
+
 
+
 
-
-
+
 
-
-
-
-Android
-
-
-
-https://github.com/apache/cordova-android;>
-
-
-https://git-wip-us.apache.org/repos/asf?p=cordova-android.git;a=summary;>
-
+
+
+
+Android
+

svn commit: r1716315 [4/5] - in /cordova/site/public: contact/index.html contribute/index.html contribute/issues.html feed.xml sitemap.xml static/css/main.css static/js/plugins.js

2015-11-24 Thread dblotsky
Modified: cordova/site/public/sitemap.xml
URL: 
http://svn.apache.org/viewvc/cordova/site/public/sitemap.xml?rev=1716315=1716314=1716315=diff
==
--- cordova/site/public/sitemap.xml (original)
+++ cordova/site/public/sitemap.xml Wed Nov 25 07:35:49 2015
@@ -2,324 +2,324 @@
 
 
 
https://cordova.apache.org/blog/2013/07/11/cordova-has-a-blog.html
-2015-11-24T17:02:19-08:00
+2015-11-23T15:30:29-08:00
 
 
 
https://cordova.apache.org/blog/releases/2013/07/23/cordova-3.html
-2015-11-24T17:02:19-08:00
+2015-11-23T15:30:29-08:00
 
 
 
https://cordova.apache.org/blog/2013/08/12/crowdintranslation.html
-2015-11-24T17:02:19-08:00
+2015-11-23T15:30:29-08:00
 
 
 https://cordova.apache.org/news/2013/09/06/last-week.html
-2015-11-24T17:02:19-08:00
+2015-11-23T15:30:29-08:00
 
 
 https://cordova.apache.org/news/2013/09/13/last-week.html
-2015-11-24T17:02:19-08:00
+2015-11-23T15:30:29-08:00
 
 
 
https://cordova.apache.org/news/2013/10/01/plugins-release.html
-2015-11-24T17:02:19-08:00
+2015-11-23T15:30:29-08:00
 
 
 
https://cordova.apache.org/blog/releases/2013/10/02/cordova-31.html
-2015-11-24T17:02:20-08:00
+2015-11-23T15:30:29-08:00
 
 
 
https://cordova.apache.org/news/2013/10/10/plugins-release.html
-2015-11-24T17:02:20-08:00
+2015-11-23T15:30:29-08:00
 
 
 
https://cordova.apache.org/news/2013/10/21/cordova-registry.html
-2015-11-24T17:02:20-08:00
+2015-11-23T15:30:29-08:00
 
 
 
https://cordova.apache.org/news/2013/10/28/plugins-release.html
-2015-11-24T17:02:20-08:00
+2015-11-23T15:30:29-08:00
 
 
 
https://cordova.apache.org/blog/releases/2013/11/06/cordova-291.html
-2015-11-24T17:02:20-08:00
+2015-11-23T15:30:29-08:00
 
 
 
 
https://cordova.apache.org/announcements/releases/2013/11/13/cordova-320rc1.html
 
-2015-11-24T17:02:20-08:00
+2015-11-23T15:30:29-08:00
 
 
 
https://cordova.apache.org/announcements/2013/11/15/kitkat.html
-2015-11-24T17:02:20-08:00
+2015-11-23T15:30:29-08:00
 
 
 
https://cordova.apache.org/announcements/2013/11/22/cordova-320.html
-2015-11-24T17:02:20-08:00
+2015-11-23T15:30:29-08:00
 
 
 
https://cordova.apache.org/news/2013/12/04/plugins-release.html
-2015-11-24T17:02:20-08:00
+2015-11-23T15:30:29-08:00
 
 
 
 
https://cordova.apache.org/announcements/releases/2013/12/06/cordova-330rc1.html
 
-2015-11-24T17:02:20-08:00
+2015-11-23T15:30:29-08:00
 
 
 
https://cordova.apache.org/announcements/2013/12/16/cordova-330.html
-2015-11-24T17:02:20-08:00
+2015-11-23T15:30:29-08:00
 
 
 
https://cordova.apache.org/news/2014/01/02/plugins-release.html
-2015-11-24T17:02:20-08:00
+2015-11-23T15:30:29-08:00
 
 
 
https://cordova.apache.org/news/2014/01/31/tools-release.html
-2015-11-24T17:02:20-08:00
+2015-11-23T15:30:29-08:00
 
 
 
https://cordova.apache.org/news/2014/02/10/plugins-release.html
-2015-11-24T17:02:20-08:00
+2015-11-23T15:30:29-08:00
 
 
 
https://cordova.apache.org/announcements/2014/02/20/cordova-340.html
-2015-11-24T17:02:20-08:00
+2015-11-23T15:30:29-08:00
 
 
 
https://cordova.apache.org/news/2014/03/03/plugins-release.html
-2015-11-24T17:02:20-08:00
+2015-11-23T15:30:29-08:00
 
 
 
https://cordova.apache.org/news/2014/03/05/tools-release.html
-2015-11-24T17:02:20-08:00
+2015-11-23T15:30:29-08:00
 
 
 
https://cordova.apache.org/news/2014/04/09/tools-ios-release.html
-2015-11-24T17:02:20-08:00
+2015-11-23T15:30:29-08:00
 
 
 
https://cordova.apache.org/news/2014/04/23/plugins.release.html
-2015-11-24T17:02:20-08:00
+2015-11-23T15:30:29-08:00
 
 
 
https://cordova.apache.org/announcements/2014/05/23/cordova-350.html
-2015-11-24T17:02:20-08:00
+2015-11-23T15:30:29-08:00
 
 
 
https://cordova.apache.org/news/2014/06/12/plugins-release.html
-2015-11-24T17:02:20-08:00
+2015-11-23T15:30:29-08:00
 
 
 
https://cordova.apache.org/news/2014/07/08/plugins-release.html
-2015-11-24T17:02:20-08:00
+2015-11-23T15:30:29-08:00
 
 
 
https://cordova.apache.org/news/2014/07/10/tools-release.html
-2015-11-24T17:02:20-08:00
+2015-11-23T15:30:29-08:00
 
 
 

svn commit: r1716033 - in /cordova/site/public: contact/index.html feed.xml sitemap.xml

2015-11-23 Thread dblotsky
Author: dblotsky
Date: Tue Nov 24 05:40:08 2015
New Revision: 1716033

URL: http://svn.apache.org/viewvc?rev=1716033=rev
Log:
Updating site.

Modified:
cordova/site/public/contact/index.html
cordova/site/public/feed.xml
cordova/site/public/sitemap.xml

Modified: cordova/site/public/contact/index.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/contact/index.html?rev=1716033=1716032=1716033=diff
==
--- cordova/site/public/contact/index.html (original)
+++ cordova/site/public/contact/index.html Tue Nov 24 05:40:08 2015
@@ -84,405 +84,407 @@
 
 
 
-
-
-Mailing List
-
-NOTE: To subscribe to a mailing list, send a non-empty email 
to its subscription address from the email address that you wish to be 
subscribed.
-
+
+
+
+Mailing List
+
+NOTE: To subscribe to a mailing list, send a non-empty 
email to its subscription address from the email address that you wish to be 
subscribed.
+
+
 
-
-
-
-
-
-
-
-
-
-Dev Mailing List
-
-
-
-The Dev mailing list is a place for discussion about 
developing Apache Cordova. If you are a Cordova user looking for help, use 
the http://stackoverflow.com/questions/tagged/cordova;>cordova tag on 
Stack Overflow.
+
+
+
+
+
+
+
+
+Dev Mailing List
+
+
+
+The Dev mailing list is a place for discussion 
about developing Apache Cordova. If you are a Cordova user looking for 
help, use the http://stackoverflow.com/questions/tagged/cordova;>cordova tag on Stack 
Overflow.
 
-
-
-
-
-
-
-
-
-
-
-Writing to the list
+
+
+
+
+
+
+
+
+
+
+Writing to the list
+
 
-
-
-
-mailto:d...@cordova.apache.org;>d...@cordova.apache.org
-
-mailto:d...@cordova.apache.org;>
+
+
+mailto:d...@cordova.apache.org;>d...@cordova.apache.org
+
+mailto:d...@cordova.apache.org;>
+
 
 
 
-
-
-
-
-
-
-
-Subscription address
+
+
+
+
+
+
+Subscription address
+
 
-
-
-
-mailto:dev-subscr...@cordova.apache.org;>dev-subscr...@cordova.apache.org
-
-mailto:dev-subscr.

svn commit: r1716010 [3/30] - in /cordova/site/public: ./ announcements/2013/11/15/ announcements/2013/11/22/ announcements/2013/12/16/ announcements/2014/02/20/ announcements/2014/05/23/ announcement

2015-11-23 Thread dblotsky
Modified: cordova/site/public/contribute/index.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/contribute/index.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/contribute/index.html (original)
+++ cordova/site/public/contribute/index.html Tue Nov 24 01:53:13 2015
@@ -23,7 +23,7 @@
 
 
 
-
+
 
 
 
@@ -67,7 +67,7 @@
 
 Blog
 
-
+
 Contribute
 
 
@@ -83,1083 +83,1088 @@
 
 
 
+
+
 
 
 
 
-
-
-
-Want to Contribute?
-Contributors are needed to keep the project moving forward!
-
+
+
+Want to Contribute?
+Contributors are needed to keep the project moving forward!
 
-
-
-To share your contributions with the community, you can send a 
pull request on GitHub to the Apache git mirrors. You can also advocate for 
your changes directly on our dev mailing list.
-Get Started Now
-
-Join the Mailing List
-Sign the http://www.apache.org/licenses/#clas;>Individual Contributor License 
Agreement (ICLA)
-Create an account in https://issues.apache.org/jira/secure/Dashboard.jspa;>Apache Jira
-Bookmark the official URL for https://issues.apache.org/jira/browse/CB/?selectedTab=com.atlassian.jira.jira-projects-plugin:issues-panel;>Cordova
 Issues
-Send a brief introduction of yourself to mailto:d...@cordova.apache.org;>d...@cordova.apache.org
-Read the Contributor Guidelines
-
-
-
-
-
-
-
-
-
-
-
-https://issues.apache.org/jira/browse/CB/?selectedTab=com.atlassian.jira.jira-projects-plugin:issues-panel;>View All 
Issues
-Report a Bug
-https://people.apache.org/committer-index.html;>View Committers / Non-Committers
-
+
+
+
+What you can do
+
+File a bug or task
+Join the Dev mailing list and send a 
brief introduction of yourself to it
+Sign the http://www.apache.org/licenses/#clas;>Individual Contributor License 
Agreement (ICLA) and mailto:secret...@apache.org;>submit 
it
+Read the Contributor 
Guidelines
+
+
+
+
+
+
+
+
+
 
+
+
+
+https://issues.apache.org/jira/browse/CB/?selectedTab=com.atlassian.jira.jira-projects-plugin:issues-panel;>View
 All Issues
+
+
+
+See all https://people.apache.org/committers-by-project.html#cordova;>Committers
 / https://people.apache.org/committer-index.html#unlistedclas;>Non-Committers
+
+
 
 
-
-
-
-
-
-Platforms
-
+
+
+
+
+
+
+Platforms
+
 
+
 
-
-
-
-
-
-
-Amazon Fire OS
-
-
-
-https://github.com/apache/cordova-amazon-fireos;>
-
-
-https://git-wip-us.apache.org/repos/asf?p=cordova-amazon-fireos.git;a=summary;>
-
+
+
+
+
+
+Amazon Fire OS
+
+
+
+https://github.com/apache/cordova-amazon-fireos;>
+
+
+https://git-wip-us.apache.org/repos/asf?p=cordova-amazon-fireos.git;a=summary;>
 
 
-
-
+
+
+
 
+
 
-
-
+
 
-
-
-
-Android
-
-
-
-https://github.com/apache/cordova-android;>
-
-
-

svn commit: r1716010 [14/30] - in /cordova/site/public: ./ announcements/2013/11/15/ announcements/2013/11/22/ announcements/2013/12/16/ announcements/2014/02/20/ announcements/2014/05/23/ announcemen

2015-11-23 Thread dblotsky
Modified: cordova/site/public/docs/es/dev/guide/appdev/hooks/index.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/es/dev/guide/appdev/hooks/index.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/es/dev/guide/appdev/hooks/index.html (original)
+++ cordova/site/public/docs/es/dev/guide/appdev/hooks/index.html Tue Nov 24 
01:53:13 2015
@@ -815,7 +815,7 @@
 
 5.4.0
 
-(Latest)
+(Ultima)
 
 
 

Modified: cordova/site/public/docs/es/dev/guide/appdev/privacy/index.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/es/dev/guide/appdev/privacy/index.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/es/dev/guide/appdev/privacy/index.html (original)
+++ cordova/site/public/docs/es/dev/guide/appdev/privacy/index.html Tue Nov 24 
01:53:13 2015
@@ -815,7 +815,7 @@
 
 5.4.0
 
-(Latest)
+(Ultima)
 
 
 

Modified: cordova/site/public/docs/es/dev/guide/appdev/security/index.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/es/dev/guide/appdev/security/index.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/es/dev/guide/appdev/security/index.html (original)
+++ cordova/site/public/docs/es/dev/guide/appdev/security/index.html Tue Nov 24 
01:53:13 2015
@@ -815,7 +815,7 @@
 
 5.4.0
 
-(Latest)
+(Ultima)
 
 
 

Modified: cordova/site/public/docs/es/dev/guide/appdev/whitelist/index.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/es/dev/guide/appdev/whitelist/index.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/es/dev/guide/appdev/whitelist/index.html (original)
+++ cordova/site/public/docs/es/dev/guide/appdev/whitelist/index.html Tue Nov 
24 01:53:13 2015
@@ -815,7 +815,7 @@
 
 5.4.0
 
-(Latest)
+(Ultima)
 
 
 

Modified: cordova/site/public/docs/es/dev/guide/cli/index.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/es/dev/guide/cli/index.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/es/dev/guide/cli/index.html (original)
+++ cordova/site/public/docs/es/dev/guide/cli/index.html Tue Nov 24 01:53:13 
2015
@@ -815,7 +815,7 @@
 
 5.4.0
 
-(Latest)
+(Ultima)
 
 
 

Modified: cordova/site/public/docs/es/dev/guide/hybrid/plugins/index.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/es/dev/guide/hybrid/plugins/index.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/es/dev/guide/hybrid/plugins/index.html (original)
+++ cordova/site/public/docs/es/dev/guide/hybrid/plugins/index.html Tue Nov 24 
01:53:13 2015
@@ -815,7 +815,7 @@
 
 5.4.0
 
-(Latest)
+(Ultima)
 
 
 

Modified: cordova/site/public/docs/es/dev/guide/hybrid/webviews/index.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/es/dev/guide/hybrid/webviews/index.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/es/dev/guide/hybrid/webviews/index.html (original)
+++ cordova/site/public/docs/es/dev/guide/hybrid/webviews/index.html Tue Nov 24 
01:53:13 2015
@@ -815,7 +815,7 @@
 
 5.4.0

svn commit: r1716010 [7/30] - in /cordova/site/public: ./ announcements/2013/11/15/ announcements/2013/11/22/ announcements/2013/12/16/ announcements/2014/02/20/ announcements/2014/05/23/ announcement

2015-11-23 Thread dblotsky
Modified: cordova/site/public/docs/de/3.5.0/guide/platforms/ios/upgrading.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/de/3.5.0/guide/platforms/ios/upgrading.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/de/3.5.0/guide/platforms/ios/upgrading.html 
(original)
+++ cordova/site/public/docs/de/3.5.0/guide/platforms/ios/upgrading.html Tue 
Nov 24 01:53:13 2015
@@ -765,7 +765,7 @@
 
 5.4.0
 
-(Latest)
+(Letzte)
 
 
 

Modified: cordova/site/public/docs/de/3.5.0/guide/platforms/ios/webview.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/de/3.5.0/guide/platforms/ios/webview.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/de/3.5.0/guide/platforms/ios/webview.html 
(original)
+++ cordova/site/public/docs/de/3.5.0/guide/platforms/ios/webview.html Tue Nov 
24 01:53:13 2015
@@ -765,7 +765,7 @@
 
 5.4.0
 
-(Latest)
+(Letzte)
 
 
 

Modified: cordova/site/public/docs/de/3.5.0/guide/platforms/tizen/index.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/de/3.5.0/guide/platforms/tizen/index.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/de/3.5.0/guide/platforms/tizen/index.html 
(original)
+++ cordova/site/public/docs/de/3.5.0/guide/platforms/tizen/index.html Tue Nov 
24 01:53:13 2015
@@ -765,7 +765,7 @@
 
 5.4.0
 
-(Latest)
+(Letzte)
 
 
 

Modified: cordova/site/public/docs/de/3.5.0/guide/platforms/ubuntu/index.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/de/3.5.0/guide/platforms/ubuntu/index.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/de/3.5.0/guide/platforms/ubuntu/index.html 
(original)
+++ cordova/site/public/docs/de/3.5.0/guide/platforms/ubuntu/index.html Tue Nov 
24 01:53:13 2015
@@ -765,7 +765,7 @@
 
 5.4.0
 
-(Latest)
+(Letzte)
 
 
 

Modified: cordova/site/public/docs/de/3.5.0/guide/platforms/win8/index.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/de/3.5.0/guide/platforms/win8/index.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/de/3.5.0/guide/platforms/win8/index.html (original)
+++ cordova/site/public/docs/de/3.5.0/guide/platforms/win8/index.html Tue Nov 
24 01:53:13 2015
@@ -765,7 +765,7 @@
 
 5.4.0
 
-(Latest)
+(Letzte)
 
 
 

Modified: cordova/site/public/docs/de/3.5.0/guide/platforms/win8/tools.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/de/3.5.0/guide/platforms/win8/tools.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/de/3.5.0/guide/platforms/win8/tools.html (original)
+++ cordova/site/public/docs/de/3.5.0/guide/platforms/win8/tools.html Tue Nov 
24 01:53:13 2015
@@ -765,7 +765,7 @@
 
 5.4.0
 
-(Latest)
+(Letzte)
 
 
 

Modified: cordova/site/public/docs/de/3.5.0/guide/platforms/win8/upgrading.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/de/3.5.0/guide/platforms/win8/upgrading.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/de/3.5.0/guide/platforms/win8/upgrading.html 
(original)
+++ 

svn commit: r1716010 [19/30] - in /cordova/site/public: ./ announcements/2013/11/15/ announcements/2013/11/22/ announcements/2013/12/16/ announcements/2014/02/20/ announcements/2014/05/23/ announcemen

2015-11-23 Thread dblotsky
Modified: cordova/site/public/docs/fr/5.4.0/guide/platforms/wp8/index.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/fr/5.4.0/guide/platforms/wp8/index.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/fr/5.4.0/guide/platforms/wp8/index.html (original)
+++ cordova/site/public/docs/fr/5.4.0/guide/platforms/wp8/index.html Tue Nov 24 
01:53:13 2015
@@ -711,7 +711,7 @@
 
 5.4.0
 
-(Latest)
+(Dernière)
 
 
 
@@ -767,7 +767,7 @@
 
 5.4.0
 
-(Latest)
+(Dernière)
 
 
 

Modified: cordova/site/public/docs/fr/5.4.0/guide/platforms/wp8/parallels.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/fr/5.4.0/guide/platforms/wp8/parallels.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/fr/5.4.0/guide/platforms/wp8/parallels.html 
(original)
+++ cordova/site/public/docs/fr/5.4.0/guide/platforms/wp8/parallels.html Tue 
Nov 24 01:53:13 2015
@@ -711,7 +711,7 @@
 
 5.4.0
 
-(Latest)
+(Dernière)
 
 
 
@@ -767,7 +767,7 @@
 
 5.4.0
 
-(Latest)
+(Dernière)
 
 
 

Modified: cordova/site/public/docs/fr/5.4.0/guide/platforms/wp8/plugin.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/fr/5.4.0/guide/platforms/wp8/plugin.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/fr/5.4.0/guide/platforms/wp8/plugin.html (original)
+++ cordova/site/public/docs/fr/5.4.0/guide/platforms/wp8/plugin.html Tue Nov 
24 01:53:13 2015
@@ -711,7 +711,7 @@
 
 5.4.0
 
-(Latest)
+(Dernière)
 
 
 
@@ -767,7 +767,7 @@
 
 5.4.0
 
-(Latest)
+(Dernière)
 
 
 

Modified: cordova/site/public/docs/fr/5.4.0/guide/platforms/wp8/tools.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/fr/5.4.0/guide/platforms/wp8/tools.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/fr/5.4.0/guide/platforms/wp8/tools.html (original)
+++ cordova/site/public/docs/fr/5.4.0/guide/platforms/wp8/tools.html Tue Nov 24 
01:53:13 2015
@@ -711,7 +711,7 @@
 
 5.4.0
 
-(Latest)
+(Dernière)
 
 
 
@@ -767,7 +767,7 @@
 
 5.4.0
 
-(Latest)
+(Dernière)
 
 
 

Modified: cordova/site/public/docs/fr/5.4.0/guide/platforms/wp8/upgrade.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/fr/5.4.0/guide/platforms/wp8/upgrade.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/fr/5.4.0/guide/platforms/wp8/upgrade.html 
(original)
+++ cordova/site/public/docs/fr/5.4.0/guide/platforms/wp8/upgrade.html Tue Nov 
24 01:53:13 2015
@@ -711,7 +711,7 @@
 
 5.4.0
 
-(Latest)
+(Dernière)
 
 
 
@@ -767,7 +767,7 @@
 
 5.4.0
 
-(Latest)
+(Dernière)
 
 
 

Modified: 

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

2015-11-23 Thread dblotsky
Modified: 
cordova/site/public/docs/es/3.5.0/cordova/storage/parameters/display_name.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/es/3.5.0/cordova/storage/parameters/display_name.html?rev=1716010=1716009=1716010=diff
==
--- 
cordova/site/public/docs/es/3.5.0/cordova/storage/parameters/display_name.html 
(original)
+++ 
cordova/site/public/docs/es/3.5.0/cordova/storage/parameters/display_name.html 
Tue Nov 24 01:53:13 2015
@@ -701,7 +701,7 @@
 
 5.4.0
 
-(Latest)
+(Ultima)
 
 
 

Modified: cordova/site/public/docs/es/3.5.0/cordova/storage/parameters/name.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/es/3.5.0/cordova/storage/parameters/name.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/es/3.5.0/cordova/storage/parameters/name.html 
(original)
+++ cordova/site/public/docs/es/3.5.0/cordova/storage/parameters/name.html Tue 
Nov 24 01:53:13 2015
@@ -701,7 +701,7 @@
 
 5.4.0
 
-(Latest)
+(Ultima)
 
 
 

Modified: cordova/site/public/docs/es/3.5.0/cordova/storage/parameters/size.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/es/3.5.0/cordova/storage/parameters/size.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/es/3.5.0/cordova/storage/parameters/size.html 
(original)
+++ cordova/site/public/docs/es/3.5.0/cordova/storage/parameters/size.html Tue 
Nov 24 01:53:13 2015
@@ -701,7 +701,7 @@
 
 5.4.0
 
-(Latest)
+(Ultima)
 
 
 

Modified: 
cordova/site/public/docs/es/3.5.0/cordova/storage/parameters/version.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/es/3.5.0/cordova/storage/parameters/version.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/es/3.5.0/cordova/storage/parameters/version.html 
(original)
+++ cordova/site/public/docs/es/3.5.0/cordova/storage/parameters/version.html 
Tue Nov 24 01:53:13 2015
@@ -701,7 +701,7 @@
 
 5.4.0
 
-(Latest)
+(Ultima)
 
 
 

Modified: 
cordova/site/public/docs/es/3.5.0/cordova/storage/sqlerror/sqlerror.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/es/3.5.0/cordova/storage/sqlerror/sqlerror.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/es/3.5.0/cordova/storage/sqlerror/sqlerror.html 
(original)
+++ cordova/site/public/docs/es/3.5.0/cordova/storage/sqlerror/sqlerror.html 
Tue Nov 24 01:53:13 2015
@@ -701,7 +701,7 @@
 
 5.4.0
 
-(Latest)
+(Ultima)
 
 
 

Modified: 
cordova/site/public/docs/es/3.5.0/cordova/storage/sqlresultset/sqlresultset.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/es/3.5.0/cordova/storage/sqlresultset/sqlresultset.html?rev=1716010=1716009=1716010=diff
==
--- 
cordova/site/public/docs/es/3.5.0/cordova/storage/sqlresultset/sqlresultset.html
 (original)
+++ 
cordova/site/public/docs/es/3.5.0/cordova/storage/sqlresultset/sqlresultset.html
 Tue Nov 24 01:53:13 2015
@@ -701,7 +701,7 @@
 
 5.4.0
 
-(Latest)
+(Ultima)
 
 
 

Modified: 
cordova/site/public/docs/es/3.5.0/cordova/storage/sqlresultsetrowlist/sqlresultsetrowlist.html
URL: 

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

2015-11-23 Thread dblotsky
Modified: 
cordova/site/public/docs/fr/3.1.0/cordova/compass/compass.watchHeading.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/fr/3.1.0/cordova/compass/compass.watchHeading.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/fr/3.1.0/cordova/compass/compass.watchHeading.html 
(original)
+++ cordova/site/public/docs/fr/3.1.0/cordova/compass/compass.watchHeading.html 
Tue Nov 24 01:53:13 2015
@@ -910,7 +910,7 @@
 
 5.4.0
 
-(Latest)
+(Dernière)
 
 
 

Modified: 
cordova/site/public/docs/fr/3.1.0/cordova/compass/compass.watchHeadingFilter.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/fr/3.1.0/cordova/compass/compass.watchHeadingFilter.html?rev=1716010=1716009=1716010=diff
==
--- 
cordova/site/public/docs/fr/3.1.0/cordova/compass/compass.watchHeadingFilter.html
 (original)
+++ 
cordova/site/public/docs/fr/3.1.0/cordova/compass/compass.watchHeadingFilter.html
 Tue Nov 24 01:53:13 2015
@@ -910,7 +910,7 @@
 
 5.4.0
 
-(Latest)
+(Dernière)
 
 
 

Modified: 
cordova/site/public/docs/fr/3.1.0/cordova/compass/compassError/compassError.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/fr/3.1.0/cordova/compass/compassError/compassError.html?rev=1716010=1716009=1716010=diff
==
--- 
cordova/site/public/docs/fr/3.1.0/cordova/compass/compassError/compassError.html
 (original)
+++ 
cordova/site/public/docs/fr/3.1.0/cordova/compass/compassError/compassError.html
 Tue Nov 24 01:53:13 2015
@@ -910,7 +910,7 @@
 
 5.4.0
 
-(Latest)
+(Dernière)
 
 
 

Modified: 
cordova/site/public/docs/fr/3.1.0/cordova/compass/parameters/compassError.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/fr/3.1.0/cordova/compass/parameters/compassError.html?rev=1716010=1716009=1716010=diff
==
--- 
cordova/site/public/docs/fr/3.1.0/cordova/compass/parameters/compassError.html 
(original)
+++ 
cordova/site/public/docs/fr/3.1.0/cordova/compass/parameters/compassError.html 
Tue Nov 24 01:53:13 2015
@@ -910,7 +910,7 @@
 
 5.4.0
 
-(Latest)
+(Dernière)
 
 
 

Modified: 
cordova/site/public/docs/fr/3.1.0/cordova/compass/parameters/compassHeading.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/fr/3.1.0/cordova/compass/parameters/compassHeading.html?rev=1716010=1716009=1716010=diff
==
--- 
cordova/site/public/docs/fr/3.1.0/cordova/compass/parameters/compassHeading.html
 (original)
+++ 
cordova/site/public/docs/fr/3.1.0/cordova/compass/parameters/compassHeading.html
 Tue Nov 24 01:53:13 2015
@@ -910,7 +910,7 @@
 
 5.4.0
 
-(Latest)
+(Dernière)
 
 
 

Modified: 
cordova/site/public/docs/fr/3.1.0/cordova/compass/parameters/compassOptions.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/fr/3.1.0/cordova/compass/parameters/compassOptions.html?rev=1716010=1716009=1716010=diff
==
--- 
cordova/site/public/docs/fr/3.1.0/cordova/compass/parameters/compassOptions.html
 (original)
+++ 
cordova/site/public/docs/fr/3.1.0/cordova/compass/parameters/compassOptions.html
 Tue Nov 24 01:53:13 2015
@@ -910,7 +910,7 @@
 
 5.4.0
 
-(Latest)
+(Dernière)
 
 
 

Modified: 

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

2015-11-23 Thread dblotsky
Modified: cordova/site/public/docs/ru/3.1.0/guide/hybrid/plugins/index.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/ru/3.1.0/guide/hybrid/plugins/index.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/ru/3.1.0/guide/hybrid/plugins/index.html (original)
+++ cordova/site/public/docs/ru/3.1.0/guide/hybrid/plugins/index.html Tue Nov 
24 01:53:13 2015
@@ -910,7 +910,7 @@
 
 5.4.0
 
-(Latest)
+(Последняя)
 
 
 

Modified: cordova/site/public/docs/ru/3.1.0/guide/hybrid/webviews/index.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/ru/3.1.0/guide/hybrid/webviews/index.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/ru/3.1.0/guide/hybrid/webviews/index.html 
(original)
+++ cordova/site/public/docs/ru/3.1.0/guide/hybrid/webviews/index.html Tue Nov 
24 01:53:13 2015
@@ -910,7 +910,7 @@
 
 5.4.0
 
-(Latest)
+(Последняя)
 
 
 

Modified: cordova/site/public/docs/ru/3.1.0/guide/overview/index.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/ru/3.1.0/guide/overview/index.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/ru/3.1.0/guide/overview/index.html (original)
+++ cordova/site/public/docs/ru/3.1.0/guide/overview/index.html Tue Nov 24 
01:53:13 2015
@@ -911,7 +911,7 @@
 
 5.4.0
 
-(Latest)
+(Последняя)
 
 
 

Modified: cordova/site/public/docs/ru/3.1.0/guide/platforms/android/config.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/ru/3.1.0/guide/platforms/android/config.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/ru/3.1.0/guide/platforms/android/config.html 
(original)
+++ cordova/site/public/docs/ru/3.1.0/guide/platforms/android/config.html Tue 
Nov 24 01:53:13 2015
@@ -910,7 +910,7 @@
 
 5.4.0
 
-(Latest)
+(Последняя)
 
 
 

Modified: cordova/site/public/docs/ru/3.1.0/guide/platforms/android/index.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/ru/3.1.0/guide/platforms/android/index.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/ru/3.1.0/guide/platforms/android/index.html 
(original)
+++ cordova/site/public/docs/ru/3.1.0/guide/platforms/android/index.html Tue 
Nov 24 01:53:13 2015
@@ -910,7 +910,7 @@
 
 5.4.0
 
-(Latest)
+(Последняя)
 
 
 

Modified: cordova/site/public/docs/ru/3.1.0/guide/platforms/android/plugin.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/ru/3.1.0/guide/platforms/android/plugin.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/ru/3.1.0/guide/platforms/android/plugin.html 
(original)
+++ cordova/site/public/docs/ru/3.1.0/guide/platforms/android/plugin.html Tue 
Nov 24 01:53:13 2015
@@ -910,7 +910,7 @@
 
 5.4.0
 
-(Latest)
+(Последняя)
 
 
 

Modified: cordova/site/public/docs/ru/3.1.0/guide/platforms/android/tools.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/ru/3.1.0/guide/platforms/android/tools.html?rev=1716010=1716009=1716010=diff
==
--- 

svn commit: r1716010 [27/30] - in /cordova/site/public: ./ announcements/2013/11/15/ announcements/2013/11/22/ announcements/2013/12/16/ announcements/2014/02/20/ announcements/2014/05/23/ announcemen

2015-11-23 Thread dblotsky
Modified: 
cordova/site/public/docs/ru/5.4.0/platform_plugin_versioning_ref/index.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/ru/5.4.0/platform_plugin_versioning_ref/index.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/ru/5.4.0/platform_plugin_versioning_ref/index.html 
(original)
+++ cordova/site/public/docs/ru/5.4.0/platform_plugin_versioning_ref/index.html 
Tue Nov 24 01:53:13 2015
@@ -792,7 +792,7 @@
 
 5.4.0
 
-(Latest)
+(Последняя)
 
 
 
@@ -848,7 +848,7 @@
 
 5.4.0
 
-(Latest)
+(Последняя)
 
 
 

Modified: cordova/site/public/docs/ru/5.4.0/plugin_ref/plugman.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/ru/5.4.0/plugin_ref/plugman.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/ru/5.4.0/plugin_ref/plugman.html (original)
+++ cordova/site/public/docs/ru/5.4.0/plugin_ref/plugman.html Tue Nov 24 
01:53:13 2015
@@ -792,7 +792,7 @@
 
 5.4.0
 
-(Latest)
+(Последняя)
 
 
 
@@ -848,7 +848,7 @@
 
 5.4.0
 
-(Latest)
+(Последняя)
 
 
 

Modified: cordova/site/public/docs/ru/5.4.0/plugin_ref/spec.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/ru/5.4.0/plugin_ref/spec.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/ru/5.4.0/plugin_ref/spec.html (original)
+++ cordova/site/public/docs/ru/5.4.0/plugin_ref/spec.html Tue Nov 24 01:53:13 
2015
@@ -792,7 +792,7 @@
 
 5.4.0
 
-(Latest)
+(Последняя)
 
 
 
@@ -848,7 +848,7 @@
 
 5.4.0
 
-(Latest)
+(Последняя)
 
 
 

Modified: cordova/site/public/docs/ru/dev/config_ref/images.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/ru/dev/config_ref/images.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/ru/dev/config_ref/images.html (original)
+++ cordova/site/public/docs/ru/dev/config_ref/images.html Tue Nov 24 01:53:13 
2015
@@ -847,7 +847,7 @@
 
 5.4.0
 
-(Latest)
+(Последняя)
 
 
 

Modified: cordova/site/public/docs/ru/dev/config_ref/index.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/ru/dev/config_ref/index.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/ru/dev/config_ref/index.html (original)
+++ cordova/site/public/docs/ru/dev/config_ref/index.html Tue Nov 24 01:53:13 
2015
@@ -847,7 +847,7 @@
 
 5.4.0
 
-(Latest)
+(Последняя)
 
 
 

Modified: cordova/site/public/docs/ru/dev/cordova/events/events.backbutton.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/ru/dev/cordova/events/events.backbutton.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/ru/dev/cordova/events/events.backbutton.html 
(original)
+++ cordova/site/public/docs/ru/dev/cordova/events/events.backbutton.html Tue 
Nov 24 01:53:13 2015
@@ -846,7 +846,7 @@
 
 5.4.0
  

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

2015-11-23 Thread dblotsky
Modified: cordova/site/public/docs/fr/dev/guide/support/index.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/fr/dev/guide/support/index.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/fr/dev/guide/support/index.html (original)
+++ cordova/site/public/docs/fr/dev/guide/support/index.html Tue Nov 24 
01:53:13 2015
@@ -767,7 +767,7 @@
 
 5.4.0
 
-(Latest)
+(Dernière)
 
 
 
@@ -892,835 +892,834 @@
   
 

-Amazon-fireos
+Amazon-fireos
   
-  
+
   
-Android
+Android
   
-  
+
   
-blackberry10
+blackberry10
   
-  
+
   
-Firefox OS
+Firefox OS
   
-  
+
   
-iOS
+iOS
   
-  
+
   
-Ubuntu
+Ubuntu
   
-  
+
   
-wp8(Windows Phone 8)
+wp8(Windows Phone 8)
   
-  
+
   
-Windows(8.0, 8.1, 10,Téléphone 8.1)
+Windows(8.0, 8.1, 10,Téléphone 8.1)
   
-  
+
   
-paciarelli
-
-  
+paciarelli
+   
+
   
 
   CordovaCLI
 
-
+
 
   Mac, Windows, Linux
 
-
+
 
   Mac, Windows, Linux
 
-
+
 
   Mac, Windows
 
-
+
 
   Mac, Windows, Linux
 
-
+
 
   Mac
 
-
+
 
   Ubuntu
 
-
+
 
   Windows
 
-
+
 
 
-
+
 
 
   
-  
+
   
 
   EmbeddedWebView
 
-
+
 
   (voir détails)
 
-
+
 
   (voir détails)
 
-
+
 
 
-
+
 
 
-
+
 
   (voir détails)
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
   
-  
+
   
 
   Plug-inInterface
 
-
+
 
   (voir détails)
 
-
+
 
   (voir détails)
 
-
+
 
   (voir détails)
 
-
+
 
 
-
+
 
   (voir détails)
 
-
+
 
 
-
+
 
   (voir détails)
 
-
+
 
 
-
+
 
 
   
-  
+
   
 
 
-
+
 
   API de la plate-forme
 
   
-  
+
   
 
   https://www.npmjs.com/package/cordova-plugin-device-motion;>Accéléromètre
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
   
-  
+
   
 
   https://www.npmjs.com/package/cordova-plugin-battery-status;>BatteryStatus
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
   * Windows Phone 8.1 seulement
 
-
+
 
 
   
-  
+
   
 
   https://www.npmjs.com/package/cordova-plugin-camera;>Appareil photo
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
   
-  
+
   
 
   https://www.npmjs.com/package/cordova-plugin-media-capture;>Capture
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
   
-  
+
   
 
   https://www.npmjs.com/package/cordova-plugin-device-orientation;>Boussole
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
   (3 G +)
 
-

svn commit: r1716010 [17/30] - in /cordova/site/public: ./ announcements/2013/11/15/ announcements/2013/11/22/ announcements/2013/12/16/ announcements/2014/02/20/ announcements/2014/05/23/ announcemen

2015-11-23 Thread dblotsky
Modified: 
cordova/site/public/docs/fr/3.4.0/guide/platforms/blackberry/tools.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/fr/3.4.0/guide/platforms/blackberry/tools.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/fr/3.4.0/guide/platforms/blackberry/tools.html 
(original)
+++ cordova/site/public/docs/fr/3.4.0/guide/platforms/blackberry/tools.html Tue 
Nov 24 01:53:13 2015
@@ -701,7 +701,7 @@
 
 5.4.0
 
-(Latest)
+(Dernière)
 
 
 

Modified: 
cordova/site/public/docs/fr/3.4.0/guide/platforms/blackberry/upgrading.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/fr/3.4.0/guide/platforms/blackberry/upgrading.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/fr/3.4.0/guide/platforms/blackberry/upgrading.html 
(original)
+++ cordova/site/public/docs/fr/3.4.0/guide/platforms/blackberry/upgrading.html 
Tue Nov 24 01:53:13 2015
@@ -701,7 +701,7 @@
 
 5.4.0
 
-(Latest)
+(Dernière)
 
 
 

Modified: 
cordova/site/public/docs/fr/3.4.0/guide/platforms/blackberry10/config.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/fr/3.4.0/guide/platforms/blackberry10/config.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/fr/3.4.0/guide/platforms/blackberry10/config.html 
(original)
+++ cordova/site/public/docs/fr/3.4.0/guide/platforms/blackberry10/config.html 
Tue Nov 24 01:53:13 2015
@@ -701,7 +701,7 @@
 
 5.4.0
 
-(Latest)
+(Dernière)
 
 
 

Modified: 
cordova/site/public/docs/fr/3.4.0/guide/platforms/blackberry10/index.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/fr/3.4.0/guide/platforms/blackberry10/index.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/fr/3.4.0/guide/platforms/blackberry10/index.html 
(original)
+++ cordova/site/public/docs/fr/3.4.0/guide/platforms/blackberry10/index.html 
Tue Nov 24 01:53:13 2015
@@ -701,7 +701,7 @@
 
 5.4.0
 
-(Latest)
+(Dernière)
 
 
 

Modified: 
cordova/site/public/docs/fr/3.4.0/guide/platforms/blackberry10/plugin.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/fr/3.4.0/guide/platforms/blackberry10/plugin.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/fr/3.4.0/guide/platforms/blackberry10/plugin.html 
(original)
+++ cordova/site/public/docs/fr/3.4.0/guide/platforms/blackberry10/plugin.html 
Tue Nov 24 01:53:13 2015
@@ -701,7 +701,7 @@
 
 5.4.0
 
-(Latest)
+(Dernière)
 
 
 

Modified: 
cordova/site/public/docs/fr/3.4.0/guide/platforms/blackberry10/tools.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/fr/3.4.0/guide/platforms/blackberry10/tools.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/fr/3.4.0/guide/platforms/blackberry10/tools.html 
(original)
+++ cordova/site/public/docs/fr/3.4.0/guide/platforms/blackberry10/tools.html 
Tue Nov 24 01:53:13 2015
@@ -701,7 +701,7 @@
 
 5.4.0
 
-(Latest)
+(Dernière)
 
 
 

Modified: 
cordova/site/public/docs/fr/3.4.0/guide/platforms/blackberry10/upgrading.html
URL: 

svn commit: r1716010 [2/30] - in /cordova/site/public: ./ announcements/2013/11/15/ announcements/2013/11/22/ announcements/2013/12/16/ announcements/2014/02/20/ announcements/2014/05/23/ announcement

2015-11-23 Thread dblotsky

Modified: cordova/site/public/.htaccess
URL: 
http://svn.apache.org/viewvc/cordova/site/public/.htaccess?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/.htaccess (original)
+++ cordova/site/public/.htaccess Tue Nov 24 01:53:13 2015
@@ -14,7 +14,7 @@ RewriteEngine on
 #   301s are for PERMANENT redirects. These are used only for mapping old
 #   docs pages to new docs pages.
 
-# 302:
+# 302 (temp):
 #   docs -> docs/en/latest/
 #   docs/-> docs/en/latest/
 #   docs/XX  -> docs/XX/latest/
@@ -25,7 +25,7 @@ RewriteEngine on
 RewriteRule ^.*docs/$ /docs/en/
 RewriteRule ^.*docs/(\w\w)/$ /docs/$1/latest/ [R=302,L]
 
-# 302:
+# 302 (temp):
 #   docs/XX/latest -> docs/XX/latest/
 RewriteRule ^.*docs/(\w\w)/latest$ /docs/$1/latest/ [R=302,L]
 
@@ -38,11 +38,13 @@ RewriteRule ^.*docs/(\w\w)/latest$ /docs
 #   resource, but the browser won't change the URI (no redirects followed).
 RewriteRule ^.*docs/(\w\w)/latest/(.*)$ /docs/$1/5.4.0/$2 [L]
 
-# 301
-#  docs/XX/edge/ -> docs/xx/dev/
+# 301 (perm):
+#   docs/XX/edge  -> docs/xx/edge/
+#   docs/XX/edge/ -> docs/xx/dev/
+RewriteRule ^.*docs/(\w\w)/edge$ /docs/$1/edge/
 RewriteRule ^.*docs/(\w\w)/edge/(.*)$ /docs/$1/dev/$2 [R=301,L]
 
-# 301:
+# 301 (perm):
 #   old docs pages -> new docs pages (from www/_data/docs-redirects.yml)
 #
 # NOTE:

Modified: cordova/site/public/announcements/2013/11/15/kitkat.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/announcements/2013/11/15/kitkat.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/announcements/2013/11/15/kitkat.html (original)
+++ cordova/site/public/announcements/2013/11/15/kitkat.html Tue Nov 24 
01:53:13 2015
@@ -83,9 +83,9 @@
 
 
 
-
 
-
+
+
 Blog
 
 RSS Feed
@@ -180,7 +180,8 @@ or to directly apply the fix to
 
 
 
-
+
+
 
 
 

Modified: cordova/site/public/announcements/2013/11/22/cordova-320.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/announcements/2013/11/22/cordova-320.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/announcements/2013/11/22/cordova-320.html (original)
+++ cordova/site/public/announcements/2013/11/22/cordova-320.html Tue Nov 24 
01:53:13 2015
@@ -83,9 +83,9 @@
 
 
 
-
 
-
+
+
 Blog
 
 RSS Feed
@@ -352,7 +352,8 @@ cordova platform update android
 
 
 
-
+
+
 
 
 

Modified: cordova/site/public/announcements/2013/12/16/cordova-330.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/announcements/2013/12/16/cordova-330.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/announcements/2013/12/16/cordova-330.html (original)
+++ cordova/site/public/announcements/2013/12/16/cordova-330.html Tue Nov 24 
01:53:13 2015
@@ -83,9 +83,9 @@
 
 
 
-
 
-
+
+
 Blog
 
 RSS Feed
@@ -282,7 +282,8 @@ Read the retrospective here: 

Modified: cordova/site/public/announcements/2014/02/20/cordova-340.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/announcements/2014/02/20/cordova-340.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/announcements/2014/02/20/cordova-340.html (original)
+++ cordova/site/public/announcements/2014/02/20/cordova-340.html Tue Nov 24 
01:53:13 2015
@@ -83,9 +83,9 @@
 
 
 
-
 
-
+
+
 Blog
 
 RSS Feed
@@ -317,7 +317,8 @@ Read the retrospective here: 

Modified: cordova/site/public/announcements/2014/05/23/cordova-350.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/announcements/2014/05/23/cordova-350.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/announcements/2014/05/23/cordova-350.html (original)
+++ cordova/site/public/announcements/2014/05/23/cordova-350.html Tue Nov 24 
01:53:13 2015
@@ -83,9 +83,9 @@
 
 
 
-
 
-
+
+
 Blog
 
 RSS Feed
@@ -446,7 +446,8 @@ cordova platform update android
 
 
 
-
+
+
 
 
 

Modified: cordova/site/public/announcements/2014/08/04/android-351.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/announcements/2014/08/04/android-351.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/announcements/2014/08/04/android-351.html (original)
+++ cordova/site/public/announcements/2014/08/04/android-351.html Tue Nov 24 
01:53:13 2015
@@ -83,9 +83,9 @@
 
 
 
-
 
-
+
+  

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

2015-11-23 Thread dblotsky
Modified: 
cordova/site/public/docs/de/3.1.0/cordova/globalization/globalization.numberToString.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/de/3.1.0/cordova/globalization/globalization.numberToString.html?rev=1716010=1716009=1716010=diff
==
--- 
cordova/site/public/docs/de/3.1.0/cordova/globalization/globalization.numberToString.html
 (original)
+++ 
cordova/site/public/docs/de/3.1.0/cordova/globalization/globalization.numberToString.html
 Tue Nov 24 01:53:13 2015
@@ -958,7 +958,7 @@
 
 5.4.0
 
-(Latest)
+(Letzte)
 
 
 

Modified: 
cordova/site/public/docs/de/3.1.0/cordova/globalization/globalization.stringToDate.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/de/3.1.0/cordova/globalization/globalization.stringToDate.html?rev=1716010=1716009=1716010=diff
==
--- 
cordova/site/public/docs/de/3.1.0/cordova/globalization/globalization.stringToDate.html
 (original)
+++ 
cordova/site/public/docs/de/3.1.0/cordova/globalization/globalization.stringToDate.html
 Tue Nov 24 01:53:13 2015
@@ -958,7 +958,7 @@
 
 5.4.0
 
-(Latest)
+(Letzte)
 
 
 

Modified: 
cordova/site/public/docs/de/3.1.0/cordova/globalization/globalization.stringToNumber.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/de/3.1.0/cordova/globalization/globalization.stringToNumber.html?rev=1716010=1716009=1716010=diff
==
--- 
cordova/site/public/docs/de/3.1.0/cordova/globalization/globalization.stringToNumber.html
 (original)
+++ 
cordova/site/public/docs/de/3.1.0/cordova/globalization/globalization.stringToNumber.html
 Tue Nov 24 01:53:13 2015
@@ -958,7 +958,7 @@
 
 5.4.0
 
-(Latest)
+(Letzte)
 
 
 

Modified: 
cordova/site/public/docs/de/3.1.0/cordova/inappbrowser/inappbrowser.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/de/3.1.0/cordova/inappbrowser/inappbrowser.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/de/3.1.0/cordova/inappbrowser/inappbrowser.html 
(original)
+++ cordova/site/public/docs/de/3.1.0/cordova/inappbrowser/inappbrowser.html 
Tue Nov 24 01:53:13 2015
@@ -959,7 +959,7 @@
 
 5.4.0
 
-(Latest)
+(Letzte)
 
 
 

Modified: 
cordova/site/public/docs/de/3.1.0/cordova/inappbrowser/window.open.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/de/3.1.0/cordova/inappbrowser/window.open.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/de/3.1.0/cordova/inappbrowser/window.open.html 
(original)
+++ cordova/site/public/docs/de/3.1.0/cordova/inappbrowser/window.open.html Tue 
Nov 24 01:53:13 2015
@@ -958,7 +958,7 @@
 
 5.4.0
 
-(Latest)
+(Letzte)
 
 
 

Modified: 
cordova/site/public/docs/de/3.1.0/cordova/media/MediaError/mediaError.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/de/3.1.0/cordova/media/MediaError/mediaError.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/de/3.1.0/cordova/media/MediaError/mediaError.html 
(original)
+++ cordova/site/public/docs/de/3.1.0/cordova/media/MediaError/mediaError.html 
Tue Nov 24 01:53:13 2015
@@ -958,7 +958,7 @@
 
 5.4.0
 
-(Latest)
+(Letzte)
 
 
 

Modified: 

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

2015-11-23 Thread dblotsky
Modified: 
cordova/site/public/docs/ru/3.1.0/cordova/events/events.batterylow.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/ru/3.1.0/cordova/events/events.batterylow.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/ru/3.1.0/cordova/events/events.batterylow.html 
(original)
+++ cordova/site/public/docs/ru/3.1.0/cordova/events/events.batterylow.html Tue 
Nov 24 01:53:13 2015
@@ -910,7 +910,7 @@
 
 5.4.0
 
-(Latest)
+(Последняя)
 
 
 

Modified: 
cordova/site/public/docs/ru/3.1.0/cordova/events/events.batterystatus.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/ru/3.1.0/cordova/events/events.batterystatus.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/ru/3.1.0/cordova/events/events.batterystatus.html 
(original)
+++ cordova/site/public/docs/ru/3.1.0/cordova/events/events.batterystatus.html 
Tue Nov 24 01:53:13 2015
@@ -910,7 +910,7 @@
 
 5.4.0
 
-(Latest)
+(Последняя)
 
 
 

Modified: 
cordova/site/public/docs/ru/3.1.0/cordova/events/events.deviceready.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/ru/3.1.0/cordova/events/events.deviceready.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/ru/3.1.0/cordova/events/events.deviceready.html 
(original)
+++ cordova/site/public/docs/ru/3.1.0/cordova/events/events.deviceready.html 
Tue Nov 24 01:53:13 2015
@@ -910,7 +910,7 @@
 
 5.4.0
 
-(Latest)
+(Последняя)
 
 
 

Modified: 
cordova/site/public/docs/ru/3.1.0/cordova/events/events.endcallbutton.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/ru/3.1.0/cordova/events/events.endcallbutton.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/ru/3.1.0/cordova/events/events.endcallbutton.html 
(original)
+++ cordova/site/public/docs/ru/3.1.0/cordova/events/events.endcallbutton.html 
Tue Nov 24 01:53:13 2015
@@ -910,7 +910,7 @@
 
 5.4.0
 
-(Latest)
+(Последняя)
 
 
 

Modified: cordova/site/public/docs/ru/3.1.0/cordova/events/events.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/ru/3.1.0/cordova/events/events.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/ru/3.1.0/cordova/events/events.html (original)
+++ cordova/site/public/docs/ru/3.1.0/cordova/events/events.html Tue Nov 24 
01:53:13 2015
@@ -911,7 +911,7 @@
 
 5.4.0
 
-(Latest)
+(Последняя)
 
 
 

Modified: 
cordova/site/public/docs/ru/3.1.0/cordova/events/events.menubutton.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/ru/3.1.0/cordova/events/events.menubutton.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/ru/3.1.0/cordova/events/events.menubutton.html 
(original)
+++ cordova/site/public/docs/ru/3.1.0/cordova/events/events.menubutton.html Tue 
Nov 24 01:53:13 2015
@@ -910,7 +910,7 @@
 
 5.4.0
 
-(Latest)
+(Последняя)
 
 
 

Modified: cordova/site/public/docs/ru/3.1.0/cordova/events/events.offline.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/ru/3.1.0/cordova/events/events.offline.html?rev=1716010=1716009=1716010=diff

svn commit: r1716010 [24/30] - in /cordova/site/public: ./ announcements/2013/11/15/ announcements/2013/11/22/ announcements/2013/12/16/ announcements/2014/02/20/ announcements/2014/05/23/ announcemen

2015-11-23 Thread dblotsky
Modified: cordova/site/public/docs/ru/3.4.0/index.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/ru/3.4.0/index.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/ru/3.4.0/index.html (original)
+++ cordova/site/public/docs/ru/3.4.0/index.html Tue Nov 24 01:53:13 2015
@@ -765,7 +765,7 @@
 
 5.4.0
 
-(Latest)
+(Последняя)
 
 
 

Modified: cordova/site/public/docs/ru/3.4.0/page_index.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/ru/3.4.0/page_index.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/ru/3.4.0/page_index.html (original)
+++ cordova/site/public/docs/ru/3.4.0/page_index.html Tue Nov 24 01:53:13 2015
@@ -766,7 +766,7 @@
 
 5.4.0
 
-(Latest)
+(Последняя)
 
 
 

Modified: cordova/site/public/docs/ru/3.4.0/plugin_ref/plugman.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/ru/3.4.0/plugin_ref/plugman.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/ru/3.4.0/plugin_ref/plugman.html (original)
+++ cordova/site/public/docs/ru/3.4.0/plugin_ref/plugman.html Tue Nov 24 
01:53:13 2015
@@ -766,7 +766,7 @@
 
 5.4.0
 
-(Latest)
+(Последняя)
 
 
 

Modified: cordova/site/public/docs/ru/3.4.0/plugin_ref/spec.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/ru/3.4.0/plugin_ref/spec.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/ru/3.4.0/plugin_ref/spec.html (original)
+++ cordova/site/public/docs/ru/3.4.0/plugin_ref/spec.html Tue Nov 24 01:53:13 
2015
@@ -765,7 +765,7 @@
 
 5.4.0
 
-(Latest)
+(Последняя)
 
 
 

Modified: cordova/site/public/docs/ru/3.5.0/config_ref/images.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/ru/3.5.0/config_ref/images.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/ru/3.5.0/config_ref/images.html (original)
+++ cordova/site/public/docs/ru/3.5.0/config_ref/images.html Tue Nov 24 
01:53:13 2015
@@ -766,7 +766,7 @@
 
 5.4.0
 
-(Latest)
+(Последняя)
 
 
 

Modified: cordova/site/public/docs/ru/3.5.0/config_ref/index.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/ru/3.5.0/config_ref/index.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/ru/3.5.0/config_ref/index.html (original)
+++ cordova/site/public/docs/ru/3.5.0/config_ref/index.html Tue Nov 24 01:53:13 
2015
@@ -766,7 +766,7 @@
 
 5.4.0
 
-(Latest)
+(Последняя)
 
 
 

Modified: 
cordova/site/public/docs/ru/3.5.0/cordova/events/events.backbutton.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/ru/3.5.0/cordova/events/events.backbutton.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/ru/3.5.0/cordova/events/events.backbutton.html 
(original)
+++ cordova/site/public/docs/ru/3.5.0/cordova/events/events.backbutton.html Tue 
Nov 24 01:53:13 2015
@@ -765,7 +765,7 @@
 
 5.4.0
 
-(Latest)
+

svn commit: r1716010 [28/30] - in /cordova/site/public: ./ announcements/2013/11/15/ announcements/2013/11/22/ announcements/2013/12/16/ announcements/2014/02/20/ announcements/2014/05/23/ announcemen

2015-11-23 Thread dblotsky
Modified: cordova/site/public/docs/sl/dev/guide/support/index.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/sl/dev/guide/support/index.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/sl/dev/guide/support/index.html (original)
+++ cordova/site/public/docs/sl/dev/guide/support/index.html Tue Nov 24 
01:53:13 2015
@@ -882,738 +882,737 @@
   
 

-Amazon-fireos
+Amazon-fireos
   
-  
+
   
-Android
+Android
   
-  
+
   
-blackberry10
+blackberry10
   
-  
+
   
-IOS
+IOS
   
-  
+
   
-Ubuntu
+Ubuntu
   
-  
+
   
-WP7 (WindowsTelefon 7)
+WP7 (WindowsTelefon 7)
   
-  
+
   
-WP8 (WindowsTelefon 8)
+WP8 (WindowsTelefon 8)
   
-  
+
   
-Win8(Windows 8)
+Win8(Windows 8)
   
-  
-  
-  
+
+  
+
   
-tizen
-
-  
+tizen
+   
+
   
 
   CordovaCLI
 
-
+
 
   Mac, Windows, Linux
 
-
+
 
   Mac, Windows, Linux
 
-
+
 
   Mac, Windows
 
-
+
 
   Mac
 
-
+
 
   Ubuntu
 
-
+
 
   Windows
 
-
+
 
   Windows
 
-
+
 
 
-
+
 
-
+
 
 
   
-  
+
   
 
   VgrajeniSpletni 
pogled
 
-
+
 
   (glej 
podrobnosti)
 
-
+
 
   (glej podrobnosti)
 
-
+
 
 
-
+
 
   (glej podrobnosti)
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
-
+
 
 
   
-  
+
   
 
   Plug-inVmesnik
 
-
+
 
   (glej 
podrobnosti)
 
-
+
 
   (glej 
podrobnosti)
 
-
+
 
   (glej 
podrobnosti)
 
-
+
 
   (glej podrobnosti)
 
-
+
 
 
-
+
 
   (glej podrobnosti)
 
-
+
 
   (glej podrobnosti)
 
-
+
 
 
-
+
 
-
+
 
 
   
-  
+
   
 
 
-
+
 
   Platforma APIs
 
   
-  
+
   
 
   Accelerometer
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
-
+
 
 
   
-  
+
   
 
   Kamero
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
-
+
 
 
   
-  
+
   
 
   Zajem
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
-
+
 
 
   
-  
+
   
 
   Kompas
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
   (3GS +)
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
-
+
 
 
   
-  
+
   
 
   Povezave
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
-
+
 
 
   
-  
+
   
 
   Stiki
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 

svn commit: r1716010 [18/30] - in /cordova/site/public: ./ announcements/2013/11/15/ announcements/2013/11/22/ announcements/2013/12/16/ announcements/2014/02/20/ announcements/2014/05/23/ announcemen

2015-11-23 Thread dblotsky
Modified: 
cordova/site/public/docs/fr/5.4.0/cordova/events/events.endcallbutton.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/fr/5.4.0/cordova/events/events.endcallbutton.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/fr/5.4.0/cordova/events/events.endcallbutton.html 
(original)
+++ cordova/site/public/docs/fr/5.4.0/cordova/events/events.endcallbutton.html 
Tue Nov 24 01:53:13 2015
@@ -711,7 +711,7 @@
 
 5.4.0
 
-(Latest)
+(Dernière)
 
 
 
@@ -767,7 +767,7 @@
 
 5.4.0
 
-(Latest)
+(Dernière)
 
 
 

Modified: cordova/site/public/docs/fr/5.4.0/cordova/events/events.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/fr/5.4.0/cordova/events/events.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/fr/5.4.0/cordova/events/events.html (original)
+++ cordova/site/public/docs/fr/5.4.0/cordova/events/events.html Tue Nov 24 
01:53:13 2015
@@ -711,7 +711,7 @@
 
 5.4.0
 
-(Latest)
+(Dernière)
 
 
 
@@ -767,7 +767,7 @@
 
 5.4.0
 
-(Latest)
+(Dernière)
 
 
 

Modified: 
cordova/site/public/docs/fr/5.4.0/cordova/events/events.menubutton.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/fr/5.4.0/cordova/events/events.menubutton.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/fr/5.4.0/cordova/events/events.menubutton.html 
(original)
+++ cordova/site/public/docs/fr/5.4.0/cordova/events/events.menubutton.html Tue 
Nov 24 01:53:13 2015
@@ -711,7 +711,7 @@
 
 5.4.0
 
-(Latest)
+(Dernière)
 
 
 
@@ -767,7 +767,7 @@
 
 5.4.0
 
-(Latest)
+(Dernière)
 
 
 

Modified: cordova/site/public/docs/fr/5.4.0/cordova/events/events.pause.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/fr/5.4.0/cordova/events/events.pause.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/fr/5.4.0/cordova/events/events.pause.html 
(original)
+++ cordova/site/public/docs/fr/5.4.0/cordova/events/events.pause.html Tue Nov 
24 01:53:13 2015
@@ -711,7 +711,7 @@
 
 5.4.0
 
-(Latest)
+(Dernière)
 
 
 
@@ -767,7 +767,7 @@
 
 5.4.0
 
-(Latest)
+(Dernière)
 
 
 

Modified: cordova/site/public/docs/fr/5.4.0/cordova/events/events.resume.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/fr/5.4.0/cordova/events/events.resume.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/fr/5.4.0/cordova/events/events.resume.html 
(original)
+++ cordova/site/public/docs/fr/5.4.0/cordova/events/events.resume.html Tue Nov 
24 01:53:13 2015
@@ -711,7 +711,7 @@
 
 5.4.0
 
-(Latest)
+(Dernière)
 
 
 
@@ -767,7 +767,7 @@
 
 5.4.0
 
-(Latest)
+(Dernière)
 
 
 


svn commit: r1716010 [26/30] - in /cordova/site/public: ./ announcements/2013/11/15/ announcements/2013/11/22/ announcements/2013/12/16/ announcements/2014/02/20/ announcements/2014/05/23/ announcemen

2015-11-23 Thread dblotsky
Modified: cordova/site/public/docs/ru/5.1.1/index.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/ru/5.1.1/index.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/ru/5.1.1/index.html (original)
+++ cordova/site/public/docs/ru/5.1.1/index.html Tue Nov 24 01:53:13 2015
@@ -837,7 +837,7 @@
 
 5.4.0
 
-(Latest)
+(Последняя)
 
 
 

Modified: cordova/site/public/docs/ru/5.1.1/page_index.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/ru/5.1.1/page_index.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/ru/5.1.1/page_index.html (original)
+++ cordova/site/public/docs/ru/5.1.1/page_index.html Tue Nov 24 01:53:13 2015
@@ -838,7 +838,7 @@
 
 5.4.0
 
-(Latest)
+(Последняя)
 
 
 

Modified: 
cordova/site/public/docs/ru/5.1.1/platform_plugin_versioning_ref/index.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/ru/5.1.1/platform_plugin_versioning_ref/index.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/ru/5.1.1/platform_plugin_versioning_ref/index.html 
(original)
+++ cordova/site/public/docs/ru/5.1.1/platform_plugin_versioning_ref/index.html 
Tue Nov 24 01:53:13 2015
@@ -838,7 +838,7 @@
 
 5.4.0
 
-(Latest)
+(Последняя)
 
 
 

Modified: cordova/site/public/docs/ru/5.1.1/plugin_ref/plugman.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/ru/5.1.1/plugin_ref/plugman.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/ru/5.1.1/plugin_ref/plugman.html (original)
+++ cordova/site/public/docs/ru/5.1.1/plugin_ref/plugman.html Tue Nov 24 
01:53:13 2015
@@ -838,7 +838,7 @@
 
 5.4.0
 
-(Latest)
+(Последняя)
 
 
 

Modified: cordova/site/public/docs/ru/5.1.1/plugin_ref/spec.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/ru/5.1.1/plugin_ref/spec.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/ru/5.1.1/plugin_ref/spec.html (original)
+++ cordova/site/public/docs/ru/5.1.1/plugin_ref/spec.html Tue Nov 24 01:53:13 
2015
@@ -837,7 +837,7 @@
 
 5.4.0
 
-(Latest)
+(Последняя)
 
 
 

Modified: cordova/site/public/docs/ru/5.4.0/config_ref/images.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/ru/5.4.0/config_ref/images.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/ru/5.4.0/config_ref/images.html (original)
+++ cordova/site/public/docs/ru/5.4.0/config_ref/images.html Tue Nov 24 
01:53:13 2015
@@ -792,7 +792,7 @@
 
 5.4.0
 
-(Latest)
+(Последняя)
 
 
 
@@ -848,7 +848,7 @@
 
 5.4.0
 
-(Latest)
+(Последняя)
 
 
 

Modified: cordova/site/public/docs/ru/5.4.0/config_ref/index.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/ru/5.4.0/config_ref/index.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/ru/5.4.0/config_ref/index.html (original)
+++ 

svn commit: r1716010 [25/30] - in /cordova/site/public: ./ announcements/2013/11/15/ announcements/2013/11/22/ announcements/2013/12/16/ announcements/2014/02/20/ announcements/2014/05/23/ announcemen

2015-11-23 Thread dblotsky
Modified: 
cordova/site/public/docs/ru/5.0.0/guide/platforms/android/upgrading.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/ru/5.0.0/guide/platforms/android/upgrading.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/ru/5.0.0/guide/platforms/android/upgrading.html 
(original)
+++ cordova/site/public/docs/ru/5.0.0/guide/platforms/android/upgrading.html 
Tue Nov 24 01:53:13 2015
@@ -773,7 +773,7 @@
 
 5.4.0
 
-(Latest)
+(Последняя)
 
 
 

Modified: cordova/site/public/docs/ru/5.0.0/guide/platforms/android/webview.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/ru/5.0.0/guide/platforms/android/webview.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/ru/5.0.0/guide/platforms/android/webview.html 
(original)
+++ cordova/site/public/docs/ru/5.0.0/guide/platforms/android/webview.html Tue 
Nov 24 01:53:13 2015
@@ -773,7 +773,7 @@
 
 5.4.0
 
-(Latest)
+(Последняя)
 
 
 

Modified: 
cordova/site/public/docs/ru/5.0.0/guide/platforms/blackberry/config.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/ru/5.0.0/guide/platforms/blackberry/config.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/ru/5.0.0/guide/platforms/blackberry/config.html 
(original)
+++ cordova/site/public/docs/ru/5.0.0/guide/platforms/blackberry/config.html 
Tue Nov 24 01:53:13 2015
@@ -773,7 +773,7 @@
 
 5.4.0
 
-(Latest)
+(Последняя)
 
 
 

Modified: 
cordova/site/public/docs/ru/5.0.0/guide/platforms/blackberry/index.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/ru/5.0.0/guide/platforms/blackberry/index.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/ru/5.0.0/guide/platforms/blackberry/index.html 
(original)
+++ cordova/site/public/docs/ru/5.0.0/guide/platforms/blackberry/index.html Tue 
Nov 24 01:53:13 2015
@@ -773,7 +773,7 @@
 
 5.4.0
 
-(Latest)
+(Последняя)
 
 
 

Modified: 
cordova/site/public/docs/ru/5.0.0/guide/platforms/blackberry/plugin.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/ru/5.0.0/guide/platforms/blackberry/plugin.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/ru/5.0.0/guide/platforms/blackberry/plugin.html 
(original)
+++ cordova/site/public/docs/ru/5.0.0/guide/platforms/blackberry/plugin.html 
Tue Nov 24 01:53:13 2015
@@ -773,7 +773,7 @@
 
 5.4.0
 
-(Latest)
+(Последняя)
 
 
 

Modified: 
cordova/site/public/docs/ru/5.0.0/guide/platforms/blackberry/tools.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/ru/5.0.0/guide/platforms/blackberry/tools.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/ru/5.0.0/guide/platforms/blackberry/tools.html 
(original)
+++ cordova/site/public/docs/ru/5.0.0/guide/platforms/blackberry/tools.html Tue 
Nov 24 01:53:13 2015
@@ -773,7 +773,7 @@
 
 5.4.0
 
-(Latest)
+(Последняя)
 
 
 

Modified: 
cordova/site/public/docs/ru/5.0.0/guide/platforms/blackberry/upgrade.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/ru/5.0.0/guide/platforms/blackberry/upgrade.html?rev=1716010=1716009=1716010=diff

svn commit: r1716010 [29/30] - in /cordova/site/public: ./ announcements/2013/11/15/ announcements/2013/11/22/ announcements/2013/12/16/ announcements/2014/02/20/ announcements/2014/05/23/ announcemen

2015-11-23 Thread dblotsky
Modified: cordova/site/public/sitemap.xml
URL: 
http://svn.apache.org/viewvc/cordova/site/public/sitemap.xml?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/sitemap.xml (original)
+++ cordova/site/public/sitemap.xml Tue Nov 24 01:53:13 2015
@@ -2,49254 +2,69471 @@
 
 
 
https://cordova.apache.org/blog/2013/07/11/cordova-has-a-blog.html
-2015-11-19T12:12:40-08:00
+2015-11-23T15:30:29-08:00
 
 
 
https://cordova.apache.org/blog/releases/2013/07/23/cordova-3.html
-2015-11-19T12:12:40-08:00
+2015-11-23T15:30:29-08:00
 
 
 
https://cordova.apache.org/blog/2013/08/12/crowdintranslation.html
-2015-11-19T12:12:40-08:00
+2015-11-23T15:30:29-08:00
 
 
 https://cordova.apache.org/news/2013/09/06/last-week.html
-2015-11-19T12:12:40-08:00
+2015-11-23T15:30:29-08:00
 
 
 https://cordova.apache.org/news/2013/09/13/last-week.html
-2015-11-19T12:12:40-08:00
+2015-11-23T15:30:29-08:00
 
 
 
https://cordova.apache.org/news/2013/10/01/plugins-release.html
-2015-11-19T12:12:40-08:00
+2015-11-23T15:30:29-08:00
 
 
 
https://cordova.apache.org/blog/releases/2013/10/02/cordova-31.html
-2015-11-19T12:12:40-08:00
+2015-11-23T15:30:29-08:00
 
 
 
https://cordova.apache.org/news/2013/10/10/plugins-release.html
-2015-11-19T12:12:40-08:00
+2015-11-23T15:30:29-08:00
 
 
 
https://cordova.apache.org/news/2013/10/21/cordova-registry.html
-2015-11-19T12:12:40-08:00
+2015-11-23T15:30:29-08:00
 
 
 
https://cordova.apache.org/news/2013/10/28/plugins-release.html
-2015-11-19T12:12:40-08:00
+2015-11-23T15:30:29-08:00
 
 
 
https://cordova.apache.org/blog/releases/2013/11/06/cordova-291.html
-2015-11-19T12:12:40-08:00
+2015-11-23T15:30:29-08:00
 
 
 
 
https://cordova.apache.org/announcements/releases/2013/11/13/cordova-320rc1.html
 
-2015-11-19T12:12:40-08:00
+2015-11-23T15:30:29-08:00
 
 
 
https://cordova.apache.org/announcements/2013/11/15/kitkat.html
-2015-11-19T12:12:40-08:00
+2015-11-23T15:30:29-08:00
 
 
 
https://cordova.apache.org/announcements/2013/11/22/cordova-320.html
-2015-11-19T12:12:40-08:00
+2015-11-23T15:30:29-08:00
 
 
 
https://cordova.apache.org/news/2013/12/04/plugins-release.html
-2015-11-19T12:12:40-08:00
+2015-11-23T15:30:29-08:00
 
 
 
 
https://cordova.apache.org/announcements/releases/2013/12/06/cordova-330rc1.html
 
-2015-11-19T12:12:40-08:00
+2015-11-23T15:30:29-08:00
 
 
 
https://cordova.apache.org/announcements/2013/12/16/cordova-330.html
-2015-11-19T12:12:40-08:00
+2015-11-23T15:30:29-08:00
 
 
 
https://cordova.apache.org/news/2014/01/02/plugins-release.html
-2015-11-19T12:12:40-08:00
+2015-11-23T15:30:29-08:00
 
 
 
https://cordova.apache.org/news/2014/01/31/tools-release.html
-2015-11-19T12:12:40-08:00
+2015-11-23T15:30:29-08:00
 
 
 
https://cordova.apache.org/news/2014/02/10/plugins-release.html
-2015-11-19T12:12:40-08:00
+2015-11-23T15:30:29-08:00
 
 
 
https://cordova.apache.org/announcements/2014/02/20/cordova-340.html
-2015-11-19T12:12:40-08:00
+2015-11-23T15:30:29-08:00
 
 
 
https://cordova.apache.org/news/2014/03/03/plugins-release.html
-2015-11-19T12:12:40-08:00
+2015-11-23T15:30:29-08:00
 
 
 
https://cordova.apache.org/news/2014/03/05/tools-release.html
-2015-11-19T12:12:40-08:00
+2015-11-23T15:30:29-08:00
 
 
 
https://cordova.apache.org/news/2014/04/09/tools-ios-release.html
-2015-11-19T12:12:40-08:00
+2015-11-23T15:30:29-08:00
 
 
 
https://cordova.apache.org/news/2014/04/23/plugins.release.html
-2015-11-19T12:12:40-08:00
+2015-11-23T15:30:29-08:00
 
 
 
https://cordova.apache.org/announcements/2014/05/23/cordova-350.html
-2015-11-19T12:12:40-08:00
+2015-11-23T15:30:29-08:00
 
 
 
https://cordova.apache.org/news/2014/06/12/plugins-release.html
-2015-11-19T12:12:40-08:00
+2015-11-23T15:30:29-08:00
 
 
 
https://cordova.apache.org/news/2014/07/08/plugins-release.html
-2015-11-19T12:12:40-08:00
+2015-11-23T15:30:29-08:00
 
 
 
https://cordova.apache.org/news/2014/07/10/tools-release.html
-2015-11-19T12:12:40-08:00
+2015-11-23T15:30:29-08:00
 
 
 

svn commit: r1716010 [6/30] - in /cordova/site/public: ./ announcements/2013/11/15/ announcements/2013/11/22/ announcements/2013/12/16/ announcements/2014/02/20/ announcements/2014/05/23/ announcement

2015-11-23 Thread dblotsky
Modified: cordova/site/public/docs/de/3.4.0/cordova/storage/parameters/size.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/de/3.4.0/cordova/storage/parameters/size.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/de/3.4.0/cordova/storage/parameters/size.html 
(original)
+++ cordova/site/public/docs/de/3.4.0/cordova/storage/parameters/size.html Tue 
Nov 24 01:53:13 2015
@@ -765,7 +765,7 @@
 
 5.4.0
 
-(Latest)
+(Letzte)
 
 
 

Modified: 
cordova/site/public/docs/de/3.4.0/cordova/storage/parameters/version.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/de/3.4.0/cordova/storage/parameters/version.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/de/3.4.0/cordova/storage/parameters/version.html 
(original)
+++ cordova/site/public/docs/de/3.4.0/cordova/storage/parameters/version.html 
Tue Nov 24 01:53:13 2015
@@ -765,7 +765,7 @@
 
 5.4.0
 
-(Latest)
+(Letzte)
 
 
 

Modified: 
cordova/site/public/docs/de/3.4.0/cordova/storage/sqlerror/sqlerror.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/de/3.4.0/cordova/storage/sqlerror/sqlerror.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/de/3.4.0/cordova/storage/sqlerror/sqlerror.html 
(original)
+++ cordova/site/public/docs/de/3.4.0/cordova/storage/sqlerror/sqlerror.html 
Tue Nov 24 01:53:13 2015
@@ -765,7 +765,7 @@
 
 5.4.0
 
-(Latest)
+(Letzte)
 
 
 

Modified: 
cordova/site/public/docs/de/3.4.0/cordova/storage/sqlresultset/sqlresultset.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/de/3.4.0/cordova/storage/sqlresultset/sqlresultset.html?rev=1716010=1716009=1716010=diff
==
--- 
cordova/site/public/docs/de/3.4.0/cordova/storage/sqlresultset/sqlresultset.html
 (original)
+++ 
cordova/site/public/docs/de/3.4.0/cordova/storage/sqlresultset/sqlresultset.html
 Tue Nov 24 01:53:13 2015
@@ -765,7 +765,7 @@
 
 5.4.0
 
-(Latest)
+(Letzte)
 
 
 

Modified: 
cordova/site/public/docs/de/3.4.0/cordova/storage/sqlresultsetrowlist/sqlresultsetrowlist.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/de/3.4.0/cordova/storage/sqlresultsetrowlist/sqlresultsetrowlist.html?rev=1716010=1716009=1716010=diff
==
--- 
cordova/site/public/docs/de/3.4.0/cordova/storage/sqlresultsetrowlist/sqlresultsetrowlist.html
 (original)
+++ 
cordova/site/public/docs/de/3.4.0/cordova/storage/sqlresultsetrowlist/sqlresultsetrowlist.html
 Tue Nov 24 01:53:13 2015
@@ -765,7 +765,7 @@
 
 5.4.0
 
-(Latest)
+(Letzte)
 
 
 

Modified: 
cordova/site/public/docs/de/3.4.0/cordova/storage/sqltransaction/sqltransaction.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/de/3.4.0/cordova/storage/sqltransaction/sqltransaction.html?rev=1716010=1716009=1716010=diff
==
--- 
cordova/site/public/docs/de/3.4.0/cordova/storage/sqltransaction/sqltransaction.html
 (original)
+++ 
cordova/site/public/docs/de/3.4.0/cordova/storage/sqltransaction/sqltransaction.html
 Tue Nov 24 01:53:13 2015
@@ -765,7 +765,7 @@
 
 5.4.0
 
-(Latest)
+(Letzte)
 
 
 

Modified: cordova/site/public/docs/de/3.4.0/cordova/storage/storage.html
URL: 

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

2015-11-23 Thread dblotsky
Modified: 
cordova/site/public/docs/es/3.1.0/guide/platforms/blackberry10/plugin.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/es/3.1.0/guide/platforms/blackberry10/plugin.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/es/3.1.0/guide/platforms/blackberry10/plugin.html 
(original)
+++ cordova/site/public/docs/es/3.1.0/guide/platforms/blackberry10/plugin.html 
Tue Nov 24 01:53:13 2015
@@ -942,7 +942,7 @@
 
 5.4.0
 
-(Latest)
+(Ultima)
 
 
 

Modified: 
cordova/site/public/docs/es/3.1.0/guide/platforms/blackberry10/tools.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/es/3.1.0/guide/platforms/blackberry10/tools.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/es/3.1.0/guide/platforms/blackberry10/tools.html 
(original)
+++ cordova/site/public/docs/es/3.1.0/guide/platforms/blackberry10/tools.html 
Tue Nov 24 01:53:13 2015
@@ -942,7 +942,7 @@
 
 5.4.0
 
-(Latest)
+(Ultima)
 
 
 

Modified: 
cordova/site/public/docs/es/3.1.0/guide/platforms/blackberry10/upgrading.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/es/3.1.0/guide/platforms/blackberry10/upgrading.html?rev=1716010=1716009=1716010=diff
==
--- 
cordova/site/public/docs/es/3.1.0/guide/platforms/blackberry10/upgrading.html 
(original)
+++ 
cordova/site/public/docs/es/3.1.0/guide/platforms/blackberry10/upgrading.html 
Tue Nov 24 01:53:13 2015
@@ -942,7 +942,7 @@
 
 5.4.0
 
-(Latest)
+(Ultima)
 
 
 

Modified: 
cordova/site/public/docs/es/3.1.0/guide/platforms/firefoxos/config.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/es/3.1.0/guide/platforms/firefoxos/config.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/es/3.1.0/guide/platforms/firefoxos/config.html 
(original)
+++ cordova/site/public/docs/es/3.1.0/guide/platforms/firefoxos/config.html Tue 
Nov 24 01:53:13 2015
@@ -942,7 +942,7 @@
 
 5.4.0
 
-(Latest)
+(Ultima)
 
 
 

Modified: cordova/site/public/docs/es/3.1.0/guide/platforms/index.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/es/3.1.0/guide/platforms/index.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/es/3.1.0/guide/platforms/index.html (original)
+++ cordova/site/public/docs/es/3.1.0/guide/platforms/index.html Tue Nov 24 
01:53:13 2015
@@ -943,7 +943,7 @@
 
 5.4.0
 
-(Latest)
+(Ultima)
 
 
 

Modified: cordova/site/public/docs/es/3.1.0/guide/platforms/ios/config.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/es/3.1.0/guide/platforms/ios/config.html?rev=1716010=1716009=1716010=diff
==
--- cordova/site/public/docs/es/3.1.0/guide/platforms/ios/config.html (original)
+++ cordova/site/public/docs/es/3.1.0/guide/platforms/ios/config.html Tue Nov 
24 01:53:13 2015
@@ -942,7 +942,7 @@
 
 5.4.0
 
-(Latest)
+(Ultima)
 
 
 

Modified: cordova/site/public/docs/es/3.1.0/guide/platforms/ios/index.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/es/3.1.0/guide/platforms/ios/index.html?rev=1716010=1716009=1716010=diff
==
--- 

docs commit: Adding comments to Makefile.

2015-11-20 Thread dblotsky
Repository: cordova-docs
Updated Branches:
  refs/heads/master 95c3b8c86 -> a5361d0e5


Adding comments to Makefile.


Project: http://git-wip-us.apache.org/repos/asf/cordova-docs/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-docs/commit/a5361d0e
Tree: http://git-wip-us.apache.org/repos/asf/cordova-docs/tree/a5361d0e
Diff: http://git-wip-us.apache.org/repos/asf/cordova-docs/diff/a5361d0e

Branch: refs/heads/master
Commit: a5361d0e51dbdb1b4bb9f3b159dc4666b00ee178
Parents: 95c3b8c
Author: Dmitry Blotsky 
Authored: Fri Nov 20 14:04:15 2015 -0800
Committer: Dmitry Blotsky 
Committed: Fri Nov 20 14:04:15 2015 -0800

--
 Makefile | 12 +---
 1 file changed, 9 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/a5361d0e/Makefile
--
diff --git a/Makefile b/Makefile
index 15c09c8..e750eee 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@
 # Variable Reference:
 #  
https://www.gnu.org/software/make/manual/html_node/Automatic-Variables.html
 
-# config
+# Makefile's own config
 ifeq ($(OS),Windows_NT)
 WINDOWS=1
 endif
@@ -51,6 +51,7 @@ SASSC  = $(NODE_BIN_DIR)/node-sass
 BROWSERIFY = $(NODE_BIN_DIR)/browserify
 UGLIFY = $(NODE_BIN_DIR)/uglifyjs
 
+# replace slashes in executables on Windows
 ifdef WINDOWS
 GULP   := $(subst /,\,$(GULP))
 LESSC  := $(subst /,\,$(LESSC))
@@ -68,7 +69,8 @@ PLUGINS_SRC = $(PLUGINS_SRC_DIR)/app.js
 
 # NOTE:
 #  the .scss files are separate because they combine into MAIN_STYLE_FILE,
-#  which names them on its own, and the SCSS compiler takes care of them
+#  which includes them on its own, and the SCSS compiler takes care of 
them;
+#  because of this, there is also no .scss -> .css pattern rule
 ifdef WINDOWS
 SCSS_SRC   = $(shell cd $(CSS_SRC_DIR) && dir *.scss /S /B)
 STYLES_SRC = $(shell cd $(CSS_SRC_DIR) && dir *.less *.css /S /B)
@@ -139,9 +141,11 @@ plugins: $(PLUGINS_APP)
 dev: JEKYLL_CONFIGS += $(DEV_CONFIG)
 dev: JEKYLL_FLAGS += --trace
 dev: DEBUG = 1
+
 prod: JEKYLL_CONFIGS += $(PROD_CONFIG)
 prod: JEKYLL_FLAGS +=
 prod: DEBUG =
+
 dev prod: build
 
 ifdef NODOCS
@@ -160,6 +164,8 @@ serve:
cd $(DEV_DIR) && python -m SimpleHTTPServer 8000
 
 # real targets
+# NOTE:
+#  the ">>" operator appends to a file in both CMD and SH
 $(PLUGINS_APP): $(PLUGINS_SRC) Makefile
echo ---> $@
echo --->> $@
@@ -208,7 +214,7 @@ clean:
$(RM) $(PLUGINS_APP)
$(RM) -r $(CSS_DEST_DIR)
 
-# I couldn't find a way to do this on Windows
+# I couldn't find a way to do this nicely on Windows
 ifdef WINDOWS
 else
find . -name *.pyc -delete


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



[3/4] docs commit: Removing teletype font from support table header.

2015-11-20 Thread dblotsky
Removing teletype font from support table header.


Project: http://git-wip-us.apache.org/repos/asf/cordova-docs/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-docs/commit/9e3eddd7
Tree: http://git-wip-us.apache.org/repos/asf/cordova-docs/tree/9e3eddd7
Diff: http://git-wip-us.apache.org/repos/asf/cordova-docs/diff/9e3eddd7

Branch: refs/heads/master
Commit: 9e3eddd730ba0afe56357476e89443e8cb2769fa
Parents: a5361d0
Author: Dmitry Blotsky 
Authored: Fri Nov 20 16:53:04 2015 -0800
Committer: Dmitry Blotsky 
Committed: Fri Nov 20 16:53:04 2015 -0800

--
 www/docs/de/dev/guide/support/index.md | 506 ++--
 www/docs/en/dev/guide/support/index.md |  16 +-
 www/docs/es/dev/guide/support/index.md | 506 ++--
 www/docs/fr/dev/guide/support/index.md | 506 ++--
 www/docs/it/dev/guide/support/index.md | 506 ++--
 www/docs/ja/dev/guide/support/index.md | 506 ++--
 www/docs/ko/dev/guide/support/index.md | 506 ++--
 www/docs/pl/dev/guide/support/index.md | 506 ++--
 www/docs/ru/dev/guide/support/index.md | 504 +--
 www/docs/sl/dev/guide/support/index.md | 468 -
 www/docs/zh/dev/guide/support/index.md | 506 ++--
 11 files changed, 2518 insertions(+), 2518 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/9e3eddd7/www/docs/de/dev/guide/support/index.md
--
diff --git a/www/docs/de/dev/guide/support/index.md 
b/www/docs/de/dev/guide/support/index.md
index 0b0f9a8..ee72fdf 100644
--- a/www/docs/de/dev/guide/support/index.md
+++ b/www/docs/de/dev/guide/support/index.md
@@ -32,833 +32,833 @@ Im folgenden wird die Gruppe von Entwicklungs-Tools und 
APIs verfügbar-Gerät f
   
 

-Amazon-fireos
+Amazon-fireos
   
-  
+
   
-Android
+Android
   
-  
+
   
-blackberry10
+blackberry10
   
-  
+
   
-Firefox OS
+Firefox OS
   
-  
+
   
-Ios
+Ios
   
-  
+
   
-Ubuntu
+Ubuntu
   
-  
+
   
-WP8(Windows Phone 8)
+WP8(Windows Phone 8)
   
-  
+
   
-Windows(8.0, 8.1, 10,Telefon 8.1)
+Windows(8.0, 8.1, 10,Telefon 8.1)
   
-  
+
   
-tizen
-
-  
+tizen
+   
+
   
 
   CordovaCLI
 
-
+
 
   Mac, Windows, Linux
 
-
+
 
   Mac, Windows, Linux
 
-
+
 
   Mac, Windows
 
-
+
 
   Mac, Windows, Linux
 
-
+
 
   Mac
 
-
+
 
   Ubuntu
 
-
+
 
   Windows
 
-
+
 
 
-
+
 
 
   
-  
+
   
 
   EingebetteteWebView
 
-
+
 
   (siehe Details)
 
-
+
 
   (siehe Details)
 
-
+
 
 
-
+
 
 
-
+
 
   (siehe Details)
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
   
-  
+
   
 
   Plug-inSchnittstelle
 
-
+
 
   (siehe Details)
 
-
+
 
   (siehe Details)
 
-
+
 
   (siehe Details)
 
-
+
 
 
-
+
 
   (siehe Details)
 
-
+
 
 
-
+
 
   (siehe Details)
 
-
+
 
 
-
+
 
 
   
-  
+
   
 
 
-
+
 
   Plattform-APIs
 
   
-  
+
   
 
   https://www.npmjs.com/package/cordova-plugin-device-motion;>Beschleunigungsmesser
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
   
-  
+
   
 
   https://www.npmjs.com/package/cordova-plugin-battery-status;>BatteryStatus
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
  

[4/4] docs commit: Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/cordova-docs

2015-11-20 Thread dblotsky
Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/cordova-docs


Project: http://git-wip-us.apache.org/repos/asf/cordova-docs/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-docs/commit/7a5fcf2d
Tree: http://git-wip-us.apache.org/repos/asf/cordova-docs/tree/7a5fcf2d
Diff: http://git-wip-us.apache.org/repos/asf/cordova-docs/diff/7a5fcf2d

Branch: refs/heads/master
Commit: 7a5fcf2d45710be9d37ced73ec6e9eac1687de2b
Parents: 9e3eddd 81b7245
Author: Dmitry Blotsky 
Authored: Fri Nov 20 16:53:10 2015 -0800
Committer: Dmitry Blotsky 
Committed: Fri Nov 20 16:53:10 2015 -0800

--
 www/_posts/2015-11-20-security.md | 67 ++
 1 file changed, 67 insertions(+)
--



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



[1/4] docs commit: Removing teletype font from support table header.

2015-11-20 Thread dblotsky
Repository: cordova-docs
Updated Branches:
  refs/heads/master 81b7245cf -> 7a5fcf2d4


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/9e3eddd7/www/docs/sl/dev/guide/support/index.md
--
diff --git a/www/docs/sl/dev/guide/support/index.md 
b/www/docs/sl/dev/guide/support/index.md
index 6870e1a..23e9b9d 100644
--- a/www/docs/sl/dev/guide/support/index.md
+++ b/www/docs/sl/dev/guide/support/index.md
@@ -30,736 +30,736 @@ Naslednje prikazuje nabor razvojna orodja in naprave API 
na voljo za vsak mobiln
   
 

-Amazon-fireos
+Amazon-fireos
   
-  
+
   
-Android
+Android
   
-  
+
   
-blackberry10
+blackberry10
   
-  
+
   
-IOS
+IOS
   
-  
+
   
-Ubuntu
+Ubuntu
   
-  
+
   
-WP7 (WindowsTelefon 7)
+WP7 (WindowsTelefon 7)
   
-  
+
   
-WP8 (WindowsTelefon 8)
+WP8 (WindowsTelefon 8)
   
-  
+
   
-Win8(Windows 8)
+Win8(Windows 8)
   
-  
-  
-  
+
+  
+
   
-tizen
-
-  
+tizen
+   
+
   
 
   CordovaCLI
 
-
+
 
   Mac, Windows, Linux
 
-
+
 
   Mac, Windows, Linux
 
-
+
 
   Mac, Windows
 
-
+
 
   Mac
 
-
+
 
   Ubuntu
 
-
+
 
   Windows
 
-
+
 
   Windows
 
-
+
 
 
-
+
 
-
+
 
 
   
-  
+
   
 
   VgrajeniSpletni 
pogled
 
-
+
 
   (glej 
podrobnosti)
 
-
+
 
   (glej podrobnosti)
 
-
+
 
 
-
+
 
   (glej podrobnosti)
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
-
+
 
 
   
-  
+
   
 
   Plug-inVmesnik
 
-
+
 
   (glej 
podrobnosti)
 
-
+
 
   (glej 
podrobnosti)
 
-
+
 
   (glej 
podrobnosti)
 
-
+
 
   (glej podrobnosti)
 
-
+
 
 
-
+
 
   (glej podrobnosti)
 
-
+
 
   (glej podrobnosti)
 
-
+
 
 
-
+
 
-
+
 
 
   
-  
+
   
 
 
-
+
 
   Platforma APIs
 
   
-  
+
   
 
   Accelerometer
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
-
+
 
 
   
-  
+
   
 
   Kamero
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
-
+
 
 
   
-  
+
   
 
   Zajem
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
-
+
 
 
   
-  
+
   
 
   Kompas
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
   (3GS +)
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
-
+
 
 
   
-  
+
   
 
   Povezave
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
-
+
 
 
   
-  
+
   
 
   Stiki
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 

[2/4] docs commit: Removing teletype font from support table header.

2015-11-20 Thread dblotsky
http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/9e3eddd7/www/docs/ja/dev/guide/support/index.md
--
diff --git a/www/docs/ja/dev/guide/support/index.md 
b/www/docs/ja/dev/guide/support/index.md
index 39d1313..310ea29 100644
--- a/www/docs/ja/dev/guide/support/index.md
+++ b/www/docs/ja/dev/guide/support/index.md
@@ -32,833 +32,833 @@ title: プラットフォームのサポート
   
 

-アマゾン fireos
+アマゾン fireos
   
-  
+
   
-アンドロイド
+アンドロイド
   
-  
+
   
-blackberry10
+blackberry10
   
-  
+
   
-Firefox の OS
+Firefox の OS
   
-  
+
   
-ios
+ios
   
-  
+
   
-Ubuntu
+Ubuntu
   
-  
+
   
-wp8(Windows Phone 8)
+wp8(Windows Phone 8)
   
-  
+
   
-windows(8.0、8.1、10電話 8.1)
+windows(8.0、8.1、10電話 8.1)
   
-  
+
   
-tizen
-
-  
+tizen
+   
+
   
 
   コルドバCLI
 
-
+
 
   Mac、Windows、Linux
 
-
+
 
   Mac、Windows、Linux
 
-
+
 
   Mac、Windows
 
-
+
 
   Mac、Windows、Linux
 
-
+
 
   Mac
 
-
+
 
   Ubuntu
 
-
+
 
   Windows
 
-
+
 
 
-
+
 
 
   
-  
+
   
 
   埋め込みWebView
 
-
+
 
   (詳細を参ç…
§)
 
-
+
 
   (詳細を参照)
 
-
+
 
 
-
+
 
 
-
+
 
   (詳細を参照)
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
   
-  
+
   
 
   プラグインインターフェイス
 
-
+
 
   (詳細を参照)
 
-
+
 
   (詳細を参照)
 
-
+
 
   (詳細を参照)
 
-
+
 
 
-
+
 
   (詳細を参照)
 
-
+
 
 
-
+
 
   (詳細を参照)
 
-
+
 
 
-
+
 
 
   
-  
+
   
 
 
-
+
 
   プラットフォーム Api
 
   
-  
+
   
 
   https://www.npmjs.com/package/cordova-plugin-device-motion;>加
速度センサー
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
   
-  
+
   
 
   https://www.npmjs.com/package/cordova-plugin-battery-status;>BatteryStatus
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
   * Windows Phone 8.1 のみ
 
-
+
 
 
   
-  
+
   
 
   https://www.npmjs.com/package/cordova-plugin-camera;>カメラ
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
   
-  
+
   
 
   https://www.npmjs.com/package/cordova-plugin-media-capture;>キャプチャ
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
   
-  
+
   
 
   https://www.npmjs.com/package/cordova-plugin-device-orientation;>コンパス
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
   (3 GS +)
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
   
-  
+
   
 
   

svn commit: r1715442 - /cordova/site/public/.htaccess

2015-11-20 Thread dblotsky
Author: dblotsky
Date: Fri Nov 20 22:55:42 2015
New Revision: 1715442

URL: http://svn.apache.org/viewvc?rev=1715442=rev
Log:
Updating .htaccess.

Modified:
cordova/site/public/.htaccess

Modified: cordova/site/public/.htaccess
URL: 
http://svn.apache.org/viewvc/cordova/site/public/.htaccess?rev=1715442=1715441=1715442=diff
==
--- cordova/site/public/.htaccess (original)
+++ cordova/site/public/.htaccess Fri Nov 20 22:55:42 2015
@@ -38,6 +38,10 @@ RewriteRule ^.*docs/(\w\w)/latest$ /docs
 #   resource, but the browser won't change the URI (no redirects followed).
 RewriteRule ^.*docs/(\w\w)/latest/(.*)$ /docs/$1/5.4.0/$2 [L]
 
+# 301
+#  docs/XX/edge/ -> docs/xx/dev/
+RewriteRule ^.*docs/(\w\w)/edge/(.*)$ /docs/$1/dev/$2 [R=301,L]
+
 # 301:
 #   old docs pages -> new docs pages (from www/_data/docs-redirects.yml)
 #
@@ -49,7 +53,6 @@ RewriteRule ^.*docs/(\w\w)/latest/(.*)$
 #   docs-specific is: these redirects happen for every version of the
 #   docs. That's 157 redirects * 84 versions ~= 13000 redirects! Doing
 #   special pattern-matching for docs keeps that number at _only_ 157.
-
 RewriteRule ^.*docs/(\w\w)/([^/]+)/config_ref_images.md.html$ 
/docs/$1/$2/config_ref/images.html [R=301,L]
 RewriteRule ^.*docs/(\w\w)/([^/]+)/config_ref_index.md.html$ 
/docs/$1/$2/config_ref/index.html [R=301,L]
 RewriteRule 
^.*docs/(\w\w)/([^/]+)/cordova_accelerometer_accelerometer.md.html$ 
/docs/$1/$2/cordova/accelerometer/accelerometer.html [R=301,L]
@@ -207,3 +210,4 @@ RewriteRule ^.*docs/(\w\w)/([^/]+)/guide
 RewriteRule 
^.*docs/(\w\w)/([^/]+)/guide_plugin-development_blackberry10_index.md.html$ 
/docs/$1/$2/guide/plugin-development/blackberry10/index.html [R=301,L]
 RewriteRule ^.*docs/(\w\w)/([^/]+)/guide_privacy_index.md.html$ 
/docs/$1/$2/guide/privacy/index.html [R=301,L]
 RewriteRule ^.*docs/(\w\w)/([^/]+)/guide_upgrading_windows-8_index.md.html$ 
/docs/$1/$2/guide/upgrading/windows-8/index.html [R=301,L]
+



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



[1/5] docs commit: Refactored layouts to be more easily maintainable.

2015-11-20 Thread dblotsky
Repository: cordova-docs
Updated Branches:
  refs/heads/master 7a5fcf2d4 -> aa9e3195a


Refactored layouts to be more easily maintainable.


Project: http://git-wip-us.apache.org/repos/asf/cordova-docs/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-docs/commit/fc126641
Tree: http://git-wip-us.apache.org/repos/asf/cordova-docs/tree/fc126641
Diff: http://git-wip-us.apache.org/repos/asf/cordova-docs/diff/fc126641

Branch: refs/heads/master
Commit: fc1266417cb8e8517a39feb7c178a9a1a513763d
Parents: 7a5fcf2
Author: Dmitry Blotsky 
Authored: Fri Nov 20 16:48:18 2015 -0800
Committer: Dmitry Blotsky 
Committed: Fri Nov 20 17:00:56 2015 -0800

--
 _config.yml |  2 +-
 www/_layouts/blog.html  |  6 +-
 www/_layouts/contribute-help.html   | 10 
 www/_layouts/contribute.html|  9 +++
 www/_layouts/page.html  |  7 +++
 www/_layouts/plugins-help.html  |  8 ---
 www/_layouts/plugins.html   |  6 ++
 www/contact/index.html  | 83 ++--
 www/contribute/contribute_guidelines.md |  3 +-
 www/contribute/index.html   |  2 +-
 www/contribute/issues.md|  3 +-
 www/plugins/authors.md  |  2 +-
 www/plugins/faq.md  |  2 +-
 www/plugins/index.html  |  7 +--
 14 files changed, 75 insertions(+), 75 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/fc126641/_config.yml
--
diff --git a/_config.yml b/_config.yml
index c528500..d98edae 100644
--- a/_config.yml
+++ b/_config.yml
@@ -6,9 +6,9 @@
 # Site settings
 # ===
 title:  Apache Cordova
+title_suffix:   "Apache Cordova"
 url:"https://cordova.apache.org; # the base hostname & protocol
 baseurl:"" # the subpath of the site, e.g. /blog; NOTE: no trailing 
slash
-title_suffix:   "Apache Cordova"
 rss_path:   /feed.xml
 description: >
 Apache Cordova is a set of device APIs that allow a web mobile app

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/fc126641/www/_layouts/blog.html
--
diff --git a/www/_layouts/blog.html b/www/_layouts/blog.html
index 3c9ac0c..da93280 100644
--- a/www/_layouts/blog.html
+++ b/www/_layouts/blog.html
@@ -1,10 +1,8 @@
 ---
-layout: cordova
+layout: page
 blog_tab: true
 ---
 
 
-
-{{ content }}
-
+{{ content }}
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/fc126641/www/_layouts/contribute-help.html
--
diff --git a/www/_layouts/contribute-help.html 
b/www/_layouts/contribute-help.html
deleted file mode 100644
index 6ee2aa1..000
--- a/www/_layouts/contribute-help.html
+++ /dev/null
@@ -1,10 +0,0 @@

-layout: cordova
-no_code_highlight: true

-
-
-
-{{ content }}
-
-

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/fc126641/www/_layouts/contribute.html
--
diff --git a/www/_layouts/contribute.html b/www/_layouts/contribute.html
new file mode 100644
index 000..d26af11
--- /dev/null
+++ b/www/_layouts/contribute.html
@@ -0,0 +1,9 @@
+---
+layout: page
+contribute_tab: true
+no_code_highlight: true
+---
+
+
+{{ content }}
+

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/fc126641/www/_layouts/page.html
--
diff --git a/www/_layouts/page.html b/www/_layouts/page.html
new file mode 100644
index 000..b4cecb3
--- /dev/null
+++ b/www/_layouts/page.html
@@ -0,0 +1,7 @@
+---
+layout: cordova
+---
+
+
+{{ content }}
+

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/fc126641/www/_layouts/plugins-help.html
--
diff --git a/www/_layouts/plugins-help.html b/www/_layouts/plugins-help.html
deleted file mode 100644
index c5ff10d..000
--- a/www/_layouts/plugins-help.html
+++ /dev/null
@@ -1,8 +0,0 @@

-layout: cordova
-plugins_tab: true

-
-
-{{ content }}
-

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/fc126641/www/_layouts/plugins.html
--
diff --git a/www/_layouts/plugins.html b/www/_layouts/plugins.html
new file mode 100644
index 000..8c9f1c9
--- /dev/null
+++ b/www/_layouts/plugins.html
@@ -0,0 +1,6 @@
+---
+layout: page
+plugins_tab: true
+---
+
+{{ content }}

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/fc126641/www/contact/index.html

[5/5] docs commit: CB-10056 Making latest version more important, and dev version _less_ important.

2015-11-20 Thread dblotsky
CB-10056 Making latest version more important, and dev version _less_ important.


Project: http://git-wip-us.apache.org/repos/asf/cordova-docs/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-docs/commit/aa9e3195
Tree: http://git-wip-us.apache.org/repos/asf/cordova-docs/tree/aa9e3195
Diff: http://git-wip-us.apache.org/repos/asf/cordova-docs/diff/aa9e3195

Branch: refs/heads/master
Commit: aa9e3195a60a7bec986467d42aa717d685c1dfa9
Parents: cb0c09b
Author: Dmitry Blotsky 
Authored: Fri Nov 20 19:06:23 2015 -0800
Committer: Dmitry Blotsky 
Committed: Fri Nov 20 19:06:23 2015 -0800

--
 Makefile  | 15 +++--
 gulpfile.js   | 10 +++---
 tools/bin/gen_defaults.js | 73 +++---
 3 files changed, 65 insertions(+), 33 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/aa9e3195/Makefile
--
diff --git a/Makefile b/Makefile
index e750eee..d9ba501 100644
--- a/Makefile
+++ b/Makefile
@@ -66,6 +66,7 @@ DEV_CONFIG  = _dev.yml
 PROD_CONFIG = _prod.yml
 DOCS_EXCLUDE_CONFIG = _nodocs.yml
 PLUGINS_SRC = $(PLUGINS_SRC_DIR)/app.js
+VERSION_FILE= VERSION
 
 # NOTE:
 #  the .scss files are separate because they combine into MAIN_STYLE_FILE,
@@ -99,6 +100,12 @@ TOC_FILES  = $(addprefix $(TOC_DIR)/,$(addsuffix 
-generated.yml,$(DOCS_V
 #  the order of config files matters to Jekyll
 JEKYLL_CONFIGS = $(MAIN_CONFIG) $(DEFAULTS_CONFIG) $(VERSION_CONFIG)
 
+ifdef WINDOWS
+LATEST_DOCS_VERSION = $(shell type $(VERSION_FILE))
+else
+LATEST_DOCS_VERSION = $(shell cat $(VERSION_FILE))
+endif
+
 # convenience targets
 help usage default:
@echo ""
@@ -122,6 +129,8 @@ help usage default:
@echo ""
 
 debug:
+   @echo "LATEST_DOCS_VERSION: " $(LATEST_DOCS_VERSION)
+   @echo ""
@echo "OS: " $(OS)
@echo ""
@echo "SCSS_SRC: " $(SCSS_SRC)
@@ -174,10 +183,10 @@ $(PLUGINS_APP): $(PLUGINS_SRC) Makefile
 $(LANGUAGES_DATA): $(BIN_DIR)/gen_languages.js Makefile
$(NODE) $(BIN_DIR)/gen_languages.js $(DOCS_DIR) > $@
 
-$(DEFAULTS_CONFIG): $(BIN_DIR)/gen_defaults.js Makefile
-   $(NODE) $(BIN_DIR)/gen_defaults.js $(DOCS_DIR) > $@
+$(DEFAULTS_CONFIG): $(BIN_DIR)/gen_defaults.js $(VERSION_FILE) Makefile
+   $(NODE) $(BIN_DIR)/gen_defaults.js $(DOCS_DIR) "$(LATEST_DOCS_VERSION)" 
> $@
 
-$(VERSION_CONFIG): VERSION Makefile
+$(VERSION_CONFIG): $(VERSION_FILE) Makefile
sed -e "s/^/$(VERSION_VAR_NAME): /" < $< > $@
 
 $(TOC_FILES): $(BIN_DIR)/toc.js Makefile

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/aa9e3195/gulpfile.js
--
diff --git a/gulpfile.js b/gulpfile.js
index b94eac2..eed3ce0 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -2,6 +2,7 @@
 
 // dependencies
 var path  = require("path");
+var fs= require("fs");
 var fse   = require("fs-extra");
 var child_process = require("child_process");
 
@@ -66,9 +67,10 @@ var VERSION_VAR_NAME  = "latest_docs_version";
 var PROD_BY_DEFAULT = false;
 
 // compute/get/set/adjust passed options
-gutil.env.prod   = gutil.env.prod || PROD_BY_DEFAULT;
-gutil.env.dev= !gutil.env.prod;
-gutil.env.outDir = gutil.env.prod ? PROD_DIR : DEV_DIR;
+gutil.env.prod  = gutil.env.prod || PROD_BY_DEFAULT;
+gutil.env.dev   = !gutil.env.prod;
+gutil.env.outDir= gutil.env.prod ? PROD_DIR : DEV_DIR;
+gutil.env.latestDocsVersion = fs.readFileSync(VERSION_FILE, 'utf-8');
 
 // helpers
 function execPiped(command, args, fileName) {
@@ -217,7 +219,7 @@ gulp.task("version", function () {
 });
 
 gulp.task("defaults", function () {
-return execPiped("node", [bin("gen_defaults.js"), DOCS_DIR], 
DEFAULTS_CONFIG_FILE)
+return execPiped("node", [bin("gen_defaults.js"), DOCS_DIR, 
gutil.env.latestDocsVersion], DEFAULTS_CONFIG_FILE)
 .pipe(gulp.dest(ROOT_DIR));
 });
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/aa9e3195/tools/bin/gen_defaults.js
--
diff --git a/tools/bin/gen_defaults.js b/tools/bin/gen_defaults.js
index a4082c6..741adef 100644
--- a/tools/bin/gen_defaults.js
+++ b/tools/bin/gen_defaults.js
@@ -24,33 +24,46 @@ var yaml = require("js-yaml");
 var util = require("./util");
 
 // constants
+var USAGE = "Usage: gen_defaults.js [docsRoot] [latestVersion]"
+
 var DEV_VERSION_NAME = "dev";
 
-// page change frequency for sitemap.xml
+// constants for sitemap.xml
 // reference:
 //  http://www.sitemaps.org/protocol.html#xmlTagDefinitions
-var DEV_CHANGE_FREQUENCY = "daily";
-var DEV_PAGE_PRIORITY= 0.8;
+var 

[3/5] docs commit: CB-10056 Adding more metadata for sitemap.xml.

2015-11-20 Thread dblotsky
CB-10056 Adding more metadata for sitemap.xml.


Project: http://git-wip-us.apache.org/repos/asf/cordova-docs/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-docs/commit/42841405
Tree: http://git-wip-us.apache.org/repos/asf/cordova-docs/tree/42841405
Diff: http://git-wip-us.apache.org/repos/asf/cordova-docs/diff/42841405

Branch: refs/heads/master
Commit: 4284140540c379c55ae672d2ff787f664b70a43d
Parents: 4e345ab
Author: Dmitry Blotsky 
Authored: Fri Nov 20 16:51:35 2015 -0800
Committer: Dmitry Blotsky 
Committed: Fri Nov 20 17:13:58 2015 -0800

--
 tools/bin/gen_defaults.js | 27 ---
 www/blog/index.html   |  2 ++
 www/http/404.html |  1 +
 www/index.html|  2 ++
 www/plugins/index.html|  2 ++
 5 files changed, 31 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/42841405/tools/bin/gen_defaults.js
--
diff --git a/tools/bin/gen_defaults.js b/tools/bin/gen_defaults.js
index c8b196b..a4082c6 100644
--- a/tools/bin/gen_defaults.js
+++ b/tools/bin/gen_defaults.js
@@ -23,6 +23,17 @@ var yaml = require("js-yaml");
 
 var util = require("./util");
 
+// constants
+var DEV_VERSION_NAME = "dev";
+
+// page change frequency for sitemap.xml
+// reference:
+//  http://www.sitemaps.org/protocol.html#xmlTagDefinitions
+var DEV_CHANGE_FREQUENCY = "daily";
+var DEV_PAGE_PRIORITY= 0.8;
+var DEFAULT_CHANGE_FREQUENCY = "monthly";
+var DEFAULT_PAGE_PRIORITY= DEV_PAGE_PRIORITY / 2;
+
 function main () {
 
 var rootDir = process.argv[2];
@@ -54,8 +65,7 @@ function main () {
 var manual= util.manualTocfileName(langName, versionName);
 var generated = util.generatedTocfileName(langName, versionName);
 
-// define version scope
-config.defaults.push({
+var versionDefaults = {
 scope: {
 path: "docs/" + langName + "/" + versionName
 },
@@ -64,7 +74,18 @@ function main () {
 manual_toc:manual.replace(".yml", ""),
 generated_toc: generated.replace(".yml", "")
 }
-});
+};
+
+if (versionName === DEV_VERSION_NAME) {
+versionDefaults.values.change_frequency = DEV_CHANGE_FREQUENCY;
+versionDefaults.values.priority = DEV_PAGE_PRIORITY;
+} else {
+versionDefaults.values.change_frequency = 
DEFAULT_CHANGE_FREQUENCY;
+versionDefaults.values.priority = DEFAULT_PAGE_PRIORITY
+}
+
+// define version scope
+config.defaults.push(versionDefaults);
 });
 });
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/42841405/www/blog/index.html
--
diff --git a/www/blog/index.html b/www/blog/index.html
index 263f188..2a1b63d 100644
--- a/www/blog/index.html
+++ b/www/blog/index.html
@@ -1,6 +1,8 @@
 ---
 layout: blog
 title: Blog
+change_frequency: weekly
+priority: 0.7
 ---
 
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/42841405/www/http/404.html
--
diff --git a/www/http/404.html b/www/http/404.html
index f87504c..f7c7700 100644
--- a/www/http/404.html
+++ b/www/http/404.html
@@ -2,6 +2,7 @@
 layout: cordova
 title: Page Not Found
 permalink: 404.html
+priority: 0.1
 ---
 
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/42841405/www/index.html
--
diff --git a/www/index.html b/www/index.html
index 1a8cc50..32eccb5 100644
--- a/www/index.html
+++ b/www/index.html
@@ -1,6 +1,8 @@
 ---
 layout: cordova
 permalink: /
+priority: 1.0
+change_frequency: monthly
 ---
 
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/42841405/www/plugins/index.html
--
diff --git a/www/plugins/index.html b/www/plugins/index.html
index 884de4a..9ae98c2 100644
--- a/www/plugins/index.html
+++ b/www/plugins/index.html
@@ -2,6 +2,8 @@
 layout: plugins
 title: Plugin Search
 description: Search here for Apache Cordova plugins published on NPM.
+priority: 0.9
+change_frequency: daily
 ---
 
 


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



[4/5] docs commit: CB-10020 Translating the (Latest) text in version dropdown.

2015-11-20 Thread dblotsky
CB-10020 Translating the (Latest) text in version dropdown.


Project: http://git-wip-us.apache.org/repos/asf/cordova-docs/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-docs/commit/cb0c09be
Tree: http://git-wip-us.apache.org/repos/asf/cordova-docs/tree/cb0c09be
Diff: http://git-wip-us.apache.org/repos/asf/cordova-docs/diff/cb0c09be

Branch: refs/heads/master
Commit: cb0c09bebc0396a7f66861d9467471e2da9ef944
Parents: 4284140
Author: Dmitry Blotsky 
Authored: Fri Nov 20 16:59:03 2015 -0800
Committer: Dmitry Blotsky 
Committed: Fri Nov 20 18:33:28 2015 -0800

--
 www/_layouts/docs-de.html | 1 +
 www/_layouts/docs-en.html | 1 +
 www/_layouts/docs-es.html | 1 +
 www/_layouts/docs-fr.html | 1 +
 www/_layouts/docs-it.html | 1 +
 www/_layouts/docs-ja.html | 1 +
 www/_layouts/docs-ko.html | 1 +
 www/_layouts/docs-pl.html | 1 +
 www/_layouts/docs-ru.html | 1 +
 www/_layouts/docs-sl.html | 1 +
 www/_layouts/docs-zh.html | 1 +
 www/_layouts/docs.html| 4 ++--
 12 files changed, 13 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cb0c09be/www/_layouts/docs-de.html
--
diff --git a/www/_layouts/docs-de.html b/www/_layouts/docs-de.html
index 0e14f62..352f795 100644
--- a/www/_layouts/docs-de.html
+++ b/www/_layouts/docs-de.html
@@ -4,6 +4,7 @@ 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"
+latest_text: "Letzte"
 ---
 
 {{ content }}

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cb0c09be/www/_layouts/docs-en.html
--
diff --git a/www/_layouts/docs-en.html b/www/_layouts/docs-en.html
index 395c46f..86e3cb1 100644
--- a/www/_layouts/docs-en.html
+++ b/www/_layouts/docs-en.html
@@ -4,6 +4,7 @@ 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"
+latest_text: "Latest"
 ---
 
 {{ content }}

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cb0c09be/www/_layouts/docs-es.html
--
diff --git a/www/_layouts/docs-es.html b/www/_layouts/docs-es.html
index b1d082e..a3e146b 100644
--- a/www/_layouts/docs-es.html
+++ b/www/_layouts/docs-es.html
@@ -4,6 +4,7 @@ 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"
+latest_text: "Ultima"
 ---
 
 {{ content }}

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cb0c09be/www/_layouts/docs-fr.html
--
diff --git a/www/_layouts/docs-fr.html b/www/_layouts/docs-fr.html
index 2190268..0e52902 100644
--- a/www/_layouts/docs-fr.html
+++ b/www/_layouts/docs-fr.html
@@ -4,6 +4,7 @@ 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"
+latest_text: "Dernière"
 ---
 
 {{ content }}

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cb0c09be/www/_layouts/docs-it.html
--
diff --git a/www/_layouts/docs-it.html b/www/_layouts/docs-it.html
index fab1f83..4e94485 100644
--- a/www/_layouts/docs-it.html
+++ b/www/_layouts/docs-it.html
@@ -4,6 +4,7 @@ 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"
+latest_text: "Latest"
 ---
 
 {{ content }}

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cb0c09be/www/_layouts/docs-ja.html
--
diff --git a/www/_layouts/docs-ja.html b/www/_layouts/docs-ja.html
index 0578bea..670f615 100644
--- a/www/_layouts/docs-ja.html
+++ b/www/_layouts/docs-ja.html
@@ -4,6 +4,7 @@ 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: "目次"
+latest_text: "Latest"
 

[2/5] docs commit: CB-10029 Adding edge -> dev redirect.

2015-11-20 Thread dblotsky
CB-10029 Adding edge -> dev redirect.


Project: http://git-wip-us.apache.org/repos/asf/cordova-docs/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-docs/commit/4e345abd
Tree: http://git-wip-us.apache.org/repos/asf/cordova-docs/tree/4e345abd
Diff: http://git-wip-us.apache.org/repos/asf/cordova-docs/diff/4e345abd

Branch: refs/heads/master
Commit: 4e345abd9cf62672dfbbc3759f2f52191530bb99
Parents: fc12664
Author: Dmitry Blotsky 
Authored: Fri Nov 20 16:49:27 2015 -0800
Committer: Dmitry Blotsky 
Committed: Fri Nov 20 17:13:08 2015 -0800

--
 www/.htaccess | 16 +++-
 1 file changed, 11 insertions(+), 5 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/4e345abd/www/.htaccess
--
diff --git a/www/.htaccess b/www/.htaccess
index 0429591..8d5d8f8 100644
--- a/www/.htaccess
+++ b/www/.htaccess
@@ -17,7 +17,7 @@ RewriteEngine on
 #   301s are for PERMANENT redirects. These are used only for mapping old
 #   docs pages to new docs pages.
 
-# 302:
+# 302 (temp):
 #   docs -> docs/en/latest/
 #   docs/-> docs/en/latest/
 #   docs/XX  -> docs/XX/latest/
@@ -28,7 +28,7 @@ RewriteEngine on
 RewriteRule ^.*docs/$ {{site.baseurl}}/docs/en/
 RewriteRule ^.*docs/(\w\w)/$ {{site.baseurl}}/docs/$1/latest/ [R=302,L]
 
-# 302:
+# 302 (temp):
 #   docs/XX/latest -> docs/XX/latest/
 RewriteRule ^.*docs/(\w\w)/latest$ {{site.baseurl}}/docs/$1/latest/ [R=302,L]
 
@@ -41,7 +41,13 @@ RewriteRule ^.*docs/(\w\w)/latest$ 
{{site.baseurl}}/docs/$1/latest/ [R=302,L]
 #   resource, but the browser won't change the URI (no redirects followed).
 RewriteRule ^.*docs/(\w\w)/latest/(.*)$ 
{{site.baseurl}}/docs/$1/{{site.latest_docs_version}}/$2 [L]
 
-# 301:
+# 301 (perm):
+#   docs/XX/edge  -> docs/xx/edge/
+#   docs/XX/edge/ -> docs/xx/dev/
+RewriteRule ^.*docs/(\w\w)/edge$ {{site.baseurl}}/docs/$1/edge/
+RewriteRule ^.*docs/(\w\w)/edge/(.*)$ {{site.baseurl}}/docs/$1/dev/$2 [R=301,L]
+
+# 301 (perm):
 #   old docs pages -> new docs pages (from www/_data/docs-redirects.yml)
 #
 # NOTE:
@@ -52,5 +58,5 @@ RewriteRule ^.*docs/(\w\w)/latest/(.*)$ 
{{site.baseurl}}/docs/$1/{{site.latest_d
 #   docs-specific is: these redirects happen for every version of the
 #   docs. That's 157 redirects * 84 versions ~= 13000 redirects! Doing
 #   special pattern-matching for docs keeps that number at _only_ 157.
-{% for redirect in site.data.docs-redirects %}
-RewriteRule ^.*docs/(\w\w)/([^/]+)/{{redirect.old}}$ 
{{site.baseurl}}/docs/$1/$2/{{redirect.new}} [R=301,L]{% endfor %}
+{% for redirect in site.data.docs-redirects %}RewriteRule 
^.*docs/(\w\w)/([^/]+)/{{redirect.old}}$ 
{{site.baseurl}}/docs/$1/$2/{{redirect.new}} [R=301,L]
+{% endfor %}


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



svn commit: r1715126 - in /cordova/site/public: ./ announcements/2013/11/15/ announcements/2013/11/22/ announcements/2013/12/16/ announcements/2014/02/20/ announcements/2014/05/23/ announcements/2014/

2015-11-19 Thread dblotsky
Author: dblotsky
Date: Thu Nov 19 08:41:01 2015
New Revision: 1715126

URL: http://svn.apache.org/viewvc?rev=1715126=rev
Log:
Updating site.


[This commit notification would consist of 3968 parts, 
which exceeds the limit of 50 ones, so it was shortened to the summary.]

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



cordova-plugin-camera git commit: CB-8940 Setting z-index values to maximum for UI buttons. This closes #140.

2015-11-19 Thread dblotsky
Repository: cordova-plugin-camera
Updated Branches:
  refs/heads/master b3376e238 -> ef5484a2a


CB-8940 Setting z-index values to maximum for UI buttons. This closes #140.


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-camera/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/cordova-plugin-camera/commit/ef5484a2
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-camera/tree/ef5484a2
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-camera/diff/ef5484a2

Branch: refs/heads/master
Commit: ef5484a2aa72e63c2ad95d5533db6f25ed53e5c7
Parents: b3376e2
Author: Raghav Katyal 
Authored: Wed Nov 18 11:34:45 2015 -0800
Committer: Dmitry Blotsky 
Committed: Thu Nov 19 17:36:06 2015 -0800

--
 src/windows/CameraProxy.js | 11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/cordova-plugin-camera/blob/ef5484a2/src/windows/CameraProxy.js
--
diff --git a/src/windows/CameraProxy.js b/src/windows/CameraProxy.js
index 64b6bb7..da8cf7d 100644
--- a/src/windows/CameraProxy.js
+++ b/src/windows/CameraProxy.js
@@ -73,6 +73,9 @@ var windowsPhoneVideoContainers =  [".avi", ".3gp", ".3g2", 
".wmv", ".3gp", ".3g
 // Default aspect ratio 1.78 (16:9 hd video standard)
 var DEFAULT_ASPECT_RATIO = '1.8';
 
+// Highest possible z-index supported across browsers. Anything used above is 
converted to this value.
+var HIGHEST_POSSIBLE_Z_INDEX = 2147483647;
+
 // Resize method
 function resizeImage(successCallback, errorCallback, file, targetWidth, 
targetHeight, encodingType) {
 var tempPhotoFileName = "";
@@ -329,18 +332,18 @@ function takePictureFromCameraWP(successCallback, 
errorCallback, args) {
 // Create fullscreen preview
 // z-order style element for capturePreview and cameraCancelButton elts
 // is necessary to avoid overriding by another page elements, -1 
sometimes is not enough
-capturePreview = document.createElement("video");
-capturePreview.style.cssText = "position: fixed; left: 0; top: 0; 
width: 100%; height: 100%; z-index: 999;";
+   capturePreview = document.createElement("video");
+capturePreview.style.cssText = "position: fixed; left: 0; top: 0; 
width: 100%; height: 100%; z-index: " + (HIGHEST_POSSIBLE_Z_INDEX - 1) + ";";
 
 // Create capture button
 cameraCaptureButton = document.createElement("button");
 cameraCaptureButton.innerText = "Take";
-cameraCaptureButton.style.cssText = buttonStyle + "position: fixed; 
left: 0; bottom: 0; margin: 20px; z-index: 1000";
+cameraCaptureButton.style.cssText = buttonStyle + "position: fixed; 
left: 0; bottom: 0; margin: 20px; z-index: " + HIGHEST_POSSIBLE_Z_INDEX + ";";
 
 // Create cancel button
 cameraCancelButton = document.createElement("button");
 cameraCancelButton.innerText = "Cancel";
-cameraCancelButton.style.cssText = buttonStyle + "position: fixed; 
right: 0; bottom: 0; margin: 20px; z-index: 1000";
+cameraCancelButton.style.cssText = buttonStyle + "position: fixed; 
right: 0; bottom: 0; margin: 20px; z-index: " + HIGHEST_POSSIBLE_Z_INDEX + ";";
 
 capture = new CaptureNS.MediaCapture();
 


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



[1/2] docs commit: Changed Makefile to work on Windows.

2015-11-19 Thread dblotsky
Repository: cordova-docs
Updated Branches:
  refs/heads/master f061b9804 -> 95c3b8c86


Changed Makefile to work on Windows.


Project: http://git-wip-us.apache.org/repos/asf/cordova-docs/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-docs/commit/b22af1a5
Tree: http://git-wip-us.apache.org/repos/asf/cordova-docs/tree/b22af1a5
Diff: http://git-wip-us.apache.org/repos/asf/cordova-docs/diff/b22af1a5

Branch: refs/heads/master
Commit: b22af1a59876738a946b2c1ae9f7d66ed3834570
Parents: f061b98
Author: Dmitry Blotsky 
Authored: Thu Nov 19 19:00:42 2015 -0800
Committer: Dmitry Blotsky 
Committed: Thu Nov 19 19:00:42 2015 -0800

--
 Makefile | 70 +--
 1 file changed, 58 insertions(+), 12 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/b22af1a5/Makefile
--
diff --git a/Makefile b/Makefile
index 33e9ae4..15c09c8 100644
--- a/Makefile
+++ b/Makefile
@@ -4,6 +4,21 @@
 # Variable Reference:
 #  
https://www.gnu.org/software/make/manual/html_node/Automatic-Variables.html
 
+# config
+ifeq ($(OS),Windows_NT)
+WINDOWS=1
+endif
+
+ifdef WINDOWS
+SHELL  = cmd
+JEKYLL = jekyll.bat
+MKDIRP = mkdir
+else
+SHELL  = sh
+JEKYLL = jekyll
+MKDIRP = mkdir -p
+endif
+
 # constants
 EMPTY =
 SPACE = $(EMPTY) $(EMPTY)
@@ -36,8 +51,13 @@ SASSC  = $(NODE_BIN_DIR)/node-sass
 BROWSERIFY = $(NODE_BIN_DIR)/browserify
 UGLIFY = $(NODE_BIN_DIR)/uglifyjs
 
-JEKYLL = jekyll
-# JEKYLL = jekyll.bat
+ifdef WINDOWS
+GULP   := $(subst /,\,$(GULP))
+LESSC  := $(subst /,\,$(LESSC))
+SASSC  := $(subst /,\,$(SASSC))
+BROWSERIFY := $(subst /,\,$(BROWSERIFY))
+UGLIFY := $(subst /,\,$(UGLIFY))
+endif
 
 # existing files
 MAIN_CONFIG = _config.yml
@@ -49,8 +69,13 @@ PLUGINS_SRC = $(PLUGINS_SRC_DIR)/app.js
 # NOTE:
 #  the .scss files are separate because they combine into MAIN_STYLE_FILE,
 #  which names them on its own, and the SCSS compiler takes care of them
+ifdef WINDOWS
+SCSS_SRC   = $(shell cd $(CSS_SRC_DIR) && dir *.scss /S /B)
+STYLES_SRC = $(shell cd $(CSS_SRC_DIR) && dir *.less *.css /S /B)
+else
 SCSS_SRC   = $(shell find $(CSS_SRC_DIR) -name "*.scss")
 STYLES_SRC = $(shell find $(CSS_SRC_DIR) -name "*.less" -or -name "*.css")
+endif
 
 # generated files
 VERSION_CONFIG  = _version.yml
@@ -95,7 +120,15 @@ help usage default:
@echo ""
 
 debug:
-   @echo "SCSS_SRC:" $(SCSS_SRC)
+   @echo "OS: " $(OS)
+   @echo ""
+   @echo "SCSS_SRC: " $(SCSS_SRC)
+   @echo ""
+   @echo "STYLES_SRC: " $(STYLES_SRC)
+   @echo ""
+   @echo "TOC_FILES: " $(TOC_FILES)
+   @echo ""
+   @echo "MKDIRP: " $(MKDIRP)
@echo ""
 
 data: $(TOC_FILES) $(LANGUAGES_DATA)
@@ -123,9 +156,13 @@ install:
bundle install
npm install
 
+serve:
+   cd $(DEV_DIR) && python -m SimpleHTTPServer 8000
+
 # real targets
 $(PLUGINS_APP): $(PLUGINS_SRC) Makefile
-   echo "---\n---" > $@
+   echo ---> $@
+   echo --->> $@
$(BROWSERIFY) -t reactify -t envify $< | $(UGLIFY) >> $@
 
 $(LANGUAGES_DATA): $(BIN_DIR)/gen_languages.js Makefile
@@ -135,7 +172,7 @@ $(DEFAULTS_CONFIG): $(BIN_DIR)/gen_defaults.js Makefile
$(NODE) $(BIN_DIR)/gen_defaults.js $(DOCS_DIR) > $@
 
 $(VERSION_CONFIG): VERSION Makefile
-   sed -e 's/^/$(VERSION_VAR_NAME): /' < $< > $@
+   sed -e "s/^/$(VERSION_VAR_NAME): /" < $< > $@
 
 $(TOC_FILES): $(BIN_DIR)/toc.js Makefile
$(NODE) $(BIN_DIR)/toc.js $(DOCS_DIR) $(DATA_DIR)
@@ -143,23 +180,26 @@ $(TOC_FILES): $(BIN_DIR)/toc.js Makefile
 $(MAIN_STYLE_FILE): $(SCSS_SRC)
 
 $(CSS_DEST_DIR)/%.css: $(CSS_SRC_DIR)/%.less Makefile
-   mkdir -p $(@D)
-   echo "---\n---" > $@
+   -$(MKDIRP) $(subst /,\,$(@D))
+   echo ---> $@
+   echo --->> $@
$(LESSC) $< >> $@
 
 $(CSS_DEST_DIR)/%.css: $(CSS_SRC_DIR)/%.scss Makefile
-   mkdir -p $(@D)
-   echo "---\n---" > $@
+   -$(MKDIRP) $(subst /,\,$(@D))
+   echo ---> $@
+   echo --->> $@
$(SASSC) $< >> $@
 
 $(CSS_DEST_DIR)/%.css: $(CSS_SRC_DIR)/%.css Makefile
-   mkdir -p $(@D)
-   echo "---\n---" > $@
+   -$(MKDIRP) $(subst /,\,$(@D))
+   echo ---> $@
+   echo --->> $@
cat $< >> $@
 
 # maintenance
 clean:
-   find . -name *.pyc -delete
+
$(RM) -r $(PROD_DIR) $(DEV_DIR)
$(RM) $(VERSION_CONFIG)
$(RM) $(DEFAULTS_CONFIG)
@@ -168,6 +208,12 @@ clean:
$(RM) $(PLUGINS_APP)
$(RM) -r $(CSS_DEST_DIR)
 
+# I couldn't find a way to do this on Windows
+ifdef WINDOWS
+else
+   find . -name *.pyc -delete
+endif
+
 nuke: clean
$(RM) -r node_modules
$(RM) Gemfile.lock



docs commit: CB-10020: Indicated the latest version in the docs version dropdown. This closes #424.

2015-11-18 Thread dblotsky
Repository: cordova-docs
Updated Branches:
  refs/heads/master c9175990c -> 1d69fcab9


CB-10020: Indicated the latest version in the docs version dropdown. This 
closes #424.


Project: http://git-wip-us.apache.org/repos/asf/cordova-docs/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-docs/commit/1d69fcab
Tree: http://git-wip-us.apache.org/repos/asf/cordova-docs/tree/1d69fcab
Diff: http://git-wip-us.apache.org/repos/asf/cordova-docs/diff/1d69fcab

Branch: refs/heads/master
Commit: 1d69fcab9263b847693450139779db963ae7b0ca
Parents: c917599
Author: riknoll 
Authored: Mon Nov 16 17:49:48 2015 -0800
Committer: Dmitry Blotsky 
Committed: Wed Nov 18 13:49:26 2015 -0800

--
 www/_layouts/docs.html| 14 --
 www/static/css-src/_docs.scss |  6 ++
 2 files changed, 18 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/1d69fcab/www/_layouts/docs.html
--
diff --git a/www/_layouts/docs.html b/www/_layouts/docs.html
index be462bd..c273711 100644
--- a/www/_layouts/docs.html
+++ b/www/_layouts/docs.html
@@ -115,6 +115,9 @@ analytics_id: UA-64283057-1
 
 
 {{ page.version }}
+{% if page.version == site.latest_docs_version %}
+(Latest)
+{% endif %}
 
 
 
@@ -125,6 +128,13 @@ analytics_id: UA-64283057-1
 {% capture current_version_path %}/docs/{{ 
page.language }}/{{ page.version }}/{% endcapture %}
 {% capture target_version_path %}/docs/{{ 
page.language }}/{{ version }}/{% endcapture %}
 
+{% capture version_entry_string %}
+{{ version }}
+{% if version == site.latest_docs_version %}
+(Latest)
+{% endif %}
+{% endcapture %}
+
 

docs commit: Refactored the title prefix into a global title suffix in _config.yml. This closes #423.

2015-11-18 Thread dblotsky
Repository: cordova-docs
Updated Branches:
  refs/heads/master 1d69fcab9 -> a8fa0b616


Refactored the title prefix into a global title suffix in _config.yml. This 
closes #423.


Project: http://git-wip-us.apache.org/repos/asf/cordova-docs/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-docs/commit/a8fa0b61
Tree: http://git-wip-us.apache.org/repos/asf/cordova-docs/tree/a8fa0b61
Diff: http://git-wip-us.apache.org/repos/asf/cordova-docs/diff/a8fa0b61

Branch: refs/heads/master
Commit: a8fa0b61693f8d02d9078e23f03729f0485ec5f9
Parents: 1d69fca
Author: riknoll 
Authored: Mon Nov 16 17:08:01 2015 -0800
Committer: Dmitry Blotsky 
Committed: Wed Nov 18 13:57:43 2015 -0800

--
 _config.yml   | 9 +
 www/_includes/head.html   | 6 +++---
 www/_layouts/docs-de.html | 1 -
 www/_layouts/docs-en.html | 1 -
 www/_layouts/docs-es.html | 1 -
 www/_layouts/docs-fr.html | 1 -
 www/_layouts/docs-it.html | 1 -
 www/_layouts/docs-ja.html | 1 -
 www/_layouts/docs-ko.html | 1 -
 www/_layouts/docs-pl.html | 1 -
 www/_layouts/docs-ru.html | 1 -
 www/_layouts/docs-sl.html | 1 -
 www/_layouts/docs-zh.html | 1 -
 www/artwork.html  | 2 +-
 www/blog/index.html   | 2 +-
 www/contact/index.html| 2 +-
 www/contribute/index.html | 2 +-
 www/index.html| 1 -
 www/plugins/authors.md| 2 +-
 www/plugins/faq.md| 2 +-
 www/plugins/index.html| 2 +-
 21 files changed, 15 insertions(+), 26 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/a8fa0b61/_config.yml
--
diff --git a/_config.yml b/_config.yml
index 601a859..d35871a 100644
--- a/_config.yml
+++ b/_config.yml
@@ -5,10 +5,11 @@
 # ===
 # Site settings
 # ===
-title:   Apache Cordova
-url: "https://cordova.apache.org; # the base hostname & protocol
-baseurl: "" # the subpath of the site, e.g. /blog; NOTE: no trailing slash
-rss_path:/feed.xml
+title:  Apache Cordova
+url:"https://cordova.apache.org; # the base hostname & protocol
+baseurl:"" # the subpath of the site, e.g. /blog; NOTE: no trailing 
slash
+title_suffix:   "Apache Cordova"
+rss_path:   /feed.xml
 description: >
 Apache Cordova is a set of device APIs that allow a web mobile app
 developer to access native device function from JavaScript.

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/a8fa0b61/www/_includes/head.html
--
diff --git a/www/_includes/head.html b/www/_includes/head.html
index 85c8816..5fe1974 100644
--- a/www/_includes/head.html
+++ b/www/_includes/head.html
@@ -8,10 +8,10 @@
 
 
 {% if page.title %}
-{% if page.title_prefix %}
-{{ page.title_prefix }} - {{ page.title }}
+{% if page.title_suffix %}
+{{ page.title }} - {{ page.title_suffix }}
 {% else %}
-{{ page.title }}
+{{ page.title }} - {{ site.title_suffix }}
 {% endif %}
 {% else %}
 {{ site.title }}

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/a8fa0b61/www/_layouts/docs-de.html
--
diff --git a/www/_layouts/docs-de.html b/www/_layouts/docs-de.html
index 2eea405..0e14f62 100644
--- a/www/_layouts/docs-de.html
+++ b/www/_layouts/docs-de.html
@@ -1,6 +1,5 @@
 ---
 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"

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/a8fa0b61/www/_layouts/docs-en.html
--
diff --git a/www/_layouts/docs-en.html b/www/_layouts/docs-en.html
index fc1624d..395c46f 100644
--- a/www/_layouts/docs-en.html
+++ b/www/_layouts/docs-en.html
@@ -1,6 +1,5 @@
 ---
 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"

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/a8fa0b61/www/_layouts/docs-es.html
--
diff --git a/www/_layouts/docs-es.html b/www/_layouts/docs-es.html
index d8fb721..b1d082e 100644
--- a/www/_layouts/docs-es.html
+++ b/www/_layouts/docs-es.html
@@ -1,6 +1,5 @@
 ---
 layout: docs
-title_prefix: "Apache Cordova"
 outdated_text: "Esta no es la versión más reciente de la 

docs commit: CB-10028: Made docs toc links relative to URL. This closes #425.

2015-11-18 Thread dblotsky
Repository: cordova-docs
Updated Branches:
  refs/heads/master ceffd6484 -> 2dea8baba


CB-10028: Made docs toc links relative to URL. This closes #425.


Project: http://git-wip-us.apache.org/repos/asf/cordova-docs/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-docs/commit/2dea8bab
Tree: http://git-wip-us.apache.org/repos/asf/cordova-docs/tree/2dea8bab
Diff: http://git-wip-us.apache.org/repos/asf/cordova-docs/diff/2dea8bab

Branch: refs/heads/master
Commit: 2dea8baba9ef30074d275d14687df40e0faa6988
Parents: ceffd64
Author: riknoll 
Authored: Tue Nov 17 14:45:25 2015 -0800
Committer: Dmitry Blotsky 
Committed: Wed Nov 18 19:55:51 2015 -0800

--
 www/_layouts/docs.html | 14 --
 1 file changed, 12 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/2dea8bab/www/_layouts/docs.html
--
diff --git a/www/_layouts/docs.html b/www/_layouts/docs.html
index c273711..4c27a03 100644
--- a/www/_layouts/docs.html
+++ b/www/_layouts/docs.html
@@ -12,6 +12,16 @@ analytics_id: UA-64283057-1
 {% assign tocfile = toc_dir.[page.generated_toc] %}
 {% endif %}
 
+{% comment %}
+
+{% endcomment %}
+
+{% assign url_split = page.url | split: "/" %}
+{% capture relative_base_path %}{% for item in url_split %}{% if 
forloop.index0 > 3 and forloop.rindex > 1 %}../{% endif %}{% endfor %}{% 
endcapture %}
+{% capture actual_base_path %}{% for item in url_split %}{% if forloop.index0 
< 4 and forloop.index0 != 0 %}/{{item}}{% endif %}{% endfor %}/{% endcapture %}
+
 
 
 
@@ -20,7 +30,7 @@ analytics_id: UA-64283057-1
 
 {% for entry in tocfile %}
 
-
+
 {{ entry.name }}
 
 {% if page.url == entry.url %}
@@ -44,7 +54,7 @@ analytics_id: UA-64283057-1
 
 {% for entry in tocfile %}
 
-
+
 {% if page.url == entry.url %}
 {{ entry.name }}
 {% else %}


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



[43/51] [partial] docs commit: CB-10029: rename edge to dev. This closes #426.

2015-11-18 Thread dblotsky
http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/f061b980/www/docs/de/dev/guide/platforms/ios/plugin.md
--
diff --git a/www/docs/de/dev/guide/platforms/ios/plugin.md 
b/www/docs/de/dev/guide/platforms/ios/plugin.md
new file mode 100644
index 000..2532584
--- /dev/null
+++ b/www/docs/de/dev/guide/platforms/ios/plugin.md
@@ -0,0 +1,184 @@
+---
+license: >
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+
+title: iOS Plugins
+---
+
+# iOS Plugins
+
+Dieser Abschnitt enthält Informationen für das native Plugin-Code auf der 
iOS-Plattform zu implementieren. Finden Sie bevor Sie dies lesen einen 
Überblick über die Plugin-Struktur und ihre gemeinsame 
JavaScript-Schnittstelle Anwendung Plugins. In diesem Abschnitt weiterhin das 
Beispiel- *Echo* -Plugin, das zum einheitlichen Plattform und zurück von 
Cordova-Webview kommuniziert.
+
+Ein iOS-Plugin ist implementiert als eine Objective-C-Klasse, die erweitert 
die `CDVPlugin` Klasse. Für JavaScript `exec` Methode `service` Parameter 
einer Objective-C Klasse, jeder Plugin-Klasse zuordnen muss registriert sein, 
als ein `` Tag im Verzeichnis Anwendung mit Namen `config.xml` Datei.
+
+## Plugin-Klasse Zuordnung
+
+Der JavaScript-Teil eines Plugins verwendet die `cordova.exec` -Methode, wie 
folgt:
+
+Exec (< SuccessFunction >, < FailFunction >, < Service >, < Aktion >, 
[< arg >]);
+
+
+Das marshallt ersuchen die `UIWebView` effektiv auf die native iOS-Seite 
aufrufen der `action` -Methode für die `service` -Klasse mit der übergebenen 
Argumente der `args` Array.
+
+Geben Sie das Plugin als ein `` Tag in Ihre 
Cordova-iOS-Anwendung-Projekt `config.xml` Datei, mit der `plugin.xml` Datei 
automatisch, wie unter Anwendung Plugins dieses Markup zu injizieren:
+
+
+
+
+
+
+Der Funktion `name` -Attribut sollte übereinstimmen, was Sie als das 
JavaScript angeben `exec` Anruf `service` Parameter. Das `value` -Attribut den 
Namen des Plugins Objective-C Klasse übereinstimmen sollte. Die `` des 
Elements `name` sollte immer sein `ios-package` . Wenn Sie diese Richtlinien 
nicht folgen, kann das Plugin kompiliert, aber Cordova möglicherweise noch 
nicht darauf zugreifen.
+
+## Plugin-Initialisierung und Lebensdauer
+
+Wird eine Instanz eines Plugin-Objekts erstellt, für das Leben eines jeden 
`UIWebView` . Plugins werden normalerweise instanziiert, wenn zunächst durch 
einen Aufruf von JavaScript verwiesen. Andernfalls sie instanziiert werden 
können, indem Sie festlegen einer `param` namens `onload` zu `true` in der 
`config.xml` Datei:
+
+
+
+
+
+
+
+Es gibt *keine* benannten Initialisierer für Plugins. Stattdessen sollten die 
Plugins verwenden die `pluginInitialize` -Methode für ihre Startlogik.
+
+Plugins mit lang andauernden Anfragen, background Aktivität wie 
Medienwiedergabe, Listener oder das pflegen internen Zustand sollten 
implementieren die `onReset` Methode, um diese Tätigkeiten zu bereinigen. Die 
Methode ausgeführt wird, wenn die `UIWebView` navigiert zu einer neuen Seite 
oder Aktualisierungen, die das JavaScript lädt.
+
+## Ein iOS Cordova Plugin schreiben
+
+Ein JavaScript-Aufruf feuert eine Plugin-Anforderung an die systemeigene Seite 
und der entsprechenden iOS Objective-C Plugin zugeordnet ist, richtig in die 
`config.xml` -Datei, aber wie sieht das Finale iOS Objective-C Plugin Klasse 
aussehen? Was auch immer an das Plugin mit JavaScript gesendet wird `exec` 
Funktion wird in der entsprechenden Plugin-Klasse übergeben `action` Methode. 
Eine Plugin-Methode hat diese Signatur:
+
+- (void)myMethod:(CDVInvokedUrlCommand*)command
+{
+CDVPluginResult* pluginResult = nil;
+NSString* myarg = [command.arguments objectAtIndex:0];
+
+if (myarg != nil) {
+pluginResult = [CDVPluginResult 
resultWithStatus:CDVCommandStatus_OK];
+} else {
+pluginResult = [CDVPluginResult 
resultWithStatus:CDVCommandStatus_ERROR messageAsString:@"Arg was null"];
+}
+[self.commandDelegate 

svn commit: r1715095 - in /cordova/site/public/docs/de: dev/ edge/

2015-11-18 Thread dblotsky
Author: dblotsky
Date: Thu Nov 19 05:47:45 2015
New Revision: 1715095

URL: http://svn.apache.org/viewvc?rev=1715095=rev
Log:
Renaming German edge -> dev.

Added:
cordova/site/public/docs/de/dev/
  - copied from r1715094, cordova/site/public/docs/de/edge/
Removed:
cordova/site/public/docs/de/edge/


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



svn commit: r1715096 - in /cordova/site/public/docs: en/dev/ en/edge/ es/dev/ es/edge/ fr/dev/ fr/edge/ it/dev/ it/edge/ ja/dev/ ja/edge/ ko/dev/ ko/edge/ pl/dev/ pl/edge/ ru/dev/ ru/edge/ sl/dev/ sl/

2015-11-18 Thread dblotsky
Author: dblotsky
Date: Thu Nov 19 05:50:48 2015
New Revision: 1715096

URL: http://svn.apache.org/viewvc?rev=1715096=rev
Log:
Renaming other edge -> dev.

Added:
cordova/site/public/docs/en/dev/
  - copied from r1715094, cordova/site/public/docs/en/edge/
cordova/site/public/docs/es/dev/
  - copied from r1715094, cordova/site/public/docs/es/edge/
cordova/site/public/docs/fr/dev/
  - copied from r1715094, cordova/site/public/docs/fr/edge/
cordova/site/public/docs/it/dev/
  - copied from r1715094, cordova/site/public/docs/it/edge/
cordova/site/public/docs/ja/dev/
  - copied from r1715094, cordova/site/public/docs/ja/edge/
cordova/site/public/docs/ko/dev/
  - copied from r1715094, cordova/site/public/docs/ko/edge/
cordova/site/public/docs/pl/dev/
  - copied from r1715094, cordova/site/public/docs/pl/edge/
cordova/site/public/docs/ru/dev/
  - copied from r1715094, cordova/site/public/docs/ru/edge/
cordova/site/public/docs/sl/dev/
  - copied from r1715094, cordova/site/public/docs/sl/edge/
cordova/site/public/docs/zh/dev/
  - copied from r1715094, cordova/site/public/docs/zh/edge/
Removed:
cordova/site/public/docs/en/edge/
cordova/site/public/docs/es/edge/
cordova/site/public/docs/fr/edge/
cordova/site/public/docs/it/edge/
cordova/site/public/docs/ja/edge/
cordova/site/public/docs/ko/edge/
cordova/site/public/docs/pl/edge/
cordova/site/public/docs/ru/edge/
cordova/site/public/docs/sl/edge/
cordova/site/public/docs/zh/edge/


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



[30/51] [partial] docs commit: CB-10029: rename edge to dev. This closes #426.

2015-11-18 Thread dblotsky
http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/f061b980/www/docs/de/edge/guide/platforms/wp8/vmware.md
--
diff --git a/www/docs/de/edge/guide/platforms/wp8/vmware.md 
b/www/docs/de/edge/guide/platforms/wp8/vmware.md
deleted file mode 100644
index 1d6d113..000
--- a/www/docs/de/edge/guide/platforms/wp8/vmware.md
+++ /dev/null
@@ -1,51 +0,0 @@

-license: >
-Licensed to the Apache Software Foundation (ASF) under one
-or more contributor license agreements.  See the NOTICE file
-distributed with this work for additional information
-regarding copyright ownership.  The ASF licenses this file
-to you under the Apache License, Version 2.0 (the
-"License"); you may not use this file except in compliance
-with the License.  You may obtain a copy of the License at
-
-http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing,
-software distributed under the License is distributed on an
-"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-KIND, either express or implied.  See the License for the
-specific language governing permissions and limitations
-under the License.
-
-title: Konfiguration von VMWare Fusion

-
-# Konfiguration von VMWare Fusion
-
-Dieser Abschnitt zeigt, wie VMWare Fusion auf dem Mac so konfigurieren, dass 
Sie Cordova verwenden können, um Windows Phone-Anwendungen zu generieren.
-
-Das [Microsoft Developer Network][1] bietet allgemeine Anweisungen zum 
Ausführen von Windows unter VMWare Fusion. Nach der Installation von Windows, 
die folgenden Schritte aus:
-
- [1]: http://msdn.microsoft.com/en-US/library/windows/apps/jj945426
-
-1.  VMWare Fusion wählen Sie die Image-Datei von Windows 8, die Sie 
vorbereitet haben, und wählen Sie **Einstellungen**.
-
-2.  Wählen Sie die **Prozessoren & Speicher** -Konfigurationsoptionen. Geben 
Sie, *zwei* Prozessorkerne und **Hypervisor-Anwendungen in dieser virtuellen 
Maschine zu ermöglichen**:
-
-![][2]
-
-Der Windows Phone-Emulator allein verwendet die Hälfte eine Gigabyte 
Arbeitsspeicher, also insgesamt reservieren Sie mindestens 2 GB für VMWare.
-
-3.  Wählen Sie die **erweitert** . Aktivieren der **bevorzugte 
Virtualisierungs-Engine: Intel VT-X mit EPT** Option:
-
-![][3]
-
-4.  Ändern Sie die *.vmx* -Datei hinzufügen oder ändern die folgenden 
Einstellungen:
-
-Hypervisor.cpuid.v0 = "FALSE" mce.enable = "TRUE" vhv.enable = "TRUE"
-
-
- [2]: {{ site.baseurl }}/static/img/guide/platforms/wp8/vmware_memory_opts.png
- [3]: {{ site.baseurl 
}}/static/img/guide/platforms/wp8/vmware_advanced_opts.png
-
-Nachdem Sie diese Schritte abgeschlossen haben, können Sie dann das Windows 
Phone SDK installieren. Finden Sie im Windows Phone 8 Plattform für Details.

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/f061b980/www/docs/de/edge/guide/platforms/wp8/webview.md
--
diff --git a/www/docs/de/edge/guide/platforms/wp8/webview.md 
b/www/docs/de/edge/guide/platforms/wp8/webview.md
deleted file mode 100644
index 3a49813..000
--- a/www/docs/de/edge/guide/platforms/wp8/webview.md
+++ /dev/null
@@ -1,45 +0,0 @@

-license: >
-Licensed to the Apache Software Foundation (ASF) under one
-or more contributor license agreements.  See the NOTICE file
-distributed with this work for additional information
-regarding copyright ownership.  The ASF licenses this file
-to you under the Apache License, Version 2.0 (the
-"License"); you may not use this file except in compliance
-with the License.  You may obtain a copy of the License at
-
-http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing,
-software distributed under the License is distributed on an
-"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-KIND, either express or implied.  See the License for the
-specific language governing permissions and limitations
-under the License.
-
-title: Windows Phone 8,0 Webansichten für

-
-# Windows Phone 8,0 Webansichten für
-
-Diese Anleitung zeigt, wie eine Cordova-fähigen WebView Komponente innerhalb 
einer größeren Windows Phone 8.0-Anwendung einbetten.
-
-Um diese Anweisungen befolgen, stellen Sie sicher, dass Sie die neueste 
Cordova-Verteilung. Von [cordova.apache.org](http://cordova.apache.org) 
herunterladen Sie und entpacken Sie des Windows Phone 8.0-Pakets 
(Cordova-wp8-*.zip).
-
-  1. Navigieren Sie zu des Pakets `wp8/framework` Verzeichnis und Build 
`WPCordovaClassLib.sln` . Es schafft 
die`Bin\Debug[Release]\WPCordovaClassLib.dll`.
-
-  2. Kopie der `WPCordovaClassLib.dll` Datei in des Windows Phone 8-Projekts 
`/libs` Verzeichnis und `WPCordovaClassLib.dll` zu Ihrem Projekt über 
`Project->References->Add 

[17/51] [partial] docs commit: CB-10029: rename edge to dev. This closes #426.

2015-11-18 Thread dblotsky
http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/f061b980/www/docs/en/edge/guide/platforms/win8/index.md
--
diff --git a/www/docs/en/edge/guide/platforms/win8/index.md 
b/www/docs/en/edge/guide/platforms/win8/index.md
deleted file mode 100644
index 214869f..000
--- a/www/docs/en/edge/guide/platforms/win8/index.md
+++ /dev/null
@@ -1,292 +0,0 @@

-license: >
-Licensed to the Apache Software Foundation (ASF) under one
-or more contributor license agreements.  See the NOTICE file
-distributed with this work for additional information
-regarding copyright ownership.  The ASF licenses this file
-to you under the Apache License, Version 2.0 (the
-"License"); you may not use this file except in compliance
-with the License.  You may obtain a copy of the License at
-
-http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing,
-software distributed under the License is distributed on an
-"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-KIND, either express or implied.  See the License for the
-specific language governing permissions and limitations
-under the License.
-
-title: Windows Platform Guide

-
-# Windows Platform Guide
-
-This guide shows how to set up your SDK development environment to build 
-and deploy Cordova apps for Windows 8, Windows 8.1, Windows Phone 8.1, and 
-Windows 10 Universal App Platform.  It shows how to use either shell tools 
-to generate and build apps, or the cross-platform Cordova CLI discussed in 
-[The Command-Line Interface](../../cli/index.html). (See the 
[Overview](../../overview/index.html) for a comparison of these 
-development options.) This section also shows how to modify Cordova apps 
-within Visual Studio. Regardless of which approach you take, you need to 
-install the Visual Studio SDK, as described below.
-
-See [Upgrading Windows 8](upgrade.html) for information on how to upgrade 
existing
-Windows 8 Cordova projects.
-
-Window Phone 8 (wp8) stays as a separate platform,
-see [Windows Phone 8 Platform Guide](../wp8/index.html) for details.
-
-Cordova WebViews running on Windows rely on Internet Explorer 10 (Windows 8.0)
-and Internet Explorer 11 (Windows 8.1 and Windows Phone 8.1) as
-their rendering engine, so as a practical matter you can use IE's
-powerful debugger to test any web content that doesn't invoke Cordova
-APIs.  The Windows Phone Developer Blog provides
-[helpful 
guidance](http://blogs.windows.com/windows_phone/b/wpdev/archive/2012/11/15/adapting-your-webkit-optimized-site-for-internet-explorer-10.aspx)
-on how to support IE along with comparable WebKit browsers.
-
-## Requirements and Support
-
-To develop apps for Windows platform you need:
-
-- A Windows 8.1, 32 or 64-bit machine (_Home_, _Pro_, or _Enterprise_ 
editions) with minimum 4 GB of RAM.
-
-- Windows 8.0, 8.1 or 10, 32 or 64-bit _Home_, _Pro_, or _Enterprise_
-  editions, along with
-  [Visual Studio 2012 Express](http://www.visualstudio.com/downloads) 
-  or Visual Studio 2013.  Visual Studio 2015 is not able to build Windows 8.0 
apps.
-
-To develop apps for Windows 8.0 and 8.1 (including Windows Phone 8.1):
-
-- Windows 8.1 or Windows 10, 32 or 64-bit _Home_, _Pro_, or _Enterprise_ 
editions,
-  along with 
-  [Visual Studio 2013 Express](http://www.visualstudio.com/downloads)
-  or higher. An evaluation version of Windows 8.1 Enterprise is
-  available from the
-  [Microsoft Developer 
Network](http://msdn.microsoft.com/en-US/evalcenter/jj554510).
-
-- For the Windows Phone emulators, Windows 8.1 (x64) Professional edition or 
higher,
-and a processor that supports Client
 Hyper-V and Second Level Address Translation (SLAT).
-An evaluation version of Windows 8.1 Enterprise is available from the
-[Microsoft Developer 
Network](http://msdn.microsoft.com/en-US/evalcenter/jj554510).
-
-- [Visual Studio 2013 for 
Windows](http://www.visualstudio.com/downloads/download-visual-studio-vs#d-express-windows-8)
 (Express or higher).
-
-To develop apps for Windows 10:
-
-- Windows 8.1 or Windows 10 Technical Preview 2, 32- or 64-bit, along with
-  [Visual Studio 2015 RC](http://www.visualstudio.com/preview) or higher.
-
-App compatibility is determined by the OS that the app targeted.  Apps are 
forwardly-compatible
-but not backwardly-compatible, so an app targeting Windows 8.1 cannot run on 
8.0, but 
-an app built for 8.0 can run on 8.1.
-
-Follow the instructions at
-[windowsstore.com](http://www.windowsstore.com/)
-to submit the app to Windows Store.
-
-To develop Cordova apps for Windows, you may use a PC running
-Windows, but you may also develop on a Mac, either by running a
-virtual machine environment or by using Boot Camp to dual-boot a
-Windows 8.1 partition. Consult these resources to set up the required
-Windows development environment on a Mac:
-
-- [VMWare 

[42/51] [partial] docs commit: CB-10029: rename edge to dev. This closes #426.

2015-11-18 Thread dblotsky
http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/f061b980/www/docs/de/dev/guide/platforms/ios/upgrading.md
--
diff --git a/www/docs/de/dev/guide/platforms/ios/upgrading.md 
b/www/docs/de/dev/guide/platforms/ios/upgrading.md
new file mode 100644
index 000..5fbc752
--- /dev/null
+++ b/www/docs/de/dev/guide/platforms/ios/upgrading.md
@@ -0,0 +1,754 @@
+---
+license: >
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+
+title: IOS Upgrade
+---
+
+# IOS Upgrade
+
+Diese Anleitung zeigt wie iOS-Projekte von älteren Versionen von Cordova 
upgedatet werden. Die meisten diese Anweisungen gelten für Projekte, die mit 
einer älteren Befehlszeilentools, die vorangehen erstellt die `cordova` 
CLI-Hilfsprogramm. Die Command-Line Interface Informationen finden Sie unter 
Gewusst wie: Aktualisieren Sie die Version der CLI.
+
+**Hinweis**: Xcode 4.6 ist erforderlich, Xcode-5 wird empfohlen. Derzeit um 
die Apple-App-Store zu übermitteln, verwenden Sie die neueste ausgelieferte 
Version des iOS SDK, welches ist iOS 7. iOS 7 SDK noch nicht erforderlich, aber 
dies kann sich schnell ändern.
+
+## Upgrade 3.1.0 Projekte zu 3.2.0
+
+Für nicht-CLI Projekte führen:
+
+bin/Pfad/zu/Projekt-update
+
+
+CLI-Projekte:
+
+1.  Update der `cordova` CLI-Version. Finden Sie die 
Befehlszeilenschnittstelle.
+
+2.  Ausführen`cordova platform update ios`
+
+## Upgrade 3.0.0 Projekte zu 3.1.0
+
+Für nicht-CLI Projekte führen:
+
+bin/Pfad/zu/Projekt-update
+
+
+CLI-Projekte:
+
+1.  Update der `cordova` CLI-Version. Finden Sie die 
Befehlszeilenschnittstelle.
+
+2.  Ausführen`cordova platform update ios`
+
+iOS 7 Fragen:
+
+1.  Entfernen von `width=device-width, height=device-height` aus der 
`index.html` Datei `viewport` `meta` Tag. (Siehe [die relevant-bug][1].)
+
+2.  Aktualisieren Sie Ihre Medien, Medien-Capture und Splashscreen 
Core-Plugins für iOS 7 Unterstützung.
+
+ [1]: https://issues.apache.org/jira/browse/CB-4323
+
+Xcode 5 Fragen:
+
+1.  Aktualisieren Sie die Projekteinstellungen ändern, wenn Sie Xcode-5 (in 
den Themen-Navigator) dazu aufgefordert werden.
+
+2.  Update Ihrer **Compiler für C / C + + / Objective-C** festlegen, unter 
der Registerkarte **Buildeinstellungen** **Erstellungsoptionen** Abschnitt. 
Wählen Sie **Standard-Compiler (Apple LLVM 5.0)**.
+
+## Upgrade auf die CLI (3.0.0) von 2.9.0
+
+1.  Erstellen Sie ein neues Apache Cordova 3.0.0-Projekt mit Cordova CLI, wie 
in der Command-Line Interface beschrieben.
+
+2.  Die Plattformen der Cordova Projekt fügen Sie hinzu, zum Beispiel:`cordova
+platform add ios`.
+
+3.  Kopieren Sie den Inhalt des Projekts `www` Verzeichnis in das `www` 
Verzeichnis im Stammverzeichnis des Projektes Cordova, die Sie gerade erstellt 
haben.
+
+4.  Kopieren oder nativen Vermögen aus dem ursprünglichen Projekt zu 
überschreiben ( `Resources` usw.), die sicher um jede neuen Dateien zu den 
`.xcodeproj` Projekt. Das iOS-Projekt erstellt, in das `platforms\ios` 
Verzeichnis.
+
+5.  Kopie Ihrer `config.xml` in das `www` Verzeichnis und entfernen Sie alle 
Plugin-Definitionen. Ändern Sie die Einstellungen hier anstelle des 
Plattform-Verzeichnisses.
+
+6.  Verwenden Sie Cordova-CLI-Tool, um alle Plugins zu installieren, die Sie 
brauchen. Beachten Sie, dass die CLI behandelt alle Kern-APIs als Plugins, so 
müssen sie möglicherweise hinzugefügt werden. Nur 3.0.0 Plugins sind 
kompatibel mit CLI.
+
+7.  Erstellen und testen.
+
+## Upgrade 2.9.0 Projekte 3.0.0
+
+1.  Herunterladen Sie und extrahieren Sie die Cordova 3.0.0-Quelle zu einem 
permanenten Speicherort auf Ihrer Festplatte, zum Beispiel 
in`~/Documents/Cordova-3.0.0`.
+
+2.  Beenden Sie Xcode, wenn es geöffnet ist.
+
+3.  Terminal.app verwenden, navigieren Sie zu dem Verzeichnis, in dem Sie die 
heruntergeladene Quelle oben setzen.
+
+4.  Erstellen Sie ein neues Projekt, wie in iOS Command-Line Tools 
beschrieben. Sie benötigen die Vermögen aus diesem neuen Projekt.
+
+5.  Kopie der `www/cordova.js` (Beachten Sie, dass es muss ein Version-Suffix 
nicht mehr, die Version ist in der Datei selbst in der Kopfzeile) Datei aus dem 
neuen Projekt in 

[25/51] [partial] docs commit: CB-10029: rename edge to dev. This closes #426.

2015-11-18 Thread dblotsky
http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/f061b980/www/docs/en/dev/guide/platforms/ios/config.md
--
diff --git a/www/docs/en/dev/guide/platforms/ios/config.md 
b/www/docs/en/dev/guide/platforms/ios/config.md
new file mode 100644
index 000..d316d0d
--- /dev/null
+++ b/www/docs/en/dev/guide/platforms/ios/config.md
@@ -0,0 +1,173 @@
+---
+license: >
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+
+title: iOS Configuration
+---
+
+# iOS Configuration
+
+The `config.xml` file controls an app's basic settings that apply
+across each application and CordovaWebView instance. This section
+details preferences that only apply to iOS builds. See [The config.xml
+File](config_ref_index.md.html#The%20config.xml%20File) for information on 
global configuration options.
+
+- `EnableViewportScale` (boolean, defaults to `false`): Set to `true`
+  to allow a viewport meta tag to either disable or restrict the range
+  of user scaling, which is enabled by default.
+
+
+
+  Place a viewport such as the following in the HTML to disable
+  scaling and fit content flexibly within the rendering WebView:
+
+
+
+- `MediaPlaybackAllowsAirPlay` (boolean, defaults to `true`):
+  Set to `false` to prevent Air Play from being used in this view. Available 
in default UIWebView and WKWebView.
+
+
+
+- `MediaPlaybackRequiresUserAction` (boolean, defaults to `false`):
+  Set to `true` to prevent HTML5 videos or audios from playing
+  automatically with the `autoplay` attribute or via JavaScript.
+
+
+
+- `AllowInlineMediaPlayback` (boolean, defaults to `false`): Set to
+  `true` to allow HTML5 media playback to appear _inline_ within the
+  screen layout, using browser-supplied controls rather than native
+  controls. For this to work, add the `webkit-playsinline` attribute
+  to any `` elements.
+
+
+
+- `BackupWebStorage` (string, either `none`, `local`, or the default
+  `cloud`): Set to `cloud` to allow web storage data to backup via
+  iCloud. Set to `local` to allow only local backups via iTunes
+  sync. Set to `none` prevent web storage backups.
+
+
+
+- `TopActivityIndicator` (string, defaults to `gray`): Controls the
+  appearance of the small spinning icon in the status bar that
+  indicates significant processor activity.  Valid values are
+  `whiteLarge`, `white`, and `gray`.
+
+
+
+- `KeyboardDisplayRequiresUserAction` (boolean, defaults to `true`):
+  Set to `false` to allow the keyboard to appear when calling
+  `focus()` on form inputs.
+
+
+
+- `SuppressesIncrementalRendering` (boolean, defaults to `false`): Set
+  to `true` to wait until all content has been received before it
+  renders to the screen.
+
+
+
+- `GapBetweenPages` (float, defaults to `0`): The size of the gap, in points, 
between pages.
+
+
+
+- `PageLength` (float, defaults to `0`): The size of each page, in points, in 
the
+  direction that the pages flow. When PaginationMode is right to left or left 
to right,
+  this property represents the width of each page. When PaginationMode is 
topToBottom
+  or bottomToTop, this property represents the height of each page. The 
default value
+  is 0, which means the layout uses the size of the viewport to determine the 
dimensions
+  of the page.
+
+
+
+- `PaginationBreakingMode` (string, defaults to `page`): Valid values are 
`page` and
+  `column`.The manner in which column- or page-breaking occurs. This property
+  determines whether certain CSS properties regarding column- and 
page-breaking are
+  honored or ignored. When this property is set to `column`,  the content 
respects
+  the CSS properties related to column-breaking in place of page-breaking.
+
+
+
+- `PaginationMode` (string, defaults to `unpaginated`): Valid values are 
`unpaginated`,
+  `leftToRight`, `topToBottom`, `bottomToTop`, and `rightToLeft`. This 
property determines
+  whether content in the web view is broken up into pages that fill the view 
one screen
+  at a time, or shown as one long scrolling view. If set to a paginated form, 
this
+  property toggles a paginated layout on the 

[45/51] [partial] docs commit: CB-10029: rename edge to dev. This closes #426.

2015-11-18 Thread dblotsky
http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/f061b980/www/docs/de/dev/guide/platforms/blackberry/index.md
--
diff --git a/www/docs/de/dev/guide/platforms/blackberry/index.md 
b/www/docs/de/dev/guide/platforms/blackberry/index.md
new file mode 100644
index 000..420410f
--- /dev/null
+++ b/www/docs/de/dev/guide/platforms/blackberry/index.md
@@ -0,0 +1,170 @@
+---
+license: >
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+
+title: Handbuch der BlackBerry-Plattform
+---
+
+# Handbuch der BlackBerry-Plattform
+
+Diese Anleitung zeigt Ihnen wie ein SDK-Umfeld zu Zielanwendungen für die 
BlackBerry-Plattform vor Version 10 eingerichtet. Wenn Sie die aktuellste 
Version ansprechen möchten, finden Sie im BlackBerry-10-Plattform-Guide. 
Finden Sie im folgenden detaillierte Plattform-spezifischen Informationen:
+
+*   BlackBerry Configuration
+*   [Aktualisieren der BlackBerry](upgrading.html)
+*   [BlackBerry-Plugins](plugin.html)
+*   [BlackBerry-Befehlszeilentools](tools.html)
+
+Die Befehlszeilentools, die oben beziehen sich auf Versionen vor 3.0 Cordova. 
Informationen über die aktuelle Schnittstelle finden Sie unter The 
Command-Line Interface.
+
+## Anforderungen und Unterstützung
+
+Dieser BlackBerry-Version wird nicht unterstützt, durch die `cordova` in der 
Command-Line Interface, sondern durch einen separaten Satz von 
Befehlszeilentools beschriebenen Dienstprogramm. Laden Sie die 
Cordova-Verteilung von [cordova.apache.org][1].
+
+ [1]: http://cordova.apache.org/#download
+
+Cordova für BlackBerry basiert auf dem [BlackBerry WebWorks-Rahmen][2], der 
für Windows XP (32-Bit) verfügbar ist, Windows 7 (32-Bit und 64-Bit) und Mac 
(OS X 10.6.4+). WebWorks Anwendungen können *nur* werden auf die folgenden 
BlackBerry Plattformen bereitgestellt:
+
+ [2]: https://bdsc.webapps.blackberry.com/html5
+
+*   BlackBerry OS 5.0 und höher
+*   BlackBerry PlayBook
+*   BlackBerry 10 (QNX)
+
+WebWorks erfordert das Java Development Kit (JDK). Verwenden Sie für Windows 
32-Bit-Version von [Oracle JDK][3]. Java in installiert standardmäßig unter 
Mac OS X bis Version 10.7, die [eine separate Installation][4]erfordert. Es 
erfordert auch Apache Ant, die auf dem Mac ist Bestandteil der 
Java-Installation. Die Windows-Version ist verfügbar von [ant.apache.org][5].
+
+ [3]: http://www.oracle.com/technetwork/java/javase/downloads/index.html#jdk
+ [4]: http://support.apple.com/kb/DL1421
+ [5]: http://ant.apache.org/bindownload.cgi
+
+## Das SDK installieren
+
+Downloaden Sie und installieren Sie das entsprechende WebWorks-SDK für Ihre 
Entwicklung. BlackBerry PlayBook und BlackBerry Smartphone WebWorks SDKs 
können unter den folgenden Adressen heruntergeladen werden.
+
+*   \[BlackBerry PlayBook SDK\] 
(https://developer.blackberry.com/html5/download/#playbook) und [Adobe 
Air-SDK][6]
+
+*   \[BlackBerry Smartphones SDK\] 
(https://developer.blackberry.com/html5/download/#smartphones)
+
+ [6]: http://www.adobe.com/devnet/air/air-sdk-download.html
+
+## Registrieren Sie sich für Signaturschlüssel
+
+Wenn Sie Ihre Anwendung auf BlackBerry App World oder auf einem tatsächlichen 
Gerät veröffentlichen möchten, müssen Sie für eine Reihe von kostenlosen 
Code Signing Keys registrieren. Hierzu füllen Sie das [Bestellformular für 
BlackBerry-Schlüssel][7]. Sobald Sie Ihre Signatur-Schlüssel erhalten haben, 
müssen sie Setup. Siehe die [BlackBerry HTML5/WebWorks-Website][8] 
Informationen.
+
+ [7]: https://www.blackberry.com/SignedKeys
+ [8]: 
https://developer.blackberry.com/html5/documentation/signing_setup_bb10_apps_2008396_11.html
+
+## Installieren von Cordova
+
+Herunterladen Sie und extrahieren Sie die neueste Kopie von [Cordova][1].
+
+## Einrichten eines neuen Projekts
+
+*   Öffnen Sie eine Command-Line Terminal und navigieren Sie zum entpackten 
Cordova.
+
+*   Es ist ein Verzeichnis für jede Plattform, Cordova unterstützt. 
Navigieren Sie zu dem `blackberry` Verzeichnis.
+
+*   Das `blackberry` Verzeichnis enthält mehrere Unterverzeichnisse. Das 
`example` -Verzeichnis enthält ein komplettes Cordova-Projekt. Kopie der 
`example` Verzeichnis 

[50/51] [partial] docs commit: CB-10029: rename edge to dev. This closes #426.

2015-11-18 Thread dblotsky
http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/f061b980/_config.yml
--
diff --git a/_config.yml b/_config.yml
index 946b278..c528500 100644
--- a/_config.yml
+++ b/_config.yml
@@ -21,7 +21,7 @@ repo:
 
 # NOTE:
 #  this value gets overwritten in _version.yml, which is a generated file
-latest_docs_version: edge
+latest_docs_version: dev
 
 # NOTE:
 #  this value might get overwritten on some pages; see _defaults.yml

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/f061b980/_dev.yml
--
diff --git a/_dev.yml b/_dev.yml
index 224b846..c491180 100644
--- a/_dev.yml
+++ b/_dev.yml
@@ -41,4 +41,4 @@ exclude:
 - docs/en/5.0.0
 - docs/en/5.1.1
 #- docs/en/5.4.0
-#- docs/en/edge
+#- docs/en/dev

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/f061b980/doc/README/de/README.md
--
diff --git a/doc/README/de/README.md b/doc/README/de/README.md
index 90dc430..ea5f4e1 100644
--- a/doc/README/de/README.md
+++ b/doc/README/de/README.md
@@ -72,8 +72,8 @@ Jetzt konnte die Dokumentation mit Node.js entweder auf 
Windows oder Linux-Rechn
 
 $ rm -r tmp public  # Clear out old docs
 $ ./bin/genjs   # compile all docs
-$ ./bin/genjs en edge   # compile English Edge docs
-$ ./bin/genjs ru edge   # compile Russian Edge docs
+$ ./bin/genjs en dev# compile English dev docs
+$ ./bin/genjs ru dev# compile Russian dev docs
 $ ./bin/genjs es 3.5.0  # compile Spanish 3.5.0 docs
 
 

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/f061b980/doc/README/en/README.md
--
diff --git a/doc/README/en/README.md b/doc/README/en/README.md
index 1e2daad..92c2869 100644
--- a/doc/README/en/README.md
+++ b/doc/README/en/README.md
@@ -67,8 +67,8 @@ Right now documentation could be run using Node.js either on 
Windows, or on Linu
 
 $ rm -r tmp public  # Clear out old docs
 $ ./bin/genjs   # compile all docs
-$ ./bin/genjs en edge   # compile English Edge docs
-$ ./bin/genjs ru edge   # compile Russian Edge docs
+$ ./bin/genjs en dev# compile English dev docs
+$ ./bin/genjs ru dev# compile Russian dev docs
 $ ./bin/genjs es 3.5.0  # compile Spanish 3.5.0 docs
 
 ### Setting up Node.js
@@ -129,7 +129,7 @@ Usage:
 
 bin\fixyaml # Runs fixyaml across all docs.
 bin\fixyaml ru  # Runs fixyaml across all Russian docs.
-bin\fixyaml ru edge # Runs fixyaml on the latest Russian docs.
+bin\fixyaml ru dev  # Runs fixyaml on the latest Russian docs.
 bin\fixyaml ru 5.0.0# Runs fixyaml on the version 5.0.0 of Russian 
docs.
 
 ### Translation Report tool.
@@ -185,37 +185,37 @@ Now you ready to download content from CrowdIn. Run 
following commands (All comm
 4. Copy the unpacked content to the `docs` folder.
 * on Linux:
 
-cp tmp/ru/cordova-docs/docs/ru/edge/* docs/ru/edge/
+cp tmp/ru/cordova-docs/docs/ru/dev/* docs/ru/dev/
 
 * on Windows:
 
-xcopy tmp/ru/cordova-docs/docs/ru/edge/* docs/ru/edge/
+xcopy tmp/ru/cordova-docs/docs/ru/dev/* docs/ru/dev/
 
 5. Remove temporary directory. In my case `tmp/ru`. Now you have fresh 
translation and could generate content.
 
 6. Fix Yaml headers by running.
 
-bin/fixyaml ru edge
+bin/fixyaml ru dev
 
 7. Run generator. You should generate both English version and language which 
you tranlate.
 
-bin/genjs en edge
-bin/genjs ru edge
+bin/genjs en dev
+bin/genjs ru dev
 
-The generated documentation contains in the `public/en/edge` and 
`public/ru/edge`
+The generated documentation contains in the `public/en/dev` and 
`public/ru/dev`
 
 You need both versions, to validate that translated docs would have same 
structure as original documentation.
 
 8. Validate you translation.
 
-bin/translationreport ru edge
+bin/translationreport ru dev
 
 This will give you list of files which has structural differences from the 
original docs.
 Below the example output:
 
-=> Validating translation for version edge on language ru...
-Comparing C:\Users\kant\Documents\GitHub\cordova-docs\public\en\edge
-with C:\Users\kant\Documents\GitHub\cordova-docs\public\ru\edge
+=> Validating translation for version dev on language ru...
+Comparing C:\Users\kant\Documents\GitHub\cordova-docs\public\en\dev
+with C:\Users\kant\Documents\GitHub\cordova-docs\public\ru\dev
 Path guide_platforms_blackberry10_upgrade.md.html is different.
 Path guide_platforms_blackberry_upgrade.md.html is different.
 Path guide_platforms_ios_tools.md.html is different.
@@ -227,7 +227,7 @@ 

[13/51] [partial] docs commit: CB-10029: rename edge to dev. This closes #426.

2015-11-18 Thread dblotsky
http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/f061b980/www/docs/es/dev/guide/next/index.md
--
diff --git a/www/docs/es/dev/guide/next/index.md 
b/www/docs/es/dev/guide/next/index.md
new file mode 100644
index 000..b64ee16
--- /dev/null
+++ b/www/docs/es/dev/guide/next/index.md
@@ -0,0 +1,258 @@
+---
+license: >
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+
+title: Próximos pasos
+---
+
+# Próximos pasos
+
+Para los desarrolladores que tienen una comprensión de cómo utilizar el CLI 
Cordova y hacer uso de plugins, hay algunas cosas que usted puede desear 
considerar investigar junto a construir mejor, más performantes Cordova 
aplicaciones. El siguiente documento ofrece consejos sobre diversos temas 
relativos a las mejores prácticas, pruebas, actualizaciones y otros temas, 
pero no está destinado a ser prescriptivo. Considera esto como su punta de 
lanza para su crecimiento como desarrollador de Córdoba. Además, si ves algo 
que se puede mejorar, por favor [contribuir][1]!
+
+ [1]: http://cordova.apache.org/#contribute
+
+Esta guía contiene los siguientes temas:
+
+*   Mejores prácticas
+*   Manejo de actualizaciones
+*   Prueba aplicaciones de Cordova
+*   Depurar aplicaciones de Cordova
+*   Interfaz de usuario
+*   Consideraciones especiales
+*   Mantenerse al día
+*   Cómo obtener ayuda 
+
+# Mejor desarrollo de aplicaciones prácticas Córdoba
+
+## 1) SPA es tu amigo
+
+Primero y más importante - sus aplicaciones Cordova deberían adoptar el 
diseño SPA (sola página aplicación). Vagamente definido, un SPA es una 
aplicación de cliente que se ejecuta desde una petición de una página web. 
El usuario carga un conjunto inicial de recursos (HTML, CSS y JavaScript) y 
más actualizaciones (mostrando una nueva vista, carga de datos) se realiza 
mediante AJAX. Balnearios comúnmente se utilizan para aplicaciones más 
complejas del lado del cliente. GMail es un gran ejemplo de esto. Después de 
cargar GMail, correo vistas, edición y organización se realizan mediante la 
actualización del DOM en lugar de en realidad dejar la página actual para 
cargar uno completamente nuevo.
+
+Usando un SPA puede ayudarle a organizar su solicitud de una manera más 
eficiente, pero también tiene beneficios específicos para aplicaciones de 
Córdoba. Una aplicación de Córdoba debe esperar para que el evento 
[deviceready](../../cordova/events/events.deviceready.html) disparar antes de 
que puede utilizarse cualquier plugins. Si usted no utiliza un SPA, y el 
usuario hace clic en ir de una página a otra, tendrás que esperar a que 
[deviceready](../../cordova/events/events.deviceready.html) disparar otra vez 
antes de hacer uso de un plugin. Esto es fácil de olvidar como su aplicación 
consigue más grande.
+
+Incluso si usted decide no utilizar Cordova, creando una aplicación móvil 
sin necesidad de utilizar una arquitectura única página tendrá consecuencias 
graves rendimiento. Esto es porque navegando entre páginas requerirá guiones, 
activos, etc., para ser recargadas. Incluso si estos activos se almacenan en 
caché, todavía habrá problemas de performance.
+
+Son ejemplos de bibliotecas SPA que se pueden utilizar en sus aplicaciones de 
Córdoba:
+
+*   [AngularJS][2]
+*   [EmberJS][3]
+*   [Columna vertebral][4]
+*   [Kendo UI][5]
+*   [Monaca][6]
+*   [ReactJS][7]
+*   [Sencha Touch][8]
+*   [jQuery Mobile][9]
+
+ [2]: http://angularjs.org
+ [3]: http://emberjs.com
+ [4]: http://backbonejs.org
+ [5]: http://www.telerik.com/kendo-ui
+ [6]: http://monaca.mobi/en/
+ [7]: http://facebook.github.io/react/
+ [8]: http://www.sencha.com/products/touch/
+ [9]: http://jquerymobile.com
+
+Y muchos, muchos más.
+
+## 2) consideraciones de rendimiento
+
+Uno de los mayores errores que puede hacer un nuevo desarrollador Cordova es 
suponer que el rendimiento que sacan de una máquina de escritorio es el mismo 
que van a salir en un dispositivo móvil. Mientras que nuestros dispositivos 
móviles han conseguido más de gran alcance cada año, todavía carecen de la 
potencia y el rendimiento de un ordenador de sobremesa. Dispositivos 

[34/51] [partial] docs commit: CB-10029: rename edge to dev. This closes #426.

2015-11-18 Thread dblotsky
http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/f061b980/www/docs/de/edge/guide/platforms/blackberry10/tools.md
--
diff --git a/www/docs/de/edge/guide/platforms/blackberry10/tools.md 
b/www/docs/de/edge/guide/platforms/blackberry10/tools.md
deleted file mode 100644
index d6e89abe..000
--- a/www/docs/de/edge/guide/platforms/blackberry10/tools.md
+++ /dev/null
@@ -1,144 +0,0 @@

-license: >
-Licensed to the Apache Software Foundation (ASF) under one
-or more contributor license agreements.  See the NOTICE file
-distributed with this work for additional information
-regarding copyright ownership.  The ASF licenses this file
-to you under the Apache License, Version 2.0 (the
-"License"); you may not use this file except in compliance
-with the License.  You may obtain a copy of the License at
-
-http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing,
-software distributed under the License is distributed on an
-"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-KIND, either express or implied.  See the License for the
-specific language governing permissions and limitations
-under the License.
-
-title: BlackBerry 10 Shell Tool Guide

-
-# BlackBerry 10 Shell Tool Guide
-
-Die `cordova` Befehlszeilen-Dienstprogramm ist ein High-Level Tool, das Ihnen 
erlaubt, Anwendungen auf mehreren Plattformen gleichzeitig zu erstellen. Eine 
ältere Version von Cordova Rahmen bietet Gruppen von Befehlszeilentools, die 
spezifisch für jede Plattform. Wenn sie als Alternative zu den CLI verwenden 
möchten, müssen Sie diese Version von Cordova von 
[cordova.apache.org][1]herunterladen. Der Download enthält separate Archiv 
für jede Plattform. Erweitern Sie die gewünschte Ziel-Plattform. Die hier 
beschriebenen Tools sind in der Regel in der obersten Ebene `bin` Verzeichnis, 
sonst finden Sie in die **README** -Datei ausführlichere Wegbeschreibung.
-
- [1]: http://cordova.apache.org
-
-Informationen über die Low-Level-Befehlszeilenschnittstelle, die Plugins 
ermöglicht, finden Sie unter Verwendung von Plugman zu Plugins verwalten. 
Details zum Entwickeln von Plugins finden Sie in der Anwendung-Plugins.
-
-Wenn Sie Hilfe mit jeder nachfolgenden Befehl benötigen, geben Sie den Befehl 
zusammen mit der `-h` oder `-help` Argumenten, die unterstützt werden, indem 
alle Befehle und die Beschreibungen für die einzelnen Argumente zur Verfügung.
-
-## Erstellen Sie eine App
-
-Der `create` Befehl erstellt ein neues Projekt:
-
-bin/Erstellen von < Pfad-zu-Projekt >< Projektpaket >< Projekt-Name >
-
-
-wo
-
-*   ``Gibt das Verzeichnis des Projekts gegründet
-
-*   ``Gibt einen reverse Domain-Stil-Bezeichner
-
-*   ``Gibt den Anzeigenamen apps
-
-**Hinweis**: die `create` Befehl Bootstrap Abhängigkeit Installation über 
den `npm install` Befehl. Je nach der Installation Directory und System 
Berechtigungen kann das Administratorrechte erforderlich. Wenn auf OSX/Linux 
Problem vorhanden ist, führen Sie `sudo npm install` vor der Verwendung der 
`create` Befehl. Führen Sie unter Windows `npm install` eröffnet ein 
Befehlszeilen-Dienstprogramm mit Administratorrechten.
-
-## Ein Ziel erstellen
-
-Die `target` mit dem Befehl können Sie verwalten den Emulator oder 
BlackBerry-Geräte, die Sie verwenden, um die app zu testen. Sie können 
hinzufügen oder entfernen ein Ziel oder ein Ziel gesetzt, als Standardziel.
-
-### Fügen Sie ein Ziel
-
-< Path-Projekt >/Cordova/Ziel hinzufügen  < Ip-Adresse > [-t 
|--Typ < Gerät | Simulator >] [-p |--Kennwort ] [--polig < 
Gerät-polig >]
-
-
-wo
-
-*   ``Gibt einen eindeutigen Namen für das Ziel.
-
-*   ``Gibt die Ip-Adresse des BlackBerry-Geräts oder Simulator.
-
-*   `-p | --password `Gibt das Kennwort für das Gerät oder den 
Emulator. Dies ist erforderlich, nur, wenn das Gerät oder den Emulator 
kennwortgeschützt ist.
-
-*   `--pin `Gibt die PIN für das BlackBerry-Gerät, das dieses 
Gerät als gültige Host für die Debug-Token identifiziert. Dieses Argument 
ist erforderlich, nur wenn ein Debug-Token zu erstellen.
-
-### Entfernen Sie ein Ziel
-
-< Path-Projekt >/Cordova/Ziel entfernen 
-
-
-### Ein Ziel als Standard festlegen
-
-< Path-Projekt >/Cordova/target Standard 
-
-
-## Die App zu bauen
-
-Der `build` Befehl erstellt das Projekt als ...verlegt Datei. Sie können die 
app entweder Release-Modus (der eine signierte ...verlegt Datei erzeugt) oder 
im Debug-Modus (der eine vorzeichenlose ...verlegt Datei erzeugt) erstellen.
-
-### Bauen Sie die App im Release-Modus
-
-< Path-Projekt >/Cordova/Release build [-k |--Keystorepass ] 
[-b |--BuildId ] [-p |--Params < Params-JSON-Datei >]
-
-
-wo
-
-*   `-k | --keystorepass `Gibt das Kennwort, die, das Sie definiert, 
wenn Sie Ihren Computer zum Signieren von 

[28/51] [partial] docs commit: CB-10029: rename edge to dev. This closes #426.

2015-11-18 Thread dblotsky
http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/f061b980/www/docs/en/dev/guide/appdev/whitelist/index.md
--
diff --git a/www/docs/en/dev/guide/appdev/whitelist/index.md 
b/www/docs/en/dev/guide/appdev/whitelist/index.md
new file mode 100644
index 000..16c65a0
--- /dev/null
+++ b/www/docs/en/dev/guide/appdev/whitelist/index.md
@@ -0,0 +1,176 @@
+---
+license: >
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+
+title: Whitelist Guide
+---
+
+# Whitelist Guide
+
+Domain whitelisting is a security model that controls access to
+external domains over which your application has no control. Cordova
+provides a configurable security policy to define which external sites may be
+accessed.  By default, new apps are configured to allow access to any site.
+Before moving your application to production, you should formulate a whitelist
+and allow access to specific network domains and subdomains.
+
+For Android and iOS (as of their 4.0 releases), Cordova's security policy is 
extensible via a plugin
+interface.  Your app should use the [cordova-plugin-whitelist][wlp], as it 
provides
+better security and configurability than earlier versions of Cordova.  While
+it is possible to implement your own whitelist plugin, it is not recommended
+unless your app has very specific security policy needs.  See the
+[cordova-plugin-whitelist][wlp] for details on usage and configuration.
+
+For other platforms, Cordova adheres to the [W3C Widget Access][1] 
specification,
+which relies on the `` element within the app's `config.xml` file to
+enable network access to specific domains. For projects that rely on
+the CLI workflow described in [The Command-Line 
Interface](../../cli/index.html), this file is
+located in the project's top-level directory. Otherwise for
+platform-specific development paths, locations are listed in the
+sections below. (See the various [Platform Guides](../../platforms/index.html) 
for more information
+on each platform.)
+
+The following examples demonstrate `` whitelist syntax:
+
+* Access to [google.com][2]:
+
+http://google.com; />
+
+* Access to the secure [google.com][3] (`https://`):
+
+https://google.com; />
+
+* Access to the subdomain [maps.google.com][4]:
+
+http://maps.google.com; />
+
+* Access to all the subdomains on [google.com][2], for example
+  [mail.google.com][5] and [docs.google.com][6]:
+
+http://*.google.com; />
+
+* Access to _all_ domains, for example, [google.com][2] and
+  [developer.mozilla.org][7]:
+
+
+
+  This is the default value for newly created CLI projects.
+
+Be aware that some websites may automatically redirect from their home page to
+a different url, such as using https protocol or to a country-specific
+domain. For example http://www.google.com will redirect to use SSL/TLS at
+https://www.google.com, and then may further redirect to a geography such as
+https://www.google.co.uk. Such scenarios may require modified or additional
+whitelist entries beyond your initial requirement. Please consider this
+as you are building your whitelist.
+
+Note that the whitelist applies only to the main Cordova webview, and does not
+apply to an InAppBrowser webview or opening links in the system web browser.
+
+## Amazon Fire OS Whitelisting
+
+Platform-specific whitelisting rules are found in
+`res/xml/config.xml`.
+
+## Android Whitelisting
+
+As above, see [cordova-plugin-whitelist][wlp] for details.  For cordova-android
+prior to 4.0.0, see older versions of this documentation.
+
+## iOS Whitelisting
+
+The `` and `` tags are _new_ for cordova-ios 
4.x and greater, see the [cordova-plugin-whitelist][wlp] documentation for 
details. cordova-ios version 4.0 and greater does **not** require the 
[cordova-plugin-whitelist][wlp] plugin to be installed.
+
+For cordova-ios versions prior to 4.0.0, see the older versions of this 
documentation. 
+
+[Application Transport Security 
(ATS)](https://developer.apple.com/library/prerelease/ios/documentation/General/Reference/InfoPlistKeyReference/Articles/CocoaKeys.html#//apple_ref/doc/uid/TP40009251-SW33)
 is new in iOS 9 (Xcode 7). This new feature 

[44/51] [partial] docs commit: CB-10029: rename edge to dev. This closes #426.

2015-11-18 Thread dblotsky
http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/f061b980/www/docs/de/dev/guide/platforms/blackberry10/tools.md
--
diff --git a/www/docs/de/dev/guide/platforms/blackberry10/tools.md 
b/www/docs/de/dev/guide/platforms/blackberry10/tools.md
new file mode 100644
index 000..d6e89abe
--- /dev/null
+++ b/www/docs/de/dev/guide/platforms/blackberry10/tools.md
@@ -0,0 +1,144 @@
+---
+license: >
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+
+title: BlackBerry 10 Shell Tool Guide
+---
+
+# BlackBerry 10 Shell Tool Guide
+
+Die `cordova` Befehlszeilen-Dienstprogramm ist ein High-Level Tool, das Ihnen 
erlaubt, Anwendungen auf mehreren Plattformen gleichzeitig zu erstellen. Eine 
ältere Version von Cordova Rahmen bietet Gruppen von Befehlszeilentools, die 
spezifisch für jede Plattform. Wenn sie als Alternative zu den CLI verwenden 
möchten, müssen Sie diese Version von Cordova von 
[cordova.apache.org][1]herunterladen. Der Download enthält separate Archiv 
für jede Plattform. Erweitern Sie die gewünschte Ziel-Plattform. Die hier 
beschriebenen Tools sind in der Regel in der obersten Ebene `bin` Verzeichnis, 
sonst finden Sie in die **README** -Datei ausführlichere Wegbeschreibung.
+
+ [1]: http://cordova.apache.org
+
+Informationen über die Low-Level-Befehlszeilenschnittstelle, die Plugins 
ermöglicht, finden Sie unter Verwendung von Plugman zu Plugins verwalten. 
Details zum Entwickeln von Plugins finden Sie in der Anwendung-Plugins.
+
+Wenn Sie Hilfe mit jeder nachfolgenden Befehl benötigen, geben Sie den Befehl 
zusammen mit der `-h` oder `-help` Argumenten, die unterstützt werden, indem 
alle Befehle und die Beschreibungen für die einzelnen Argumente zur Verfügung.
+
+## Erstellen Sie eine App
+
+Der `create` Befehl erstellt ein neues Projekt:
+
+bin/Erstellen von < Pfad-zu-Projekt >< Projektpaket >< Projekt-Name >
+
+
+wo
+
+*   ``Gibt das Verzeichnis des Projekts gegründet
+
+*   ``Gibt einen reverse Domain-Stil-Bezeichner
+
+*   ``Gibt den Anzeigenamen apps
+
+**Hinweis**: die `create` Befehl Bootstrap Abhängigkeit Installation über 
den `npm install` Befehl. Je nach der Installation Directory und System 
Berechtigungen kann das Administratorrechte erforderlich. Wenn auf OSX/Linux 
Problem vorhanden ist, führen Sie `sudo npm install` vor der Verwendung der 
`create` Befehl. Führen Sie unter Windows `npm install` eröffnet ein 
Befehlszeilen-Dienstprogramm mit Administratorrechten.
+
+## Ein Ziel erstellen
+
+Die `target` mit dem Befehl können Sie verwalten den Emulator oder 
BlackBerry-Geräte, die Sie verwenden, um die app zu testen. Sie können 
hinzufügen oder entfernen ein Ziel oder ein Ziel gesetzt, als Standardziel.
+
+### Fügen Sie ein Ziel
+
+< Path-Projekt >/Cordova/Ziel hinzufügen  < Ip-Adresse > [-t 
|--Typ < Gerät | Simulator >] [-p |--Kennwort ] [--polig < 
Gerät-polig >]
+
+
+wo
+
+*   ``Gibt einen eindeutigen Namen für das Ziel.
+
+*   ``Gibt die Ip-Adresse des BlackBerry-Geräts oder Simulator.
+
+*   `-p | --password `Gibt das Kennwort für das Gerät oder den 
Emulator. Dies ist erforderlich, nur, wenn das Gerät oder den Emulator 
kennwortgeschützt ist.
+
+*   `--pin `Gibt die PIN für das BlackBerry-Gerät, das dieses 
Gerät als gültige Host für die Debug-Token identifiziert. Dieses Argument 
ist erforderlich, nur wenn ein Debug-Token zu erstellen.
+
+### Entfernen Sie ein Ziel
+
+< Path-Projekt >/Cordova/Ziel entfernen 
+
+
+### Ein Ziel als Standard festlegen
+
+< Path-Projekt >/Cordova/target Standard 
+
+
+## Die App zu bauen
+
+Der `build` Befehl erstellt das Projekt als ...verlegt Datei. Sie können die 
app entweder Release-Modus (der eine signierte ...verlegt Datei erzeugt) oder 
im Debug-Modus (der eine vorzeichenlose ...verlegt Datei erzeugt) erstellen.
+
+### Bauen Sie die App im Release-Modus
+
+< Path-Projekt >/Cordova/Release build [-k |--Keystorepass ] 
[-b |--BuildId ] [-p |--Params < Params-JSON-Datei >]
+
+
+wo
+
+*   `-k | --keystorepass `Gibt das Kennwort, die, das Sie definiert, 
wenn Sie Ihren Computer zum Signieren von Anwendungen 

[12/51] [partial] docs commit: CB-10029: rename edge to dev. This closes #426.

2015-11-18 Thread dblotsky
http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/f061b980/www/docs/es/dev/guide/platforms/android/plugin.md
--
diff --git a/www/docs/es/dev/guide/platforms/android/plugin.md 
b/www/docs/es/dev/guide/platforms/android/plugin.md
new file mode 100644
index 000..5521d0d
--- /dev/null
+++ b/www/docs/es/dev/guide/platforms/android/plugin.md
@@ -0,0 +1,182 @@
+---
+license: >
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+
+title: Android Plugins
+---
+
+# Android Plugins
+
+Esta sección proporciona información sobre cómo implementar código plugin 
nativo en la plataforma Android. Antes de leer esto, vea aplicación Plugins 
para tener una visión general de la estructura del plugin y su interfaz común 
de JavaScript. Esta sección sigue demostrando el plugin *Eco* muestra que 
comunica desde la webview Cordova a la plataforma nativa y de regreso. Otro 
ejemplo, vea también los comentarios en [CordovaPlugin.java][1].
+
+ [1]: 
https://github.com/apache/cordova-android/blob/master/framework/src/org/apache/cordova/CordovaPlugin.java
+
+Android plugins se basan en Córdoba-Android, el cual consiste en un WebView 
androide con ganchos conectados a él. Plugins son representados como 
asignaciones de clase en el `config.xml` archivo. Un plugin consiste en por lo 
menos una clase Java que extiende la `CordovaPlugin` clase, reemplazando a uno 
de sus `execute` métodos. Como mejor práctica, el plugin debe también 
manejar `[pause](../../../cordova/events/events.pause.html)` y 
`[resume](../../../cordova/events/events.resume.html)` eventos, junto con 
cualquier mensaje pasando entre plugins. Plugins con solicitudes de larga 
duración, actividad de fondo como medios de reproducción, los oyentes o 
estado interno debe implementar el `onReset()` método también. Se ejecuta 
cuando el `WebView` se desplaza a una nueva página o actualizaciones, que 
vuelve a cargar el JavaScript.
+
+## Asignación de clase plugin
+
+Interfaz de JavaScript del plugin utiliza el `cordova.exec` método de la 
siguiente manera:
+
+exec (< successFunction >, < failFunction >, < service >, < acción > 
[< args >]);
+
+
+Esto mariscales una petición desde el WebView al lado nativo Android, 
llamando con eficacia el `action` método de la `service` clase, con argumentos 
adicionales en el `args` matriz.
+
+Si usted distribuye un plugin como archivo de Java o como un archivo *jar* de 
su propio, el plugin debe especificarse en la aplicación Cordova-Android 
`res/xml/config.xml` archivo. Ver aplicación Plugins para obtener más 
información sobre cómo utilizar el `plugin.xml` archivo para inyectar este 
`feature` elemento:
+
+
+
+
+
+
+El nombre de servicio coincide con la utilizada en el JavaScript `exec` 
llamar. El valor es el identificador de la clase Java de nombres completos. De 
lo contrario, el plugin puede compilar pero todavía estar disponible a 
Córdoba.
+
+## Vida e inicialización de Plugin
+
+Para la vida de cada uno se crea una instancia de un objeto plugin `WebView` . 
Plugins no se instancian hasta que primero se hace referencia mediante una 
llamada desde JavaScript, a menos que `` con un `onload` `name` atributo 
se establece en `"true"` en `config.xml` . Por ejemplo:
+
+
+
+
+
+
+
+Plugins deberían utilizar el `initialize` método para su lógica puesta en 
marcha.
+
+@Override
+public void initialize(CordovaInterface cordova, CordovaWebView webView) {
+super.initialize(cordova, webView);
+// your init code here
+}
+
+
+## Escribir un Plugin de Java Android
+
+Una llamada JavaScript dispara una solicitud plugin nativo al lado, y el 
plugin de Java correspondiente se asigna correctamente en el `config.xml` 
archivo, pero ¿qué aspecto tiene el final Android Java Plugin clase? Lo que 
es enviado al plugin de JavaScript `exec` función se pasa a la clase plugin 
`execute` método. La mayoría de las implementaciones de `execute` este 
aspecto:
+
+@Override public boolean ejecutar (acción de las cuerdas, JSONArray 
args, CallbackContext callbackContext) 

[48/51] [partial] docs commit: CB-10029: rename edge to dev. This closes #426.

2015-11-18 Thread dblotsky
http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/f061b980/www/docs/de/dev/cordova/storage/sqlerror/sqlerror.md
--
diff --git a/www/docs/de/dev/cordova/storage/sqlerror/sqlerror.md 
b/www/docs/de/dev/cordova/storage/sqlerror/sqlerror.md
new file mode 100644
index 000..83fdd6f
--- /dev/null
+++ b/www/docs/de/dev/cordova/storage/sqlerror/sqlerror.md
@@ -0,0 +1,46 @@
+---
+license: >
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+
+title: SQLError
+---
+
+# SQLError
+
+A `SQLError` Objekt wird ausgelöst, wenn ein Fehler auftritt.
+
+## Eigenschaften
+
+*   **Code**: einer der vordefinierten Fehlercodes aufgeführt.
+
+*   **Nachricht**: eine Beschreibung des Fehlers.
+
+## Konstanten
+
+*   `SQLError.UNKNOWN_ERR`
+*   `SQLError.DATABASE_ERR`
+*   `SQLError.VERSION_ERR`
+*   `SQLError.TOO_LARGE_ERR`
+*   `SQLError.QUOTA_ERR`
+*   `SQLError.SYNTAX_ERR`
+*   `SQLError.CONSTRAINT_ERR`
+*   `SQLError.TIMEOUT_ERR`
+
+## Beschreibung
+
+Das `SQLError` Objekt wird ausgelöst, wenn ein Fehler auftritt, wenn eine 
[Datenbank](../database/database.html) zu manipulieren.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/f061b980/www/docs/de/dev/cordova/storage/sqlresultset/sqlresultset.md
--
diff --git a/www/docs/de/dev/cordova/storage/sqlresultset/sqlresultset.md 
b/www/docs/de/dev/cordova/storage/sqlresultset/sqlresultset.md
new file mode 100644
index 000..ef57259
--- /dev/null
+++ b/www/docs/de/dev/cordova/storage/sqlresultset/sqlresultset.md
@@ -0,0 +1,145 @@
+---
+license: >
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+
+title: SQLResultSet
+---
+
+# SQLResultSet
+
+Wenn eine `[SQLTransaction](../sqltransaction/sqltransaction.html)` des 
Objekts `executeSql` -Methode wird aufgerufen, der angegebene Rückruf führt 
mit einem `SQLResultSet` Parameter.
+
+## Eigenschaften
+
+*   **InsertId**: die Zeilen-ID der Zeile, die die `SQLResultSet` des 
Objekts-SQL-Anweisung, die in die [Datenbank](../database/database.html) 
eingefügt.
+
+*   **RowsAffected**: die Anzahl der Zeilen geändert werden, indem die 
SQL-Anweisung, die 0 (null), wenn die Anweisung keine Zeilen nicht ausgewirkt 
hat.
+
+*   **Zeilen**: eine 
`[SQLResultSetRowList](../sqlresultsetrowlist/sqlresultsetrowlist.html)` , die 
die zurückgegebenen Zeilen darstellen, empty, wenn keine Zeilen zurückgegeben 
werden.
+
+## Informationen
+
+Wenn eine `[SQLTransaction](../sqltransaction/sqltransaction.html)` des 
Objekts `executeSql` -Methode wird aufgerufen, der angegebene Rückruf führt 
mit einer `SQLResultSet` Parameter mit den drei Eigenschaften:
+
+*   Die `insertId` gibt die Zeilennummer einer successly 
SQL-Einfügung-Anweisung zurück. Wenn die SQL keine Zeilen einfügen wird die 
`insertId` nicht festgelegt.
+
+*   Die `rowsAffected` ist immer `` für ein SQL `select` Anweisung. Für 
`insert` oder `update` es die Anzahl der gibt Anweisungen geänderter Zeilen.
+
+*   Finale `SQLResultSetList` enthält die Daten aus einer 
SQL-select-Anweisung zurückgegeben.
+
+## Unterstützte Plattformen
+
+*   Android
+*   BlackBerry WebWorks (OS 6.0 und höher)
+*   iOS
+*   Tizen
+
+## Führen Sie SQL-schnelles-Beispiel
+
+function queryDB(tx) {
+tx.executeSql('SELECT * FROM DEMO', [], querySuccess, errorCB);
+}
+
+

[19/51] [partial] docs commit: CB-10029: rename edge to dev. This closes #426.

2015-11-18 Thread dblotsky
http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/f061b980/www/docs/en/edge/guide/platforms/blackberry/upgrade.md
--
diff --git a/www/docs/en/edge/guide/platforms/blackberry/upgrade.md 
b/www/docs/en/edge/guide/platforms/blackberry/upgrade.md
deleted file mode 100644
index c608bb8..000
--- a/www/docs/en/edge/guide/platforms/blackberry/upgrade.md
+++ /dev/null
@@ -1,434 +0,0 @@

-license: >
-Licensed to the Apache Software Foundation (ASF) under one
-or more contributor license agreements.  See the NOTICE file
-distributed with this work for additional information
-regarding copyright ownership.  The ASF licenses this file
-to you under the Apache License, Version 2.0 (the
-"License"); you may not use this file except in compliance
-with the License.  You may obtain a copy of the License at
-
-http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing,
-software distributed under the License is distributed on an
-"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-KIND, either express or implied.  See the License for the
-specific language governing permissions and limitations
-under the License.
-
-title: Upgrading BlackBerry

-
-# Upgrading BlackBerry
-
-This guide shows how to modify BlackBerry projects to upgrade from
-older versions of Cordova.  These instructions apply to projects
-created with an older set of command-line tools that precede the
-`cordova` CLI utility. See [The Command-Line Interface](../../cli/index.html) 
for information
-how to update the version of the CLI.
-
-## Upgrading 2.8.0 projects to 2.9.0 ##
-
-BlackBerry 10:
-
-1. Download and extract the Cordova 2.9.0 source to a permanent location on 
your hard drive, for example to `~/Cordova-2.9.0`.
-
-2. Quit any running SDK tools: Eclipse, Momentics and the like.
-
-3. Navigate to the directory where you put the downloaded source above, using 
a unix like terminal: Terminal.app, Bash, Cygwin, etc.
-
-4. Create a new project, as described in BlackBerry Shell Tool Guide. This 
becomes the home of your updated project.
-
-5. Copy your project's source from the old project's `/www` directory to the 
new project's `/www` directory.
-
-6. Update the Cordova script reference in the `www/index.html` file (and any 
other files that contain the script reference) to point to the new `cordova.js` 
file.
-
-### BlackBerryOS/Playbook ###
-
-1. Download and extract the Cordova 2.9.0 source to a permanent location on 
your hard drive, for example to `~/Cordova-2.9.0`.
-
-2. Quit any running SDK tools: Eclipse, Momentics and the like.
-
-3. Navigate to the directory where you put the downloaded source above, using 
a unix like terminal: Terminal.app, Bash, Cygwin, etc.
-
-4. Create a new project, as described in BlackBerry Shell Tool Guide. You need 
the assets from this new project.
-
-5. Copy the `www/cordova.js` file from the new project into the `www` 
directory, and delete the `www/cordova.js` file.
-
-6. Update the Cordova script reference in the `www/index.html` file (and any 
other files that contain the script reference) to point to the new `cordova.js` 
file.
-
-7. Copy the `native` directory from the new project into the existing project, 
overwriting the old `native` directory.
-
-8. Copy the `lib` directory from the new project into the existing project, 
overwriting the old `lib` directory.
-
-9. Copy the `cordova` directory from the new project into the existing 
project, overwriting the old `cordova` directory.
-
-## Upgrading 2.7.0 projects to 2.8.0 ##
-
-BlackBerry 10:
-
-BlackBerry 10 uses the new CLI tooling and manages core APIs as plugins. The 
instructions migrate your project to a new project, rather than updating an 
existing project, due to the complexity of updating an old project.
-Also note that the cordova js script file is now called 'cordova.js' and no 
longer contains a version string.
-
-1. Download and extract the Cordova 2.8.0 source to a permanent location on 
your hard drive, for example to `~/Cordova-2.8.0`.
-
-2. Quit any running SDK tools: Eclipse, Momentics and the like.
-
-3. Navigate to the directory where you put the downloaded source above, using 
a unix like terminal: Terminal.app, Bash, Cygwin, etc.
-
-4. Create a new project, as described in BlackBerry Shell Tool Guide. This 
becomes the home of your updated project.
-
-5. Copy your project's source from the old project's `/www` directory to the 
new project's `/www` directory.
-
-6. Update the Cordova script reference in the `www/index.html` file (and any 
other files that contain the script reference) to point to the new `cordova.js` 
file.
-
-BlackBerryOS/Playbook:
-
-1. Download and extract the Cordova 2.8.0 source to a permanent location on 
your hard drive, for example to `~/Cordova-2.8.0`.
-
-2. Quit any running SDK tools: Eclipse, Momentics and the 

[07/51] [partial] docs commit: CB-10029: rename edge to dev. This closes #426.

2015-11-18 Thread dblotsky
http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/f061b980/www/docs/es/dev/guide/platforms/win8/plugin.md
--
diff --git a/www/docs/es/dev/guide/platforms/win8/plugin.md 
b/www/docs/es/dev/guide/platforms/win8/plugin.md
new file mode 100644
index 000..5c4e205
--- /dev/null
+++ b/www/docs/es/dev/guide/platforms/win8/plugin.md
@@ -0,0 +1,211 @@
+---
+license: >
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+
+title: Windows Plugins
+---
+
+# Windows Plugins
+
+Esta sección proporciona información detallada de cómo implementar un 
plugin para el uso en una aplicación Windows Store. Antes de leer esto, vea 
aplicación Plugins para tener una visión general de la estructura del plugin 
y su interfaz común de JavaScript. Esta sección sigue demostrando el plugin 
*Eco* muestra que comunica desde la webview Cordova a la plataforma nativa y de 
regreso.
+
+Es importante tener en cuenta que Windows apoya desarrollo directamente en 
Javascript, que significa desarrollar las porciones 'nativas' en sólo requiere 
en casos especiales.
+
+## Crear un Plugin de ventanas en JavaScript
+
+Estas instrucciones son crear un plugin de JavaScript puro. Comprender esto es 
crucial para entender cómo agregar los bits nativo/administrado.
+
+Windows Cordova plugins son esencialmente un contenedor fino existente WinJS 
proporcionada las funciones, pero suponiendo que desea definir su interfaz 
común de JS para múltiples dispositivos, normalmente tendrá 1 archivo JS que 
ofrece la API.
+
+// inside file echoplugin.js
+var EchoPlugin = {
+// the echo function calls successCallback with the provided text in 
strInput
+// if strInput is empty, it will call the errorCallback
+echo:function(successCallback, errorCallback, strInput) {
+
cordova.exec(successCallback,errorCallback,"EchoPlugin","echo",[strInput]);
+}
+}
+
+
+## Interior Cordova ejec en Windows
+
+La función cordova.exec se define diferentemente en cada plataforma, esto es 
debido a que cada plataforma tiene su propia forma de comunicación entre el 
código de aplicación de js y código de contenedor nativa. Pero en el caso de 
Windows, no hay ninguna envoltura nativa, así la llamada exec está allí para 
la consistencia. Que harías tu trabajo único plugin js directamente en 
EchoPlugin.echo, algo así como:
+
+// inside file echoplugin.js ( this is what NOT to do if you want to reuse 
the JS API cross platform )
+var EchoPlugin = {
+echo:function(successCallback,errorCallback,strInput) {
+if(!strInput || !strInput.length) {
+errorCallback("Error, something was wrong with the input 
string. =>" + strInput);
+}
+else {
+successCallback(strInput + "echo");
+}
+}
+}
+
+
+¿/ Podría funcionar bien, sin embargo significa que usted necesitará 
diferentes versiones de echoPlugin.js para diferentes plataformas, y 
posiblemente pudieras tener problemas con las inconsistencias en sus 
implementaciones. Como una buena práctica, hemos decidido imitar una API 
nativa dentro de cordova.exec en Windows, para poder ejecutar el mismo código 
JS y no tener que reescribir para la plataforma y también tomar ventaja de 
cualquier parámetro de comprobación, u otro código común proporcionada por 
los desarrolladores que estaban trabajando en otras plataformas.
+
+## El proxy de exec Cordova
+
+En Windows, cordova proporciona a un servidor proxy que puede utilizar para 
registrar un objeto que se encargará de todas las llamadas a una API 
cordova.exec.
+
+Por ejemplo si quisieras proporcionar la implementación de la API de 
acelerómetro, haría esto:
+
+cordova.commandProxy.add ("Acelerometro", {comienzo: function() {/ / tu 
código aquí...} / /... y el resto de la API aquí});
+
+Así que en nuestro caso, supondremos que está manejando el código en 
echoplugin.js cruz plataforma relevante JavaScript y nos puede escribir 
simplemente un proxy para Windows
+
+// in file echopluginProxy.js
+cordova.commandProxy.add("EchoPlugin",{
+

[24/51] [partial] docs commit: CB-10029: rename edge to dev. This closes #426.

2015-11-18 Thread dblotsky
http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/f061b980/www/docs/en/dev/guide/platforms/ubuntu/index.md
--
diff --git a/www/docs/en/dev/guide/platforms/ubuntu/index.md 
b/www/docs/en/dev/guide/platforms/ubuntu/index.md
new file mode 100644
index 000..daa2a79
--- /dev/null
+++ b/www/docs/en/dev/guide/platforms/ubuntu/index.md
@@ -0,0 +1,104 @@
+---
+license: >
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+
+title: Ubuntu Platform Guide
+---
+
+# Ubuntu Platform Guide
+
+## Initial Release
+
+Welcome to the initial release of Ubuntu platform support in
+Cordova. With this release, the focus is developing on an Ubuntu
+system and using the cross-platform workflow discussed in the
+[Overview](../../overview/index.html).  This includes adding the Ubuntu 
platform to your project,
+adding standard Cordova plugins, and building and running apps for the
+Ubuntu platform.
+
+### Ubuntu SDK
+
+You may also want to install the Ubuntu QtCreator development environment. See
+[developer.ubuntu.com](http://developer.ubuntu.com) for more info. (The
+QtCreator SDK is not required to add Ubuntu platform support to your Cordova
+app.)
+
+### Ubuntu Runtime Platforms
+
+Ubuntu is well known for its Desktop environment (for laptops, PCs and such).
+Ubuntu Touch extends the Ubuntu OS onto phones and tablets. Ubuntu runtime
+platforms have varying CPU architectures (x86, armhf, etc.). App and plugin
+code must be compiled appropriately. Support for this broad area is rapidly
+evolving in Ubuntu.
+
+### Latest Information
+
+For the latest information on Cordova app support for Ubuntu runtime platforms,
+see [wiki.ubuntu.com/Cordova](http://wiki.ubuntu.com/Cordova).
+
+## Development Platform Requirements
+
+For this initial release, the development platform should be an Ubuntu Desktop.
+Ubuntu 13.10 (codename ‘saucy’) or later is required to enjoy the full set 
of
+supported capabilities.
+
+You can install Cordova on non-Ubuntu systems (using npm), but important
+capabilities are only provided through Ubuntu debian packages at this time.
+
+## Cordova Installation
+
+Add the Ubuntu Cordova
+[Personal Package Archive](https://launchpad.net/~cordova-ubuntu/+archive/ppa)
+to your Ubuntu system:
+
+$ sudo add-apt-repository ppa:cordova-ubuntu/ppa
+$ sudo apt-get update
+
+Install cordova-cli package (and its dependencies):
+
+$ sudo apt-get install cordova-cli
+
+## Project Workflow
+
+### Create a project
+
+Creates an app in a `hello` directory whose display name is
+`HelloWorld`:
+
+$ cordova create hello com.example.hello HelloWorld
+
+### Move into the Project Directory
+
+$ cd hello
+
+### Add the Ubuntu Platform
+
+$ cordova platform add ubuntu
+
+### Build for Ubuntu
+
+$ cordova build ubuntu
+
+### Run the App
+
+$ cordova run ubuntu
+
+### Add the Camera Plugin
+
+$ cordova plugin add cordova-plugin-camera
+

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/f061b980/www/docs/en/dev/guide/platforms/win8/index.md
--
diff --git a/www/docs/en/dev/guide/platforms/win8/index.md 
b/www/docs/en/dev/guide/platforms/win8/index.md
new file mode 100644
index 000..214869f
--- /dev/null
+++ b/www/docs/en/dev/guide/platforms/win8/index.md
@@ -0,0 +1,292 @@
+---
+license: >
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+

[32/51] [partial] docs commit: CB-10029: rename edge to dev. This closes #426.

2015-11-18 Thread dblotsky
http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/f061b980/www/docs/de/edge/guide/platforms/ios/upgrading.md
--
diff --git a/www/docs/de/edge/guide/platforms/ios/upgrading.md 
b/www/docs/de/edge/guide/platforms/ios/upgrading.md
deleted file mode 100644
index 5fbc752..000
--- a/www/docs/de/edge/guide/platforms/ios/upgrading.md
+++ /dev/null
@@ -1,754 +0,0 @@

-license: >
-Licensed to the Apache Software Foundation (ASF) under one
-or more contributor license agreements.  See the NOTICE file
-distributed with this work for additional information
-regarding copyright ownership.  The ASF licenses this file
-to you under the Apache License, Version 2.0 (the
-"License"); you may not use this file except in compliance
-with the License.  You may obtain a copy of the License at
-
-http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing,
-software distributed under the License is distributed on an
-"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-KIND, either express or implied.  See the License for the
-specific language governing permissions and limitations
-under the License.
-
-title: IOS Upgrade

-
-# IOS Upgrade
-
-Diese Anleitung zeigt wie iOS-Projekte von älteren Versionen von Cordova 
upgedatet werden. Die meisten diese Anweisungen gelten für Projekte, die mit 
einer älteren Befehlszeilentools, die vorangehen erstellt die `cordova` 
CLI-Hilfsprogramm. Die Command-Line Interface Informationen finden Sie unter 
Gewusst wie: Aktualisieren Sie die Version der CLI.
-
-**Hinweis**: Xcode 4.6 ist erforderlich, Xcode-5 wird empfohlen. Derzeit um 
die Apple-App-Store zu übermitteln, verwenden Sie die neueste ausgelieferte 
Version des iOS SDK, welches ist iOS 7. iOS 7 SDK noch nicht erforderlich, aber 
dies kann sich schnell ändern.
-
-## Upgrade 3.1.0 Projekte zu 3.2.0
-
-Für nicht-CLI Projekte führen:
-
-bin/Pfad/zu/Projekt-update
-
-
-CLI-Projekte:
-
-1.  Update der `cordova` CLI-Version. Finden Sie die 
Befehlszeilenschnittstelle.
-
-2.  Ausführen`cordova platform update ios`
-
-## Upgrade 3.0.0 Projekte zu 3.1.0
-
-Für nicht-CLI Projekte führen:
-
-bin/Pfad/zu/Projekt-update
-
-
-CLI-Projekte:
-
-1.  Update der `cordova` CLI-Version. Finden Sie die 
Befehlszeilenschnittstelle.
-
-2.  Ausführen`cordova platform update ios`
-
-iOS 7 Fragen:
-
-1.  Entfernen von `width=device-width, height=device-height` aus der 
`index.html` Datei `viewport` `meta` Tag. (Siehe [die relevant-bug][1].)
-
-2.  Aktualisieren Sie Ihre Medien, Medien-Capture und Splashscreen 
Core-Plugins für iOS 7 Unterstützung.
-
- [1]: https://issues.apache.org/jira/browse/CB-4323
-
-Xcode 5 Fragen:
-
-1.  Aktualisieren Sie die Projekteinstellungen ändern, wenn Sie Xcode-5 (in 
den Themen-Navigator) dazu aufgefordert werden.
-
-2.  Update Ihrer **Compiler für C / C + + / Objective-C** festlegen, unter 
der Registerkarte **Buildeinstellungen** **Erstellungsoptionen** Abschnitt. 
Wählen Sie **Standard-Compiler (Apple LLVM 5.0)**.
-
-## Upgrade auf die CLI (3.0.0) von 2.9.0
-
-1.  Erstellen Sie ein neues Apache Cordova 3.0.0-Projekt mit Cordova CLI, wie 
in der Command-Line Interface beschrieben.
-
-2.  Die Plattformen der Cordova Projekt fügen Sie hinzu, zum Beispiel:`cordova
-platform add ios`.
-
-3.  Kopieren Sie den Inhalt des Projekts `www` Verzeichnis in das `www` 
Verzeichnis im Stammverzeichnis des Projektes Cordova, die Sie gerade erstellt 
haben.
-
-4.  Kopieren oder nativen Vermögen aus dem ursprünglichen Projekt zu 
überschreiben ( `Resources` usw.), die sicher um jede neuen Dateien zu den 
`.xcodeproj` Projekt. Das iOS-Projekt erstellt, in das `platforms\ios` 
Verzeichnis.
-
-5.  Kopie Ihrer `config.xml` in das `www` Verzeichnis und entfernen Sie alle 
Plugin-Definitionen. Ändern Sie die Einstellungen hier anstelle des 
Plattform-Verzeichnisses.
-
-6.  Verwenden Sie Cordova-CLI-Tool, um alle Plugins zu installieren, die Sie 
brauchen. Beachten Sie, dass die CLI behandelt alle Kern-APIs als Plugins, so 
müssen sie möglicherweise hinzugefügt werden. Nur 3.0.0 Plugins sind 
kompatibel mit CLI.
-
-7.  Erstellen und testen.
-
-## Upgrade 2.9.0 Projekte 3.0.0
-
-1.  Herunterladen Sie und extrahieren Sie die Cordova 3.0.0-Quelle zu einem 
permanenten Speicherort auf Ihrer Festplatte, zum Beispiel 
in`~/Documents/Cordova-3.0.0`.
-
-2.  Beenden Sie Xcode, wenn es geöffnet ist.
-
-3.  Terminal.app verwenden, navigieren Sie zu dem Verzeichnis, in dem Sie die 
heruntergeladene Quelle oben setzen.
-
-4.  Erstellen Sie ein neues Projekt, wie in iOS Command-Line Tools 
beschrieben. Sie benötigen die Vermögen aus diesem neuen Projekt.
-
-5.  Kopie der `www/cordova.js` (Beachten Sie, dass es muss ein Version-Suffix 
nicht mehr, die Version ist in der Datei selbst in der Kopfzeile) Datei aus dem 
neuen 

[27/51] [partial] docs commit: CB-10029: rename edge to dev. This closes #426.

2015-11-18 Thread dblotsky
http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/f061b980/www/docs/en/dev/guide/platforms/amazonfireos/index.md
--
diff --git a/www/docs/en/dev/guide/platforms/amazonfireos/index.md 
b/www/docs/en/dev/guide/platforms/amazonfireos/index.md
new file mode 100644
index 000..055f249
--- /dev/null
+++ b/www/docs/en/dev/guide/platforms/amazonfireos/index.md
@@ -0,0 +1,195 @@
+---
+license: >
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+
+title: Amazon Fire OS Platform Guide
+---
+
+# Amazon Fire OS Platform Guide
+
+This guide shows how to set up your SDK development environment to
+deploy Cordova apps for Amazon Fire OS devices, such as the Kindle Fire HDX.
+
+See the following for more detailed platform-specific information:
+
+* [Amazon Fire OS Configuration](config.html)
+* [Amazon Fire OS WebViews](webview.html)
+* [Amazon Fire OS Plugins](plugin.html)
+
+## Introduction
+
+By targeting the Amazon Fire OS platform, Cordova developers can create hybrid 
web apps that take advantage of the advanced web engine integrated into Kindle 
Fire devices. Amazon WebView API (AWV) is a Chromium-derived web runtime 
exclusive to Fire OS. A drop-in replacement for the WebView that comes with 
Android devices, AWV makes it possible to create better performing and more 
powerful hybrid web apps by providing support for a faster JavaScript engine 
(V8), remote debugging, and hardware optimizations for Kindle Fire devices 
including an accelerated 2D Canvas, and access to HTML5 features not supported 
by Android’s built in WebView such as: CSS Calc, Form Validation, 
getUserMedia, IndexedDB, Web Workers, WebSockets and WebGL. 
+
+For more information about the Amazon WebView API, please see the Amazon 
Developer Portal's [HTML5 Hybrid Apps 
page](https://developer.amazon.com/public/solutions/platforms/android-fireos/docs/building-and-testing-your-hybrid-app).
 For questions about getting started and other support issues, please see the 
Amazon Developer Portal [Forums - HTML5 Hybrid 
Apps](http://forums.developer.amazon.com/forums/category.jspa?categoryID=41).
+
+
+## Requirements and Support
+
+Developing Cordova apps for Amazon Fire OS requires installation of a variety 
of support files, including everything needed for Android development, as well 
as the Amazon WebView SDK. Check the list below for the required installs: 
+
+* [The Command-Line Interface](../../cli/index.html)
+* [Android SDK](http://developer.android.com/sdk/)
+* [Apache Ant](http://ant.apache.org)
+* [Amazon WebView 
SDK](https://developer.amazon.com/public/solutions/platforms/android-fireos/docs/building-and-testing-your-hybrid-app)
+
+## Installation
+
+
+### Android SDK and Apache Ant
+
+Install the Android SDK from
+[developer.android.com/sdk](http://developer.android.com/sdk/).  You
+may be presented with a choice of where to install the SDK, otherwise
+move the downloaded `adt-bundle` tree to wherever you store
+development tools.
+
+You'll need to run the Android SDK Manager (`android` from a command line) at 
least once before starting your Cordova project. Make sure to install the most 
recent version of the Android SDK Tools and SDK Platform **specifically API 
level 19**. Please see [Setting up your Development 
Environment](https://developer.amazon.com/public/resources/development-tools/ide-tools/tech-docs/01-setting-up-your-development-environment)
 on the Amazon Developer Portal for more information about setting up your 
development environment for Kindle Fire OS devices. 
+
+Install the Apache Ant build tool by [downloading an Ant binary 
distribution](http://ant.apache.org/bindownload.cgi), unzipping into a 
directory you can refer to later. See the [Ant 
manual](http://ant.apache.org/manual/index.html) for more info.
+
+For Cordova command-line tools to work, you need to include the Android SDK's
+`tools`, `platform-tools` and `apache-ant/bin` directories in your PATH 
environment.
+
+ Mac/Linux Path
+
+On Mac, Linux or other Unix-like platforms, you can use a text editor to 
create or modify the
+`~/.bash_profile` file, adding a line such as the following, depending
+on where the 

[38/51] [partial] docs commit: CB-10029: rename edge to dev. This closes #426.

2015-11-18 Thread dblotsky
http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/f061b980/www/docs/de/edge/cordova/storage/sqlresultsetrowlist/sqlresultsetrowlist.md
--
diff --git 
a/www/docs/de/edge/cordova/storage/sqlresultsetrowlist/sqlresultsetrowlist.md 
b/www/docs/de/edge/cordova/storage/sqlresultsetrowlist/sqlresultsetrowlist.md
deleted file mode 100644
index 994e275..000
--- 
a/www/docs/de/edge/cordova/storage/sqlresultsetrowlist/sqlresultsetrowlist.md
+++ /dev/null
@@ -1,133 +0,0 @@

-license: >
-Licensed to the Apache Software Foundation (ASF) under one
-or more contributor license agreements.  See the NOTICE file
-distributed with this work for additional information
-regarding copyright ownership.  The ASF licenses this file
-to you under the Apache License, Version 2.0 (the
-"License"); you may not use this file except in compliance
-with the License.  You may obtain a copy of the License at
-
-http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing,
-software distributed under the License is distributed on an
-"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-KIND, either express or implied.  See the License for the
-specific language governing permissions and limitations
-under the License.
-
-title: SQLResultSetRowList

-
-# SQLResultSetRowList
-
-Eine der Eigenschaften von den 
`[SQLResultSet](../sqlresultset/sqlresultset.html)` mit den Zeilen aus einer 
SQL-Abfrage zurückgegeben.
-
-## Eigenschaften
-
-*   **Länge**: die Anzahl der Zeilen, die von der SQL-Abfrage zurückgegeben.
-
-## Methoden
-
-*   **Element**: liefert die Zeile am angegebenen Index durch ein 
JavaScript-Objekt dargestellt.
-
-## Informationen
-
-Die `SQLResultSetRowList` enthält die Daten aus einer SQL zurückgegeben 
`select` Anweisung. Das Objekt enthält eine `length` Eigenschaft, die angibt, 
wie viele Zeilen der `select` Anweisung zurückgegeben. Um eine Zeile mit Daten 
abzurufen, rufen Sie die `item` -Methode, um einen Index angeben. Es gibt eine 
JavaScript `Object` deren Eigenschaften sind die Datenbankspalten der `select` 
Anweisung ausgeführt wurde.
-
-## Unterstützte Plattformen
-
-*   Android
-*   BlackBerry WebWorks (OS 6.0 und höher)
-*   iOS
-*   Tizen
-
-## Führen Sie SQL-schnelles-Beispiel
-
-function queryDB(tx) {
-tx.executeSql('SELECT * FROM DEMO', [], querySuccess, errorCB);
-}
-
-function querySuccess(tx, results) {
-var len = results.rows.length;
-console.log("DEMO table: " + len + " rows found.");
-for (var i=0; i

[22/51] [partial] docs commit: CB-10029: rename edge to dev. This closes #426.

2015-11-18 Thread dblotsky
http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/f061b980/www/docs/en/edge/config_ref/index.md
--
diff --git a/www/docs/en/edge/config_ref/index.md 
b/www/docs/en/edge/config_ref/index.md
deleted file mode 100644
index 9c1aa5a..000
--- a/www/docs/en/edge/config_ref/index.md
+++ /dev/null
@@ -1,251 +0,0 @@

-license: >
-Licensed to the Apache Software Foundation (ASF) under one
-or more contributor license agreements.  See the NOTICE file
-distributed with this work for additional information
-regarding copyright ownership.  The ASF licenses this file
-to you under the Apache License, Version 2.0 (the
-"License"); you may not use this file except in compliance
-with the License.  You may obtain a copy of the License at
-
-http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing,
-software distributed under the License is distributed on an
-"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-KIND, either express or implied.  See the License for the
-specific language governing permissions and limitations
-under the License.
-
-title: The config.xml File

-
-# The config.xml File
-
-Many aspects of an app's behavior can be controlled with a global
-configuration file, `config.xml`.  This
-platform-agnostic XML file is arranged based on the W3C's [Packaged
-Web Apps (Widgets)](http://www.w3.org/TR/widgets/) specification, and
-extended to specify core Cordova API features, plugins, and
-platform-specific settings.
-
-For projects created with the Cordova CLI (described in The
-Command-Line Interface), this file can be found in the top-level
-directory:
-
-app/config.xml
-
-Note that before version 3.3.1-0.2.0, the file existed at `app/www/config.xml`,
-and that having it here is still supported.
-
-When using the CLI to build a project, versions of this file are
-passively copied into various `platforms/` subdirectories, for example:
-
-app/platforms/ios/AppName/config.xml
-app/platforms/blackberry10/www/config.xml
-app/platforms/android/res/xml/config.xml
-
-This section details global and cross-platform configuration options.
-See the following sections for platform-specific options:
-
-- [iOS Configuration](../guide/platforms/ios/config.html)
-- [Android Configuration](../guide/platforms/android/config.html)
-- [BlackBerry 10 Configuration](../guide/platforms/blackberry10/config.html)
-
-In addition to the various configuration options detailed below, you
-can also configure an application's core set of images for each target
-platform. See [Icons and Splash Screens](images.html) for more information.
-
-## Core Configuration Elements
-
-This example shows the default `config.xml` generated by the CLI's
-`create` command, described in [The Command-Line 
Interface](../guide/cli/index.html):
-
-
-HelloWorld
-
-A sample Apache Cordova application that responds to the 
deviceready event.
-
-http://cordova.io;>
-Apache Cordova Team
-
-
-
-
-
-The following configuration elements appear in the top-level
-`config.xml` file, and are supported across all supported Cordova
-platforms:
-
-- The `` element's `id` attribute provides the app's
-  reverse-domain identifier, and the `version` its full version number
-  expressed in major/minor/patch notation.
-
-  The widget tag can also have attributes that specify alternative versions,
-  namely `versionCode` for Android, `CFBundleVersion` for iOS, and 
-  `packageVersion` for Windows. See the Additional Versioning section below 
-  for details.
-
-- The `` element specifies the app's formal name, as it appears
-  on the device's home screen and within app-store interfaces.
-
-- The `` and `` elements specify metadata and
-  contact information that may appear within app-store listings.
-
-- The optional `` element defines the app's starting
-  page in the top-level web assets directory. The default value is
-  `index.html`, which customarily appears in a project's top-level
-  `www` directory.
-
-- `` elements define the set of external domains the app is
-  allowed to communicate with. The default value shown above allows
-  it to access any server. See the Domain [Whitelist 
Guide](../guide/appdev/whitelist/index.html) for details.
-
-- The `` tag sets various options as pairs of
-  `name`/`value` attributes. Each preference's `name` is
-  case-insensitive.  Many preferences are unique to specific
-  platforms, as listed at the top of this page. The following sections
-  detail preferences that apply to more than one platform.
-
-### Additional Versioning
-
-Android, iOS, and Windows support a second version string (or number) in 
-addition to the one visible in app stores:
-
-- 

[33/51] [partial] docs commit: CB-10029: rename edge to dev. This closes #426.

2015-11-18 Thread dblotsky
http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/f061b980/www/docs/de/edge/guide/platforms/ios/plugin.md
--
diff --git a/www/docs/de/edge/guide/platforms/ios/plugin.md 
b/www/docs/de/edge/guide/platforms/ios/plugin.md
deleted file mode 100644
index 2532584..000
--- a/www/docs/de/edge/guide/platforms/ios/plugin.md
+++ /dev/null
@@ -1,184 +0,0 @@

-license: >
-Licensed to the Apache Software Foundation (ASF) under one
-or more contributor license agreements.  See the NOTICE file
-distributed with this work for additional information
-regarding copyright ownership.  The ASF licenses this file
-to you under the Apache License, Version 2.0 (the
-"License"); you may not use this file except in compliance
-with the License.  You may obtain a copy of the License at
-
-http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing,
-software distributed under the License is distributed on an
-"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-KIND, either express or implied.  See the License for the
-specific language governing permissions and limitations
-under the License.
-
-title: iOS Plugins

-
-# iOS Plugins
-
-Dieser Abschnitt enthält Informationen für das native Plugin-Code auf der 
iOS-Plattform zu implementieren. Finden Sie bevor Sie dies lesen einen 
Überblick über die Plugin-Struktur und ihre gemeinsame 
JavaScript-Schnittstelle Anwendung Plugins. In diesem Abschnitt weiterhin das 
Beispiel- *Echo* -Plugin, das zum einheitlichen Plattform und zurück von 
Cordova-Webview kommuniziert.
-
-Ein iOS-Plugin ist implementiert als eine Objective-C-Klasse, die erweitert 
die `CDVPlugin` Klasse. Für JavaScript `exec` Methode `service` Parameter 
einer Objective-C Klasse, jeder Plugin-Klasse zuordnen muss registriert sein, 
als ein `` Tag im Verzeichnis Anwendung mit Namen `config.xml` Datei.
-
-## Plugin-Klasse Zuordnung
-
-Der JavaScript-Teil eines Plugins verwendet die `cordova.exec` -Methode, wie 
folgt:
-
-Exec (< SuccessFunction >, < FailFunction >, < Service >, < Aktion >, 
[< arg >]);
-
-
-Das marshallt ersuchen die `UIWebView` effektiv auf die native iOS-Seite 
aufrufen der `action` -Methode für die `service` -Klasse mit der übergebenen 
Argumente der `args` Array.
-
-Geben Sie das Plugin als ein `` Tag in Ihre 
Cordova-iOS-Anwendung-Projekt `config.xml` Datei, mit der `plugin.xml` Datei 
automatisch, wie unter Anwendung Plugins dieses Markup zu injizieren:
-
-
-
-
-
-
-Der Funktion `name` -Attribut sollte übereinstimmen, was Sie als das 
JavaScript angeben `exec` Anruf `service` Parameter. Das `value` -Attribut den 
Namen des Plugins Objective-C Klasse übereinstimmen sollte. Die `` des 
Elements `name` sollte immer sein `ios-package` . Wenn Sie diese Richtlinien 
nicht folgen, kann das Plugin kompiliert, aber Cordova möglicherweise noch 
nicht darauf zugreifen.
-
-## Plugin-Initialisierung und Lebensdauer
-
-Wird eine Instanz eines Plugin-Objekts erstellt, für das Leben eines jeden 
`UIWebView` . Plugins werden normalerweise instanziiert, wenn zunächst durch 
einen Aufruf von JavaScript verwiesen. Andernfalls sie instanziiert werden 
können, indem Sie festlegen einer `param` namens `onload` zu `true` in der 
`config.xml` Datei:
-
-
-
-
-
-
-
-Es gibt *keine* benannten Initialisierer für Plugins. Stattdessen sollten die 
Plugins verwenden die `pluginInitialize` -Methode für ihre Startlogik.
-
-Plugins mit lang andauernden Anfragen, background Aktivität wie 
Medienwiedergabe, Listener oder das pflegen internen Zustand sollten 
implementieren die `onReset` Methode, um diese Tätigkeiten zu bereinigen. Die 
Methode ausgeführt wird, wenn die `UIWebView` navigiert zu einer neuen Seite 
oder Aktualisierungen, die das JavaScript lädt.
-
-## Ein iOS Cordova Plugin schreiben
-
-Ein JavaScript-Aufruf feuert eine Plugin-Anforderung an die systemeigene Seite 
und der entsprechenden iOS Objective-C Plugin zugeordnet ist, richtig in die 
`config.xml` -Datei, aber wie sieht das Finale iOS Objective-C Plugin Klasse 
aussehen? Was auch immer an das Plugin mit JavaScript gesendet wird `exec` 
Funktion wird in der entsprechenden Plugin-Klasse übergeben `action` Methode. 
Eine Plugin-Methode hat diese Signatur:
-
-- (void)myMethod:(CDVInvokedUrlCommand*)command
-{
-CDVPluginResult* pluginResult = nil;
-NSString* myarg = [command.arguments objectAtIndex:0];
-
-if (myarg != nil) {
-pluginResult = [CDVPluginResult 
resultWithStatus:CDVCommandStatus_OK];
-} else {
-pluginResult = [CDVPluginResult 
resultWithStatus:CDVCommandStatus_ERROR messageAsString:@"Arg was null"];
-}
-[self.commandDelegate 

[15/51] [partial] docs commit: CB-10029: rename edge to dev. This closes #426.

2015-11-18 Thread dblotsky
http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/f061b980/www/docs/es/dev/config_ref/index.md
--
diff --git a/www/docs/es/dev/config_ref/index.md 
b/www/docs/es/dev/config_ref/index.md
new file mode 100644
index 000..61b5713
--- /dev/null
+++ b/www/docs/es/dev/config_ref/index.md
@@ -0,0 +1,191 @@
+---
+license: >
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+
+title: El archivo config.xml
+---
+
+# El archivo config.xml
+
+Muchos aspectos del comportamiento de una aplicación pueden controlarse con 
un archivo de configuración global, `config.xml` . Este archivo XML 
independiente de la plataforma se arregla basado en la especificación del W3C 
[Empaquetado aplicaciones Web (Widgets)][1] y extendido a especificar funciones 
API Cordova centrales, plugins y configuración específica de la plataforma.
+
+ [1]: http://www.w3.org/TR/widgets/
+
+Para los proyectos creados con la CLI Cordova (descrito en la interfaz de 
línea de comandos), este archivo puede encontrarse en el directorio de nivel 
superior:
+
+app/config.xml
+
+
+Tenga en cuenta que antes de versión 3.3.1-0.2.0, el archivo existía en 
`app/www/config.xml` , y que tenerlo aquí es apoyado todavía.
+
+Cuando se usa la CLI para construir un proyecto, las versiones de este archivo 
pasivo se copian en varios `platforms/` subdirectorios, por ejemplo:
+
+app/platforms/ios/AppName/config.xml
+app/platforms/blackberry10/www/config.xml
+app/platforms/android/res/xml/config.xml
+
+
+Esta sección detalla las opciones de configuración global y multiplataforma. 
Consulte las siguientes secciones para las opciones específicas de la 
plataforma:
+
+*   Configuración de iOS
+*   [Configuración de Android](../guide/platforms/android/config.html)
+*   [Configuración de BlackBerry 
10](../guide/platforms/blackberry10/config.html)
+
+Además de las diversas opciones de configuración detalladas a continuación, 
también puede configurar el conjunto básico de una aplicación de imágenes 
para cada plataforma de destino. Ver los iconos y salpicadura pantallas para 
obtener más información.
+
+## Elementos de configuración del núcleo
+
+Este ejemplo muestra el valor predeterminado `config.xml` generados por la CLI 
`create` comando, que se describe en la interfaz de línea de comandos:
+
+
+HelloWorld
+
+A sample Apache Cordova application that responds to the 
deviceready event.
+
+http://cordova.io;>
+Apache Cordova Team
+
+
+
+
+
+
+Los siguientes elementos de configuración aparecen en el archivo `config.xml` 
de primer nivel y se admiten todas las plataformas soportadas Cordova:
+
+*   Atributo `id` del elemento `` proporciona identificador de 
reversa-dominio de la aplicación y la `versión de` su número de versión 
completa expresada en notación de mayor/menor/parche.
+
+La etiqueta widget también puede tener atributos que especifican las 
versiones alternativas, a saber versionCode para Android y CFBundleVersion para 
iOS. Vea la sección de versiones adicionales debajo para más detalles.
+
+*   El elemento `` especifica nombre formal de la aplicación, como 
aparece en la pantalla principal del dispositivo y dentro de la tienda app 
interfaces.
+
+*   Los elementos `` y `` especifican metadatos e 
información de contacto que puede aparecer en anuncios de la tienda app.
+
+*   Opcional `` elemento define la página de inicio de la 
aplicación en el directorio web de alto nivel de activos. El valor 
predeterminado es `index.html`, que habitualmente aparece en el directorio de 
nivel superior `www` de un proyecto.
+
+*   elementos `` definen el conjunto de dominios externos que puede 
comunicarse con la aplicación. El valor predeterminado que se muestra arriba 
le permite acceder a cualquier servidor. Consulte a la guía de lista blanca de 
dominio para obtener más detalles.
+
+*   La etiqueta `` establece varias opciones como pares de 
`nombre` / `valor de` atributos. De cada preferencia `name` es 

[37/51] [partial] docs commit: CB-10029: rename edge to dev. This closes #426.

2015-11-18 Thread dblotsky
http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/f061b980/www/docs/de/edge/guide/hybrid/plugins/index.md
--
diff --git a/www/docs/de/edge/guide/hybrid/plugins/index.md 
b/www/docs/de/edge/guide/hybrid/plugins/index.md
deleted file mode 100644
index a9c21f2..000
--- a/www/docs/de/edge/guide/hybrid/plugins/index.md
+++ /dev/null
@@ -1,177 +0,0 @@

-license: >
-Licensed to the Apache Software Foundation (ASF) under one
-or more contributor license agreements.  See the NOTICE file
-distributed with this work for additional information
-regarding copyright ownership.  The ASF licenses this file
-to you under the Apache License, Version 2.0 (the
-"License"); you may not use this file except in compliance
-with the License.  You may obtain a copy of the License at
-
-http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing,
-software distributed under the License is distributed on an
-"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-KIND, either express or implied.  See the License for the
-specific language governing permissions and limitations
-under the License.
-
-title: Plugin-Entwicklung-Guide

-
-# Plugin-Entwicklung-Guide
-
-Ein *Plugin* ist ein Paket von eingefügten Code, der die Cordova Webview 
ermöglicht es, innerhalb, die derer die app macht mit der einheitlichen 
Plattform für die Kommunikation auf dem es ausgeführt wird. Plugins 
ermöglichen den Zugriff auf Geräte und Plattform-Funktionalität, die 
normalerweise nicht für Web-basierte Anwendungen verfügbar ist. Die 
wichtigsten Cordova API-Features sind als Plugins implementiert, und viele 
andere stehen, dass aktivieren wie Barcode-Scannern, NFC-Kommunikation 
Funktionen, oder zu Kalender anpassen Schnittstellen. Es ist eine 
[Registrierung][1] der verfügbaren Plugins.
-
- [1]: http://plugins.cordova.io
-
-Plugins umfassen eine einzelne JavaScript-Schnittstelle zusammen mit 
entsprechenden native Code-Bibliotheken für jede unterstützte Plattform. Dies 
blendet im Wesentlichen die verschiedenen Implementierungen von systemeigenem 
Code hinter eine gemeinsame JavaScript-Schnittstelle.
-
-Dieser Abschnitt schrittweise einen einfachen *Echo* -Plugin, die übergibt 
eine Zeichenfolge von JavaScript zum einheitlichen Plattform und zurück, die 
Sie als Modell verwenden können, um viel komplexere Features zu erstellen. 
Dieser Abschnitt beschreibt die grundlegenden Plugin-Struktur und die nach 
außen gerichtete JavaScript-Schnittstelle. Jede entsprechende 
[Benutzeroberfläche](../../next/index.html) finden Sie in der Liste am Ende 
dieses Abschnitts.
-
-Zusätzlich zu diesen Anweisungen, wenn bereiten auf ein Plugin zu schreiben, 
ist es am besten über die [vorhandenen Plugins][2] , Anleitungen zu schauen.
-
- [2]: http://cordova.apache.org/#contribute
-
-## Eine Plugin erstellen
-
-Anwendungsentwickler verwenden der CLI `plugin add` Befehl (beschrieben in The 
Command-Line Interface), eine Plugin zu einem Projekt anzuwenden. Das Argument 
für diesen Befehl ist die URL für ein *Git* -Repository mit dem Plugin-Code. 
In diesem Beispiel implementiert Cordova's Device API:
-
-$ cordova plugin add 
https://git-wip-us.apache.org/repos/asf/cordova-plugin-device.git
-
-
-Das Plugin Repository muss eine Top-Level-Funktion `plugin.xml` 
manifest-Datei. Es gibt viele Möglichkeiten um diese Datei zu konfigurieren, 
die Informationen für die in der 
[Plugin-Spezifikation](../../../plugin_ref/spec.html) verfügbar sind. Diese 
gekürzte Version von der `Device` Plugin bietet ein einfaches Beispiel, als 
Vorbild zu verwenden:
-
-
-http://apache.org/cordova/ns/plugins/1.0;
-id="cordova-plugin-device" version="0.2.3">
-Device
-Cordova Device Plugin
-Apache 2.0
-cordova,device
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Der obersten Ebene `plugin` Tag `id` Attribut verwendet das gleiche 
umgekehrt-Domäne-Format in das Plugin-Paket zu identifizieren, wie die apps, 
die sie hinzugefügt haben. Die `js-module` Tag gibt den Pfad zu "common 
Interface" JavaScript. Die `platform` Tag gibt einen entsprechenden Satz von 
systemeigenem Code für die `ios` Plattform in diesem Fall. Die `config-file` 
Tag kapselt ein `feature` Tag, der in der Plattform-spezifischen eingespritzt 
ist `config.xml` Datei, die Plattform der zusätzliche Codebibliothek 
aufmerksam zu machen. Die `header-file` und `source-file` Markierungen geben 
Sie den Pfad zu der Bibliothek-Komponentendateien.
-
-## Eine Plugin überprüfen
-
-Können Sie das `plugman` -Dienstprogramm zum Überprüfen, ob das Plugin 

[29/51] [partial] docs commit: CB-10029: rename edge to dev. This closes #426.

2015-11-18 Thread dblotsky
http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/f061b980/www/docs/en/dev/config_ref/images.md
--
diff --git a/www/docs/en/dev/config_ref/images.md 
b/www/docs/en/dev/config_ref/images.md
new file mode 100644
index 000..5d81eca
--- /dev/null
+++ b/www/docs/en/dev/config_ref/images.md
@@ -0,0 +1,206 @@
+---
+license: >
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+
+title: Icons and Splash Screens
+---
+
+# Icons and Splash Screens
+
+This section shows how to configure an app's icon and optional splash
+screen for various platforms, both when working in the Cordova CLI
+(described in The Command-Line Interface) or using platform-specific
+SDK tools (detailed in the Platform Guides).
+
+## Configuring Icons in the CLI
+
+When working in the CLI you can define app icon(s) via `` element 
(`config.xml`).
+If you do not specify an icon then the Apache Cordova logo is used.
+
+
+
+src: (required) specifies the location of the image file, relative to your 
project directory
+
+platform: (optional) target platform
+
+width: (optional) icon width in pixels
+
+height: (optional) icon height in pixels
+
+density: (optional) android specific, specifies icon density
+
+The following configuration can be used to define single default icon
+which will be used for all platforms.
+
+
+
+For each platform you can also define a pixel-perfect icons set to fit
+different screen resolutions.
+
+Amazon Fire OS
+
+ 
+  
+  
+  
+  
+ 
+
+Android
+
+ 
+  
+  
+  
+  
+ 
+
+BlackBerry10
+
+ 
+  
+  
+ 
+
+See BlackBerry's documentation for targeting multiple sizes and locales.
+[http://developer.blackberry.com/html5/documentation/icon_element.html]
+
+Firefox OS
+
+ 
+  
+ 
+
+iOS
+
+ 
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+ 
+
+Windows Phone8
+
+ 
+  
+  
+  
+ 
+
+Windows8
+
+ 
+  
+  
+  
+ 
+
+## Configuring Splash Screens in the CLI
+
+In the top-level `config.xml` file (not the one in `platforms`), add 
configuration elements like those specified here.
+
+# Example configuration
+
+Please notice that the value of the "src" attribute is relative to the project 
directory and not to the www directory.
+You can name the source image whatever you like. The internal name in the app 
are determined by Cordova.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+# Supported platforms
+
+As of now (Cordova 3.5.0 July 2014) the following platforms support splash 
screens.
+
+android
+ios
+wp8
+windows8
+blackberry10
+
+# Splashscreen Plugin
+
+  Apache Cordova also offers special splash screen plugin which could be used 
to programmatically display and hide a splash screen during application launch
+  https://github.com/apache/cordova-plugin-splashscreen
+
+

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/f061b980/www/docs/en/dev/config_ref/index.md
--
diff --git a/www/docs/en/dev/config_ref/index.md 

[06/51] [partial] docs commit: CB-10029: rename edge to dev. This closes #426.

2015-11-18 Thread dblotsky
http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/f061b980/www/docs/es/dev/guide/platforms/wp8/vmware.md
--
diff --git a/www/docs/es/dev/guide/platforms/wp8/vmware.md 
b/www/docs/es/dev/guide/platforms/wp8/vmware.md
new file mode 100644
index 000..23d3894
--- /dev/null
+++ b/www/docs/es/dev/guide/platforms/wp8/vmware.md
@@ -0,0 +1,53 @@
+---
+license: >
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+
+title: Configuración de VMWare Fusion
+---
+
+# Configuración de VMWare Fusion
+
+Esta sección le muestra cómo configurar VMWare Fusion en un Mac para que 
Córdoba puede utilizar para generar aplicaciones de Windows Phone.
+
+La [Microsoft Developer Network][1] proporciona instrucciones generales sobre 
cómo ejecutar Windows bajo VMWare Fusion. Después de instalar Windows, siga 
estos pasos:
+
+ [1]: http://msdn.microsoft.com/en-US/library/windows/apps/jj945426
+
+1.  Dentro de VMWare Fusion, seleccione la imagen de disco de Windows 8 que ha 
preparado y elija **configuración**.
+
+2.  Elija las opciones de configuración de **los procesadores y memoria** . 
Asegúrese de especificar *dos* núcleos de procesador y que **permiten a las 
aplicaciones de hipervisor en esta máquina Virtual**:
+
+![][2]
+
+El emulador de Windows Phone solo utiliza la mitad de un gigabyte de 
memoria, así que en general que se debe reservar por lo menos 2GB para VMWare.
+
+3.  Elija la configuración **avanzada** . Activar el **motor de 
virtualización preferido: Intel VT-x con EPT** opción:
+
+![][3]
+
+4.  Modificar el archivo *VMX* para agregar o modificar los siguientes 
parámetros:
+
+hypervisor.cpuid.v0 = "FALSE"
+mce.enable = "TRUE"
+vhv.enable = "TRUE"
+
+
+ [2]: {{ site.baseurl }}/static/img/guide/platforms/wp8/vmware_memory_opts.png
+ [3]: {{ site.baseurl 
}}/static/img/guide/platforms/wp8/vmware_advanced_opts.png
+
+Una vez que complete estos pasos, entonces estás listo para instalar el SDK 
de Windows Phone. Consulte a la guía de plataforma de Windows Phone 8 para 
más detalles.

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/f061b980/www/docs/es/dev/guide/platforms/wp8/webview.md
--
diff --git a/www/docs/es/dev/guide/platforms/wp8/webview.md 
b/www/docs/es/dev/guide/platforms/wp8/webview.md
new file mode 100644
index 000..2fcfc55
--- /dev/null
+++ b/www/docs/es/dev/guide/platforms/wp8/webview.md
@@ -0,0 +1,45 @@
+---
+license: >
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+
+title: Windows Phone 8,0 WebViews
+---
+
+# Windows Phone 8,0 WebViews
+
+Esta guía le muestra cómo incrustar un componente WebView Cordova habilitado 
dentro de una aplicación Windows Phone 8.0 más grande.
+
+Para seguir estas instrucciones, asegúrate de que tienes la última 
distribución de Córdoba. Descargar desde 
[cordova.apache.org](http://cordova.apache.org) y descomprime el paquete 
Windows Phone 8.0 (cordova-wp8-*.zip).
+
+  1. Desplácese hasta el paquete `wp8/framework` Directorio y construir 
`WPCordovaClassLib.sln` . Se crea el`Bin\Debug[Release]\WPCordovaClassLib.dll`.
+
+  2. Copia el `WPCordovaClassLib.dll` archivo en del proyecto Windows Phone 8 
`/libs` directorio e incluyen `WPCordovaClassLib.dll` a través de su proyecto 
`Project->References->Add 

[11/51] [partial] docs commit: CB-10029: rename edge to dev. This closes #426.

2015-11-18 Thread dblotsky
http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/f061b980/www/docs/es/dev/guide/platforms/blackberry/tools.md
--
diff --git a/www/docs/es/dev/guide/platforms/blackberry/tools.md 
b/www/docs/es/dev/guide/platforms/blackberry/tools.md
new file mode 100644
index 000..f3964c6
--- /dev/null
+++ b/www/docs/es/dev/guide/platforms/blackberry/tools.md
@@ -0,0 +1,67 @@
+---
+license: >
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+
+title: Herramientas de línea de comandos de BlackBerry
+---
+
+# Herramientas de línea de comandos de BlackBerry
+
+El `cordova` la utilidad de línea de comandos es una herramienta de alto 
nivel que le permite construir aplicaciones a través de varias plataformas a 
la vez. Una versión anterior del marco Cordova ofrece conjuntos de 
herramientas de línea de comandos específicos de cada plataforma. Para 
usarlos como una alternativa a la CLI, tienes que descargar esta versión de 
Córdoba desde [cordova.apache.org][1]. La descarga contiene los archivos 
separados para cada plataforma. Ampliar la plataforma de destino. Las 
herramientas aquí descritas están normalmente disponibles en el nivel 
superior `bin` Directorio de otra manera, consulte el archivo **Léame** para 
obtener direcciones más detallada.
+
+ [1]: http://cordova.apache.org
+
+## Crear un proyecto
+
+Ejecute el `create` comando, especificando la ruta existente para el proyecto, 
el identificador de paquete de reversa-dominio-estilo y nombre para mostrar de 
la aplicación. Aquí está la sintaxis para Mac y Windows:
+
+$ /path/to/cordova-blackberry-webworks/bin/create /path/to/my_new_project 
com.example.project_name ProjectName
+$ /path/to/cordova-blackberry-webworks/bin/create.bat 
/path/to/my_new_project com.example.project_name ProjectName
+
+
+**NOTA:** La plataforma BlackBerry ignora el marcador de posición del nombre 
de paquete (`com.example.project_name`), pero aún se requiere para el uso de 
herramientas multiplataforma.
+
+## Construir un proyecto
+
+Para proyectos de BlackBerry, por favor asegúrese de que personalizar el 
archivo `project.properties` en el directorio raíz de tu proyecto de Cordova. 
Tienes que hacerlo para abastecer su BlackBerry contraseña clave de firma y 
especificar ubicaciones para el BlackBerry WebWorks SDK y BlackBerry emulador 
ejecutables.
+
+$ /path/to/my_new_project/cordova/build 
+$ /path/to/my_new_project/cordova/build.bat 
+
+
+## Inicie el emulador
+
+Para proyectos de BlackBerry, por favor asegúrese de que usted personalizar 
el `project.properties` archivo en la raiz de tu directorio del proyecto 
Cordova. Tienes que hacerlo para abastecer su BlackBerry contraseña clave de 
firma y especificar ubicaciones para el BlackBerry WebWorks SDK y BlackBerry 
emulador ejecutables.
+
+$ /path/to/my_new_project/cordova/run 
+
+
+y después elija 'no' cuando se le solicite con:
+
+Do you have a BlackBerry device connected to your computer? (y/n)
+$ /path/to/my_new_project/cordova/run 
+
+
+y después elija 'no' cuando se le solicite con:
+
+Do you have a BlackBerry device connected to your computer? (y/n)
+
+
+## Tala
+
+Desafortunadamente, streaming registros directamente desde el dispositivo no 
es actualmente compatible. Sin embargo, BlackBerry ofrece soporte Web Inspector 
incorporado para Playbook y BlackBerry dispositivos smartphone corriendo 
BlackBerry OS 7.0 y superiores. También puede acceder a los registros de la 
aplicación (incluyendo cualquier llamada a `console.log`) en tu dispositivo 
manteniendo pulsada la tecla ''ALT'' desde la pantalla principal y tecleando 
las teclas ''lglg''.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/f061b980/www/docs/es/dev/guide/platforms/blackberry/upgrade.md
--
diff --git a/www/docs/es/dev/guide/platforms/blackberry/upgrade.md 
b/www/docs/es/dev/guide/platforms/blackberry/upgrade.md
new file mode 100644
index 000..a6eb28c
--- /dev/null
+++ b/www/docs/es/dev/guide/platforms/blackberry/upgrade.md
@@ -0,0 +1,431 @@

[46/51] [partial] docs commit: CB-10029: rename edge to dev. This closes #426.

2015-11-18 Thread dblotsky
http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/f061b980/www/docs/de/dev/guide/platforms/android/index.md
--
diff --git a/www/docs/de/dev/guide/platforms/android/index.md 
b/www/docs/de/dev/guide/platforms/android/index.md
new file mode 100644
index 000..f70e5bf
--- /dev/null
+++ b/www/docs/de/dev/guide/platforms/android/index.md
@@ -0,0 +1,275 @@
+---
+license: >
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+
+title: Android-Plattform-Guide
+---
+
+# Android-Plattform-Guide
+
+Diese Anleitung zeigt wie Ihr SDK-Umgebung einrichten, um Cordova apps für 
Android-Geräte bereitzustellen sowie optional mithilfe von Befehlszeilentools 
Android-zentrierte in Ihrem Entwicklungs-Workflow. Sie müssen installieren Sie 
das Android SDK unabhängig davon, ob Sie für die Entwicklung dieser 
Plattform-zentrierte Shell-Werkzeugen oder plattformübergreifende Cordova CLI 
verwenden möchten. Einen Vergleich der zwei Entwicklungswege finden Sie in der 
[Übersicht](../../overview/index.html). Details über die CLI finden Sie unter 
The Command-Line Interface.
+
+## Anforderungen und Unterstützung
+
+Cordova für Android erfordert das Android SDK, welches auf OS X, Linux oder 
Windows Betriebssystem installiert werden konnte. Finden Sie unter das Android 
SDK- [Systemanforderungen][1].
+
+ [1]: http://developer.android.com/sdk/index.html#Requirements
+
+Cordova unterstützt Android 4.0.x (beginnend mit Android API-Ebene 14) und 
höher. Als allgemeine Regel werden Android Versionen von Cordova nicht 
unterstützt, wie sie unter 5 % auf Googles [Verteilung Dashboard][2]sinken. 
Androide Versionen früher als API Stufe 10 und die 3.x-Versionen (Waben, 
API-Level 11-13) unterschreiten deutlich die 5 %-Schwelle.
+
+ [2]: http://developer.android.com/about/dashboards/index.html
+
+## Cordova Shell Tools installieren
+
+Wenn Sie Cordova's Android-zentrierte Shell-Werkzeugen in Verbindung mit dem 
SDK verwenden möchten, laden Sie Cordova von [cordova.apache.org][3]. 
Andernfalls überspringen Sie diesen Abschnitt, wenn Sie das 
Cross-Plattform-CLI-Tool beschrieben in der Befehlszeilenschnittstelle 
verwenden möchten.
+
+ [3]: http://cordova.apache.org
+
+Der Cordova-Download enthält separate Archiv für jede Plattform. Achten Sie 
darauf, um das entsprechende Archiv zu erweitern `android` in diesem Fall in 
ein leeres Verzeichnis. Die entsprechenden ausführbaren Dienstprogramme sind 
in der obersten Ebene `bin` Verzeichnis. (Konsultieren Sie die **README** 
-Datei, ggf. für eine genauere Wegbeschreibung.)
+
+Diese Shell-Tools können Sie erstellen, erstellen und Ausführen von Android 
apps. Informationen über die zusätzliche Befehlszeilenschnittstelle, die 
Plugin-Features für alle Plattformen aktiviert, finden Sie unter Using Plugman 
zu Plugins verwalten. Details zum Entwickeln von Plugins finden Sie in der 
Anwendung-Plugins.
+
+## Installieren Sie das Java Development Kit (JDK)
+
+Installieren Sie [Java Development Kit (JDK) 7][4] oder höher.
+
+ [4]: 
http://www.oracle.com/technetwork/java/javase/downloads/jdk7-downloads-1880260.html
+
+Wenn Sie auf Windows installieren, müssen Sie auch `JAVA_HOME` 
-Umgebungsvariable nach JDK-Installationspfad (z.B. C:\Program 
Files\Java\jdk1.7.0_75) festgelegt.
+
+## Das Android SDK installieren
+
+Installieren Sie [Android eigenständige SDK Tools][5] oder das 
[Android-Studio][6]. Procceed mit `Android-Studio` Wenn Sie planen, entwickeln 
neue Cordova für [Android Plugins](plugin.html) oder Verwenden von 
systemeigenen Tools ausführen und Debuggen der Android-Plattform. Andernfalls 
sind `Android Stand-Alone-SDK-Tools` genug, um erstellen und Bereitstellen von 
Android-Anwendung.
+
+ [5]: http://developer.android.com/sdk/installing/index.html?pkg=tools
+ [6]: http://developer.android.com/sdk/installing/index.html?pkg=studio
+
+Detaillierte Installationsanweisungen finden Sie im Rahmen der 
Installationslinks oben.
+
+Für Cordova Befehlszeilen-Tools für die Arbeit oder die CLI, das darauf 
basiert, müssen Sie das SDK `Tools` und `Plattform` Verzeichnisse im 
`Pfad`enthalten. Auf einem Mac oder Linux können Sie einen 

[26/51] [partial] docs commit: CB-10029: rename edge to dev. This closes #426.

2015-11-18 Thread dblotsky
http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/f061b980/www/docs/en/dev/guide/platforms/android/webview.md
--
diff --git a/www/docs/en/dev/guide/platforms/android/webview.md 
b/www/docs/en/dev/guide/platforms/android/webview.md
new file mode 100644
index 000..24bcf12
--- /dev/null
+++ b/www/docs/en/dev/guide/platforms/android/webview.md
@@ -0,0 +1,134 @@
+---
+license: >
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+
+title: Android WebViews
+---
+
+# Android WebViews
+
+This guide shows how to embed a Cordova-enabled WebView component
+within a larger Android application. For details on how these
+components can communicate with each other, see Application Plugins.
+
+If you're unfamiliar with Android, you should first familiarize
+yourself with the [Android Platform Guide](index.html) and have the latest 
Android
+SDK installed before you attempt the more unusual development option
+of embedding a WebView.  Starting with Cordova 1.9, the Android
+platform relies on a `CordovaWebView` component, which builds on a
+legacy `CordovaActivity` component that pre-dates the 1.9 release.
+
+1. To follow these instructions, make sure you have the latest Cordova
+   distribution. Download it from
+   [cordova.apache.org](http://cordova.apache.org) and unzip its
+   Android package.
+
+1. Navigate to the Android package's `/framework` directory and run
+   `ant jar`. It creates the Cordova `.jar` file, formed as
+   `/framework/cordova-x.x.x.jar`.
+
+1. Copy the `.jar` file into the Android project's `/libs` directory.
+
+1. Add the following to the application's `/res/xml/main.xml` file,
+   with the `layout_height`, `layout_width` and `id` modified to suit
+   the application:
+
+
+
+1. Modify the activity so that it implements the `CordovaInterface`.
+   It should implement the included methods.  You may wish to copy
+   them from `/framework/src/org/apache/cordova/CordovaActivity.java`,
+   or else implement them on your own.  The following code fragment
+   shows a basic application that relies on the interface. Note how
+   the referenced view id matches the `id` attribute specified in the
+   XML fragment shown above:
+
+public class CordovaViewTestActivity extends Activity implements 
CordovaInterface {
+CordovaWebView cwv;
+/* Called when the activity is first created. */
+@Override
+public void onCreate(Bundle savedInstanceState) {
+super.onCreate(savedInstanceState);
+setContentView(R.layout.main);
+cwv = (CordovaWebView) findViewById(R.id.tutorialView);
+Config.init(this);
+cwv.loadUrl(Config.getStartUrl());
+}
+
+1. If the application needs to use the camera, implement the
+   following:
+
+@Override
+public void setActivityResultCallback(CordovaPlugin plugin) {
+this.activityResultCallback = plugin;
+}
+/**
+ * Launch an activity for which you would like a result when it 
finished. When this activity exits,
+ * your onActivityResult() method is called.
+ *
+ * @param command   The command object
+ * @param intentThe intent to start
+ * @param requestCode   The request code that is passed to 
callback to identify the activity
+ */
+public void startActivityForResult(CordovaPlugin command, Intent 
intent, int requestCode) {
+this.activityResultCallback = command;
+this.activityResultKeepRunning = this.keepRunning;
+
+// If multitasking turned on, then disable it for activities that 
return results
+if (command != null) {
+this.keepRunning = false;
+}
+
+// Start activity
+super.startActivityForResult(intent, requestCode);
+}   
+
+@Override
+/**
+ * Called when an activity you launched exits, giving you the 
requestCode you started it with,
+ * the resultCode it returned, and any additional data from it.
+  

[41/51] [partial] docs commit: CB-10029: rename edge to dev. This closes #426.

2015-11-18 Thread dblotsky
http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/f061b980/www/docs/de/dev/guide/platforms/win8/plugin.md
--
diff --git a/www/docs/de/dev/guide/platforms/win8/plugin.md 
b/www/docs/de/dev/guide/platforms/win8/plugin.md
new file mode 100644
index 000..e7fcebb
--- /dev/null
+++ b/www/docs/de/dev/guide/platforms/win8/plugin.md
@@ -0,0 +1,211 @@
+---
+license: >
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+
+title: Windows Plugins
+---
+
+# Windows Plugins
+
+Dieser Abschnitt enthält Informationen für das eine Plugin für die 
Verwendung in einem Windows-Speicher-app zu implementieren. Finden Sie bevor 
Sie dies lesen einen Überblick über die Plugin-Struktur und ihre gemeinsame 
JavaScript-Schnittstelle Anwendung Plugins. In diesem Abschnitt weiterhin das 
Beispiel- *Echo* -Plugin, das zum einheitlichen Plattform und zurück von 
Cordova-Webview kommuniziert.
+
+Es ist wichtig zu beachten, dass Windows Entwicklung direkt in Javascript, das 
bedeutet unterstützt, die 'native' Teile in nur erforderlich in besonderen 
Fällen zu entwickeln.
+
+## Erstellen eine Windows-Plugin in JavaScript
+
+Diese Anweisungen sind eine reine JavaScript-Plugin erstellen. Verständnis 
dieser ist entscheidend für das Verständnis wie die systemeigen/verwaltet 
Bits hinzugefügt.
+
+Windows Cordova Plugins sind im Wesentlichen einen einfachen Wrapper 
vorhandenen WinJS bereitgestellten Funktionen, aber vorausgesetzt, dass Ihr 
JS-common Interface für mehrere Geräte definieren möchten, in der Regel habt 
ihr 1 JS-Datei, die die API bereitstellt.
+
+// inside file echoplugin.js
+var EchoPlugin = {
+// the echo function calls successCallback with the provided text in 
strInput
+// if strInput is empty, it will call the errorCallback
+echo:function(successCallback, errorCallback, strInput) {
+
cordova.exec(successCallback,errorCallback,"EchoPlugin","echo",[strInput]);
+}
+}
+
+
+## Innen Cordova Exec unter Windows
+
+Die cordova.exec-Funktion ist auf jeder Plattform unterschiedlich definiert, 
das ist, weil jede Plattform hat seine eigene Art der Kommunikation zwischen 
der Anwendung-Js-Code und dem systemeigenen Wrapper-Code. Doch im Falle von 
Windows, gibt es keine systemeigenen Wrapper also der Exec-Aufruf für 
Konsistenz gibt. Sie konnte Ihre Js nur Plugin direkt in EchoPlugin.echo, 
arbeiten so etwas wie:
+
+// inside file echoplugin.js ( this is what NOT to do if you want to reuse 
the JS API cross platform )
+var EchoPlugin = {
+echo:function(successCallback,errorCallback,strInput) {
+if(!strInput || !strInput.length) {
+errorCallback("Error, something was wrong with the input 
string. =>" + strInput);
+}
+else {
+successCallback(strInput + "echo");
+}
+}
+}
+
+
+Dies würde/könnte funktionieren, aber es bedeutet, dass für verschiedene 
Plattformen Sie verschiedene Versionen von echoPlugin.js benötigen, und 
vielleicht Sie Probleme mit Inkonsistenzen in Ihre Implementierungen hätten. 
Als bewährte Methode beschlossen wir, eine native API innerhalb cordova.exec 
unter Windows zu imitieren, also wir könnten führen Sie den gleichen JS-Code 
nicht haben, es für die Plattform neu zu schreiben und auch nutzen jede 
Parameterprüfung oder anderen gemeinsamen Code zur Verfügung gestellt von 
Entwicklern, die auf anderen Plattformen arbeiteten.
+
+## Cordova-Exec-proxy
+
+Unter Windows bietet Cordova einen Proxy, den Sie verwenden können, um ein 
Objekt zu registrieren, die alle cordova.exec Aufrufe an eine API behandelt 
wird.
+
+Zum Beispiel wenn Sie die Implementierung für die Beschleunigungsmesser-API 
bereitstellen wollte, würde Sie dies tun:
+
+cordova.commandProxy.add ("Accelerometer", {Start: function() {/ / Ihr code 
hier...} / /... und der Rest der API hier});
+
+Also in unserem Fall, wir annehmen, dass der Code in echoplugin.js ist 
cross-Plattform entsprechenden Umgang mit JavaScript, und wir kann einfach 
schreiben, ein Proxy für Windows
+
+// in file echopluginProxy.js
+

[39/51] [partial] docs commit: CB-10029: rename edge to dev. This closes #426.

2015-11-18 Thread dblotsky
http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/f061b980/www/docs/de/edge/config_ref/images.md
--
diff --git a/www/docs/de/edge/config_ref/images.md 
b/www/docs/de/edge/config_ref/images.md
deleted file mode 100644
index 97e9c03..000
--- a/www/docs/de/edge/config_ref/images.md
+++ /dev/null
@@ -1,213 +0,0 @@

-license: >
-Licensed to the Apache Software Foundation (ASF) under one
-or more contributor license agreements.  See the NOTICE file
-distributed with this work for additional information
-regarding copyright ownership.  The ASF licenses this file
-to you under the Apache License, Version 2.0 (the
-"License"); you may not use this file except in compliance
-with the License.  You may obtain a copy of the License at
-
-http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing,
-software distributed under the License is distributed on an
-"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-KIND, either express or implied.  See the License for the
-specific language governing permissions and limitations
-under the License.
-
-title: Symbole und Splash-Screens

-
-# Symbole und Splash-Screens
-
-In diesem Abschnitt veranschaulicht, wie einer app-Symbol und optionale 
Splash-Screen für verschiedene Plattformen, sowohl bei der Arbeit in Cordova 
CLI (beschrieben in The Command-Line Interface) konfigurieren oder mit 
plattformspezifischen SDK-Tools (ausführlich in den Plattform-Führern).
-
-## Symbole in der CLI konfigurieren
-
-Beim Arbeiten in der CLI Sie können definieren app obige über `` 
Element ( `config.xml` ). Wenn Sie kein Symbol angeben ist das 
Apache-Cordova-Logo verwendet.
-
-
-
-
-Src: (erforderlich) gibt den Speicherort der Bilddatei, im Verhältnis zu 
Ihrem Projektverzeichnis
-
-Plattform: (optional) Zielplattform
-
-Breite: (optional) Symbol Breite in Pixeln
-
-Höhe: (optional) Symbol Höhe in Pixel
-
-Dichte: (optional)-Android-spezifisch, gibt Symbol Dichte
-
-Die folgende Konfiguration kann verwendet werden, einzelne Standard-Icon zu 
definieren, die für alle Plattformen verwendet werden.
-
-
-
-
-Für jede Plattform können Sie auch eine pixelgenaue Icons set an 
unterschiedliche Bildschirmauflösungen angepasst definieren.
-
-Amazon Fire OS
-
- 
-  
-  
-  
-  
- 
-
-
-Android
-
- 
-  
-  
-  
-  
- 
-
-
-BlackBerry10
-
- 
-  
-  
- 
-
-
-Finden Sie BlackBerry Dokumentation gezielt mehrere Größen und 
Gebietsschemas. 
[http://developer.blackberry.com/html5/documentation/icon_element.html]
-
-Firefox OS
-
- 
-  
- 
-
-
-iOS
-
- 
-  
-  
-  
-  
-  
-  
-  
-  
-  
-  
-  
-  
-  
-  
-  
-  
-  
-  
-  
-  
-  
-  
-  
-  
-  
-  
- 
-
-
-Tizen
-
- 
-  
- 
-
-
-Windows Phone8
-
- 
-  
-  
-  
- 
-
-
-Windows8
-
- 
-  
-  
-  
- 
-
-
-## Splash-Screens in der CLI konfigurieren
-
-In der obersten Ebene `config.xml` Datei (nicht diejenige in `platforms` ), 
Konfigurations-Elemente wie die hier angegebenen hinzufügen.
-
-# Beispiel-Konfiguration
-
-Bitte beachten Sie, dass der Wert des Attributs "Src" relativ zum 
Projektverzeichnis und nicht in das Www-Verzeichnis. Sie können das Quellbild 
benennen, was Sie wollen. Der interne Name in der app hängen von Cordova.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-# Unterstützte Plattformen
-
-Ab sofort (Cordova 3.5.0 Juli 2014) die folgenden Plattformen unterstützen 
Splash-Screens.
-
-android
-ios
-wp8
-windows8
-blackberry10
-
-
-# SplashScreen-Plugin
-
-Apache Cordova bietet auch spezielle Splash-Bildschirm-Plugin, das verwendet 
werden könnte, um programmgesteuert anzeigen und Ausblenden eines 

[35/51] [partial] docs commit: CB-10029: rename edge to dev. This closes #426.

2015-11-18 Thread dblotsky
http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/f061b980/www/docs/de/edge/guide/platforms/blackberry/index.md
--
diff --git a/www/docs/de/edge/guide/platforms/blackberry/index.md 
b/www/docs/de/edge/guide/platforms/blackberry/index.md
deleted file mode 100644
index 420410f..000
--- a/www/docs/de/edge/guide/platforms/blackberry/index.md
+++ /dev/null
@@ -1,170 +0,0 @@

-license: >
-Licensed to the Apache Software Foundation (ASF) under one
-or more contributor license agreements.  See the NOTICE file
-distributed with this work for additional information
-regarding copyright ownership.  The ASF licenses this file
-to you under the Apache License, Version 2.0 (the
-"License"); you may not use this file except in compliance
-with the License.  You may obtain a copy of the License at
-
-http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing,
-software distributed under the License is distributed on an
-"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-KIND, either express or implied.  See the License for the
-specific language governing permissions and limitations
-under the License.
-
-title: Handbuch der BlackBerry-Plattform

-
-# Handbuch der BlackBerry-Plattform
-
-Diese Anleitung zeigt Ihnen wie ein SDK-Umfeld zu Zielanwendungen für die 
BlackBerry-Plattform vor Version 10 eingerichtet. Wenn Sie die aktuellste 
Version ansprechen möchten, finden Sie im BlackBerry-10-Plattform-Guide. 
Finden Sie im folgenden detaillierte Plattform-spezifischen Informationen:
-
-*   BlackBerry Configuration
-*   [Aktualisieren der BlackBerry](upgrading.html)
-*   [BlackBerry-Plugins](plugin.html)
-*   [BlackBerry-Befehlszeilentools](tools.html)
-
-Die Befehlszeilentools, die oben beziehen sich auf Versionen vor 3.0 Cordova. 
Informationen über die aktuelle Schnittstelle finden Sie unter The 
Command-Line Interface.
-
-## Anforderungen und Unterstützung
-
-Dieser BlackBerry-Version wird nicht unterstützt, durch die `cordova` in der 
Command-Line Interface, sondern durch einen separaten Satz von 
Befehlszeilentools beschriebenen Dienstprogramm. Laden Sie die 
Cordova-Verteilung von [cordova.apache.org][1].
-
- [1]: http://cordova.apache.org/#download
-
-Cordova für BlackBerry basiert auf dem [BlackBerry WebWorks-Rahmen][2], der 
für Windows XP (32-Bit) verfügbar ist, Windows 7 (32-Bit und 64-Bit) und Mac 
(OS X 10.6.4+). WebWorks Anwendungen können *nur* werden auf die folgenden 
BlackBerry Plattformen bereitgestellt:
-
- [2]: https://bdsc.webapps.blackberry.com/html5
-
-*   BlackBerry OS 5.0 und höher
-*   BlackBerry PlayBook
-*   BlackBerry 10 (QNX)
-
-WebWorks erfordert das Java Development Kit (JDK). Verwenden Sie für Windows 
32-Bit-Version von [Oracle JDK][3]. Java in installiert standardmäßig unter 
Mac OS X bis Version 10.7, die [eine separate Installation][4]erfordert. Es 
erfordert auch Apache Ant, die auf dem Mac ist Bestandteil der 
Java-Installation. Die Windows-Version ist verfügbar von [ant.apache.org][5].
-
- [3]: http://www.oracle.com/technetwork/java/javase/downloads/index.html#jdk
- [4]: http://support.apple.com/kb/DL1421
- [5]: http://ant.apache.org/bindownload.cgi
-
-## Das SDK installieren
-
-Downloaden Sie und installieren Sie das entsprechende WebWorks-SDK für Ihre 
Entwicklung. BlackBerry PlayBook und BlackBerry Smartphone WebWorks SDKs 
können unter den folgenden Adressen heruntergeladen werden.
-
-*   \[BlackBerry PlayBook SDK\] 
(https://developer.blackberry.com/html5/download/#playbook) und [Adobe 
Air-SDK][6]
-
-*   \[BlackBerry Smartphones SDK\] 
(https://developer.blackberry.com/html5/download/#smartphones)
-
- [6]: http://www.adobe.com/devnet/air/air-sdk-download.html
-
-## Registrieren Sie sich für Signaturschlüssel
-
-Wenn Sie Ihre Anwendung auf BlackBerry App World oder auf einem tatsächlichen 
Gerät veröffentlichen möchten, müssen Sie für eine Reihe von kostenlosen 
Code Signing Keys registrieren. Hierzu füllen Sie das [Bestellformular für 
BlackBerry-Schlüssel][7]. Sobald Sie Ihre Signatur-Schlüssel erhalten haben, 
müssen sie Setup. Siehe die [BlackBerry HTML5/WebWorks-Website][8] 
Informationen.
-
- [7]: https://www.blackberry.com/SignedKeys
- [8]: 
https://developer.blackberry.com/html5/documentation/signing_setup_bb10_apps_2008396_11.html
-
-## Installieren von Cordova
-
-Herunterladen Sie und extrahieren Sie die neueste Kopie von [Cordova][1].
-
-## Einrichten eines neuen Projekts
-
-*   Öffnen Sie eine Command-Line Terminal und navigieren Sie zum entpackten 
Cordova.
-
-*   Es ist ein Verzeichnis für jede Plattform, Cordova unterstützt. 
Navigieren Sie zu dem `blackberry` Verzeichnis.
-
-*   Das `blackberry` Verzeichnis enthält mehrere Unterverzeichnisse. Das 
`example` -Verzeichnis enthält ein komplettes Cordova-Projekt. Kopie der 
`example` 

[08/51] [partial] docs commit: CB-10029: rename edge to dev. This closes #426.

2015-11-18 Thread dblotsky
http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/f061b980/www/docs/es/dev/guide/platforms/ios/upgrading.md
--
diff --git a/www/docs/es/dev/guide/platforms/ios/upgrading.md 
b/www/docs/es/dev/guide/platforms/ios/upgrading.md
new file mode 100644
index 000..ec734d7
--- /dev/null
+++ b/www/docs/es/dev/guide/platforms/ios/upgrading.md
@@ -0,0 +1,796 @@
+---
+license: >
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+
+title: Actualizar iOS
+---
+
+# Actualizar iOS
+
+Esta guía le muestra cómo modificar los proyectos iOS para actualizar desde 
versiones anteriores de Córdoba. La mayoría de estas instrucciones se aplica 
a proyectos creados con un mayor conjunto de herramientas de línea de comandos 
que preceden a la `cordova` utilidad de CLI. Vea la interfaz de línea de 
comandos para información de cómo actualizar la versión de la CLI.
+
+**Nota**: se requiere Xcode 5. En la actualidad, para presentar a la App Store 
de Apple, utilice la última versión de iOS SDK, el cual es iOS 7 enviada y 
esto se incluye sólo con Xcode 5.
+
+## Proyectos de modernización 3.3.0 a 3.4.0
+
+Para proyectos no-CLI, ejecute:
+
+bin/update path/to/project
+
+
+Para los proyectos de CLI:
+
+1.  Actualización de la `cordova` versión CLI. Vea la interfaz de línea de 
comandos.
+
+2.  Ejecutar`cordova platform update ios`
+
+## Proyectos de actualización 3.2.0 a 3.3.0
+
+Para proyectos no-CLI, ejecute:
+
+bin/update path/to/project
+
+
+Para los proyectos de CLI:
+
+1.  Actualización de la `cordova` versión CLI. Vea la interfaz de línea de 
comandos.
+
+2.  Ejecutar`cordova platform update ios`
+
+## Proyectos de modernización 3.1.0 a 3.2.0
+
+Para proyectos no-CLI, ejecute:
+
+bin/update path/to/project
+
+
+Para los proyectos de CLI:
+
+1.  Actualización de la `cordova` versión CLI. Vea la interfaz de línea de 
comandos.
+
+2.  Ejecutar`cordova platform update ios`
+
+## Proyectos de modernización 3.0.0 a 3.1.0
+
+Para proyectos no-CLI, ejecute:
+
+bin/update path/to/project
+
+
+Para los proyectos de CLI:
+
+1.  Actualización de la `cordova` versión CLI. Vea la interfaz de línea de 
comandos.
+
+2.  Ejecutar`cordova platform update ios`
+
+iOS 7 temas:
+
+1.  Eliminar `width=device-width, height=device-height` de la `index.html` del 
archivo `viewport` `meta` etiqueta. (Véase [el fallo correspondiente][1].)
+
+2.  Actualiza tus plugins de núcleo los medios de comunicación, medios de 
comunicación-captura y splashscreen por iOS 7 apoyo.
+
+ [1]: https://issues.apache.org/jira/browse/CB-4323
+
+Xcode 5 temas:
+
+1.  Actualiza la configuración de proyecto si Xcode 5 incita a hacerlo (en el 
navegador de temas).
+
+2.  Actualizar su **compilador para C / C + + / Objective-C** establecer, bajo 
la ficha **Configuración de construir** , sección **Construir opciones** . 
Elige **por defecto del compilador (Apple LLVM 5.0)**.
+
+## Actualícese a la CLI (3.0.0) de 2.9.0 magnetohidrodinámica
+
+1.  Crear un nuevo proyecto de Apache Cordova 3.0.0 usando el cordova CLI, tal 
como se describe en la interfaz de línea de comandos.
+
+2.  Agregue sus plataformas al proyecto cordova, por ejemplo:`cordova
+platform add ios`.
+
+3.  Copiar el contenido del proyecto `www` Directorio del `www` Directorio en 
la raíz del proyecto cordova que acaba de crear.
+
+4.  Copiar o sobrescribir ningún activo nativo de su proyecto original ( 
`Resources` , etc.), lo que seguro para agregar los archivos nuevos a la 
`.xcodeproj` proyecto. El proyecto de iOS se construye dentro de la 
`platforms\ios` Directorio.
+
+5.  Copia tus `config.xml` en el `www` Directorio y eliminar cualquier plugin 
definiciones. Modificar la configuración aquí en lugar del directorio de la 
plataforma.
+
+6.  Utilice la herramienta CLI cordova instalar algún plugin que necesita. 
Tenga en cuenta que la CLI maneja todo núcleo APIs como plugins, así pueden 
necesitar ser agregado. Sólo 3.0.0 plugins son compatibles con la CLI.
+
+7.  Construir y probar.
+
+## Proyectos de modernización 2.9.0 magnetohidrodinámica a 3.0.0
+
+1.  Descargue y extraiga 

<    1   2   3   4   5   6   7   8   9   10   >