docs commit: Improving inline quotes styling. This closes #568

2016-03-25 Thread rakatyal
Repository: cordova-docs
Updated Branches:
  refs/heads/master 3048757cc -> 1f35df99b


Improving inline quotes styling. This closes #568


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

Branch: refs/heads/master
Commit: 1f35df99b7cf77aa5889c2ecb9a3c3ab71542ee6
Parents: 3048757
Author: Raghav Katyal 
Authored: Fri Mar 25 15:10:48 2016 -0700
Committer: Raghav Katyal 
Committed: Fri Mar 25 16:42:40 2016 -0700

--
 www/static/css-src/main.scss | 6 ++
 1 file changed, 6 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/1f35df99/www/static/css-src/main.scss
--
diff --git a/www/static/css-src/main.scss b/www/static/css-src/main.scss
index 01c5835..94f502e 100644
--- a/www/static/css-src/main.scss
+++ b/www/static/css-src/main.scss
@@ -184,6 +184,12 @@ code.prettyprint {
 border: none !important;
 }
 
+/* improving inline quotes styling */
+code {
+background-color: #c9dddf;
+color: #00;
+}
+
 @import 'home';
 @import 'blog';
 @import 'plugins';


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



cordova-plugin-media git commit: iOS audio should handle naked local file sources

2016-03-25 Thread omefire
Repository: cordova-plugin-media
Updated Branches:
  refs/heads/master 46c9542de -> e5b663ac9


iOS audio should handle naked local file sources

A local file lacking the file:// or cdvfile:// prefix is not
played because resourceURL isn't validated to later on in the
play chain. avPlayer is initialized during create(), but won't
initialize without the validated resourceURL.. This closes #85


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

Branch: refs/heads/master
Commit: e5b663ac951b2d8cb2e5e470d2c7072aa56cf779
Parents: 46c9542
Author: Gaelen Hadlett 
Authored: Wed Mar 2 20:26:32 2016 -0500
Committer: Omar Mefire 
Committed: Fri Mar 25 09:11:59 2016 -0700

--
 src/ios/CDVSound.m | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/cordova-plugin-media/blob/e5b663ac/src/ios/CDVSound.m
--
diff --git a/src/ios/CDVSound.m b/src/ios/CDVSound.m
index b12c0fb..640ebcd 100644
--- a/src/ios/CDVSound.m
+++ b/src/ios/CDVSound.m
@@ -216,14 +216,14 @@
 NSString* mediaId = [command argumentAtIndex:0];
 NSString* resourcePath = [command argumentAtIndex:1];
 
-CDVAudioFile* audioFile = [self audioFileForResource:resourcePath 
withId:mediaId doValidation:NO forRecording:NO];
+CDVAudioFile* audioFile = [self audioFileForResource:resourcePath 
withId:mediaId doValidation:YES forRecording:NO];
 
 if (audioFile == nil) {
 NSString* errorMessage = [NSString stringWithFormat:@"Failed to 
initialize Media file with path %@", resourcePath];
 NSString* jsString = [NSString stringWithFormat:@"%@(\"%@\",%d,%@);", 
@"cordova.require('cordova-plugin-media.Media').onStatus", mediaId, 
MEDIA_ERROR, [self createMediaErrorWithCode:MEDIA_ERR_ABORTED 
message:errorMessage]];
 [self.commandDelegate evalJs:jsString];
 } else {
-NSURL* resourceUrl = [[NSURL alloc] initWithString:resourcePath];
+NSURL* resourceUrl = audioFile.resourceURL;
 
 if (![resourceUrl isFileURL] && ![resourcePath 
hasPrefix:CDVFILE_PREFIX]) {
 // First create an AVPlayerItem
@@ -849,4 +849,4 @@
 @implementation CDVAudioRecorder
 @synthesize mediaId;
 
-@end
\ No newline at end of file
+@end


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



android commit: CB-10881: Logging to further investigations

2016-03-25 Thread omefire
Repository: cordova-android
Updated Branches:
  refs/heads/master eccde6c0c -> 1b43bc99a


CB-10881: Logging to further investigations


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

Branch: refs/heads/master
Commit: 1b43bc99a1c50e5ab30347ec9ca5af8cf22d3e85
Parents: eccde6c
Author: Omar Mefire 
Authored: Fri Mar 25 08:57:09 2016 -0700
Committer: Omar Mefire 
Committed: Fri Mar 25 08:57:09 2016 -0700

--
 framework/src/org/apache/cordova/CallbackContext.java | 4 
 1 file changed, 4 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/cordova-android/blob/1b43bc99/framework/src/org/apache/cordova/CallbackContext.java
--
diff --git a/framework/src/org/apache/cordova/CallbackContext.java 
b/framework/src/org/apache/cordova/CallbackContext.java
index 4c0d7b9..05dc7bf 100644
--- a/framework/src/org/apache/cordova/CallbackContext.java
+++ b/framework/src/org/apache/cordova/CallbackContext.java
@@ -60,6 +60,10 @@ public class CallbackContext {
 finished = !pluginResult.getKeepCallback();
 }
 }
+
+// CB-10881: Investigating
+Log.v(LOG_TAG, "Successfully sent a callback for ID: " + callbackId + 
"\nResult was: " + pluginResult.getMessage());
+
 webView.sendPluginResult(pluginResult, callbackId);
 }
 


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



[3/3] cordova-paramedic git commit: Adding real time logging and other improvements

2016-03-25 Thread sgrebnov
Adding real time logging and other improvements

This closes #1


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

Branch: refs/heads/master
Commit: b1aa699dfa56d442e75294448e3253ac6c7f0995
Parents: 8615f31
Author: Vladimir Kotikov 
Authored: Fri Mar 25 13:54:21 2016 +0300
Committer: sgrebnov 
Committed: Fri Mar 25 17:04:26 2016 +0300

--
 .jshintrc   |  14 +
 .travis.yml |   1 +
 README.md   | 164 +-
 lib/LocalServer.js  |  99 ++
 lib/ParamedicConfig.js  |  83 +
 lib/PluginsManager.js   |  51 
 lib/Target.js   |   9 +
 lib/TestsRunner.js  | 121 
 lib/Tunnel.js   |  19 ++
 lib/logger.js   | 150 +
 lib/paramedic.js| 156 ++
 lib/portScanner.js  |  54 
 lib/reporters/ConsoleReporter.js| 153 ++
 lib/reporters/ParamedicReporter.js  |  43 +++
 lib/specReporters.js|  68 +
 lib/utils.js|  22 ++
 main.js |  69 +++--
 package.json|  24 +-
 paramedic-plugin/JasmineParamedicProxy.js   |  56 
 paramedic-plugin/paramedic.js   |  74 +
 paramedic-plugin/plugin.xml |  37 +++
 paramedic-plugin/socket.io.js   |   4 +
 paramedic.js| 305 ---
 sample-config/.paramedic-core-plugins.config.js |  51 
 sample-config/.paramedic.config.js  |  33 ++
 25 files changed, 1502 insertions(+), 358 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/cordova-paramedic/blob/b1aa699d/.jshintrc
--
diff --git a/.jshintrc b/.jshintrc
new file mode 100644
index 000..e11705f
--- /dev/null
+++ b/.jshintrc
@@ -0,0 +1,14 @@
+{
+"node" : true
+  , "devel": true
+  , "bitwise": true
+  , "undef": true
+  , "trailing": true
+  , "quotmark": false
+  , "indent": 4
+  , "unused": "vars"
+  , "expr": true
+  , "latedef": "nofunc"
+  , "globals": {
+}
+}

http://git-wip-us.apache.org/repos/asf/cordova-paramedic/blob/b1aa699d/.travis.yml
--
diff --git a/.travis.yml b/.travis.yml
index 3c02467..aa2e054 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -5,6 +5,7 @@ install:
   - echo -e "Host github.com\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config 
   - npm install cordova
   - npm install ios-sim
+  - npm install ios-deploy
   - npm install
   - npm link
 script:

http://git-wip-us.apache.org/repos/asf/cordova-paramedic/blob/b1aa699d/README.md
--
diff --git a/README.md b/README.md
index 305feeb..4dcc055 100644
--- a/README.md
+++ b/README.md
@@ -7,31 +7,167 @@ Runs cordova medic/buildbot tests locally.
 
 ... provides advanced levels of care at the point of illness or injury, 
including out of hospital treatment, and diagnostic services
 
-To install :
+# To install :
 ``` $npm install cordova-paramedic ```
 
-Usage :
+## Supported Cordova Platforms
+
+- Android
+- iOS
+- Windows Phone 8
+- Windows (Windows 8.1, Windows Phone 8.1, Windows 10 Tablet/PC)
+- Browser
+
+# Usage
+
+Paramedic parameters could be passed via command line arguments or via 
separate configuration file:
+
+```
+cordova-paramedic --platform PLATFORM --plugin PATH 
+cordova-paramedic --config ./sample-config/.paramedic.config.js
+```
+
+## Command Line Interface
+
+`--platform` (required)
+
+Specifies target cordova platform (could refer to local directory, npm or git)
+
+```
+cordova-paramedic --platform ios --plugin cordova-plugin-inappbrowser
+cordova-paramedic --platform ios@4.0 --plugin cordova-plugin-inappbrowser
+cordova-paramedic --platform ios@../cordova-ios --plugin 
cordova-plugin-inappbrowser
+cordova-paramedic --platform 
ios@https://github.com/apache/cordova-ios.git#4.1.0 --plugin 
cordova-plugin-inappbrowser
+```
+
+`--plugin` (required)
+
+Specifies test plugin, you may specify multiple --plugin flags and they will 
all be installed and tested together. Similat to `platform` parameter you can 

[2/3] cordova-paramedic git commit: Adding real time logging and other improvements

2016-03-25 Thread sgrebnov
http://git-wip-us.apache.org/repos/asf/cordova-paramedic/blob/b1aa699d/paramedic-plugin/socket.io.js
--
diff --git a/paramedic-plugin/socket.io.js b/paramedic-plugin/socket.io.js
new file mode 100644
index 000..6f478d8
--- /dev/null
+++ b/paramedic-plugin/socket.io.js
@@ -0,0 +1,4 @@
+(function(f){if(typeof exports==="object"& 
module!=="undefined"){module.exports=f()}else if(typeof 
define==="function"&){define([],f)}else{var g;if(typeof 
window!=="undefined"){g=window}else if(typeof 
global!=="undefined"){g=global}else if(typeof 
self!=="undefined"){g=self}else{g=this}g.io=f()}})(function(){var 
define,module,exports;return function e(t,n,r){function 
s(o,u){if(!n[o]){if(!t[o]){var a=typeof 
require=="function"&if(!u&)return a(o,!0);if(i)return i(o,!0);var 
f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var 
l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return 
s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof 
require=="function"&for(var o=0;o0){this.extraHeaders=opts.extraHeaders}}this.open()}Socket.priorWebsocketSuccess=false;Emitter(Socket.prototype);Socket.protocol=parser.protocol;Socket.Socket=Socket;Socket.Transport=_dereq_("./transport");Socket.transports=_dereq_("./transports");Socket.parser=_dereq_("engine.io-parser");Socket.prototype.createTransport=function(name){debug('creating
 transport "%s"',name);var 
query=clone(this.query);query.EIO=parser.protocol;query.transport=name;if(this.id)query.sid=this.id;var
 transport=new transports[name]({agent:this.agent,h
 
ostname:this.hostname,port:this.port,secure:this.secure,path:this.path,query:query,forceJSONP:this.forceJSONP,jsonp:this.jsonp,forceBase64:this.forceBase64,enablesXDR:this.enablesXDR,timestampRequests:this.timestampRequests,timestampParam:this.timestampParam,policyPort:this.policyPort,socket:this,pfx:this.pfx,key:this.key,passphrase:this.passphrase,cert:this.cert,ca:this.ca,ciphers:this.ciphers,rejectUnauthorized:this.rejectUnauthorized,perMessageDeflate:this.perMessageDeflate,extraHeaders:this.extraHeaders});return
 transport};function clone(obj){var o={};for(var i in 
obj){if(obj.hasOwnProperty(i)){o[i]=obj[i]}}return 
o}Socket.prototype.open=function(){var 

[1/3] cordova-paramedic git commit: Adding real time logging and other improvements

2016-03-25 Thread sgrebnov
Repository: cordova-paramedic
Updated Branches:
  refs/heads/master 8615f31c9 -> b1aa699df


http://git-wip-us.apache.org/repos/asf/cordova-paramedic/blob/b1aa699d/paramedic.js
--
diff --git a/paramedic.js b/paramedic.js
deleted file mode 100644
index f811984..000
--- a/paramedic.js
+++ /dev/null
@@ -1,305 +0,0 @@
-#!/usr/bin/env node
-
-var http = require('http'),
-localtunnel = require('localtunnel'),
-parseArgs = require('minimist'),
-shell = require('shelljs'),
-fs = require('fs'),
-request = require('request'),
-tmp = require('tmp'),
-path = require('path');
-
-var PORT = 8008;
-var TIMEOUT = 10 * 60 * 1000; // 10 minutes in msec - this will become a param
-
-
-
-function 
ParamedicRunner(_platformId,_plugins,_callback,bJustBuild,nPort,msTimeout,browserify,bSilent,bVerbose,platformPath)
 {
-this.tunneledUrl = "";
-this.port = nPort;
-this.justBuild = bJustBuild;
-this.plugins = _plugins;
-this.platformId = _platformId;
-this.callback = _callback;
-this.tempFolder = null;
-this.timeout = msTimeout;
-this.verbose = bVerbose;
-this.platformPath = platformPath;
-
-if(browserify) {
-this.browserify = "--browserify";
-} else {
-this.browserify = '';
-}
-
-if(bSilent) {
-var logOutput = this.logOutput = [];
-this.logMessage = function(msg) {
-logOutput.push(msg);
-};
-}
-else {
-this.logMessage = function(msg) {
-console.log(msg);
-};
-}
-}
-
-ParamedicRunner.prototype = {
-run: function() {
-var cordovaResult = shell.exec('cordova --version', 
{silent:!this.verbose});
-if(cordovaResult.code) {
-this.logMessage(cordovaResult.output);
-// this would be fatal
-process.exit(cordovaResult.code);
-}
-
-// limit runtime to TIMEOUT msecs
-var self = this;
-setTimeout(function(){
-self.logMessage("This test seems to be blocked :: timeout 
exceeded. Exiting ...");
-self.cleanUpAndExitWithCode(1);
-},self.timeout);
-
-this.createTempProject();
-this.installPlugins();
-this.startServer();
-},
-createTempProject: function() {
-this.tempFolder = tmp.dirSync();
-tmp.setGracefulCleanup();
-this.logMessage("cordova-paramedic: creating temp project at " + 
this.tempFolder.name);
-shell.exec('cordova create ' + 
this.tempFolder.name,{silent:!this.verbose});
-shell.cd(this.tempFolder.name);
-},
-installSinglePlugin: function(plugin) {
-this.logMessage("cordova-paramedic: installing " + plugin);
-var pluginPath = path.resolve(this.storedCWD, plugin);
-var plugAddCmd = shell.exec('cordova plugin add ' + pluginPath, 
{silent:!this.verbose});
-if(plugAddCmd.code !== 0) {
-this.logMessage('Failed to install plugin : ' + plugin);
-this.cleanUpAndExitWithCode(1);
-}
-},
-installPlugins: function() {
-for(var n = 0; n < this.plugins.length; n++) {
-var plugin = this.plugins[n];
-this.installSinglePlugin(plugin);
-if(!this.justBuild) {
-this.installSinglePlugin(path.join(plugin,"tests"));
-}
-}
-
-if(!this.justBuild) {
-this.logMessage("cordova-paramedic: installing 
plugin-test-framework");
-var plugAddCmd = shell.exec('cordova plugin add 
https://github.com/apache/cordova-plugin-test-framework',
- {silent:!this.verbose});
-if(plugAddCmd.code !== 0) {
-this.logMessage('cordova-plugin-test-framework');
-this.cleanUpAndExitWithCode(1);
-}
-}
-},
-cleanUpAndExitWithCode: function(exitCode,resultsObj) {
-shell.cd(this.storedCWD);
-// the TMP_FOLDER.removeCallback() call is throwing an exception, so 
we explicitly delete it here
-shell.exec('rm -rf ' + this.tempFolder.name);
-var logStr = this.logOutput ? this.logOutput.join("\n") : null;
-this.callback(exitCode,resultsObj,logStr);
-},
-writeMedicLogUrl: function(url) {
-this.logMessage("cordova-paramedic: writing medic log url to project");
-var obj = {logurl:url};
-fs.writeFileSync(path.join("www","medic.json"),JSON.stringify(obj));
-},
-setConfigStartPage: function() {
-this.logMessage("cordova-paramedic: setting app start page to test 
page");
-var fileName = 'config.xml';
-var configStr = fs.readFileSync(fileName).toString();
-if(configStr) {
-configStr = 
configStr.replace("src=\"index.html\"","src=\"cdvtests/index.html\"");
-fs.writeFileSync(fileName, configStr);
-}
-else {
-

cordova-plugin-inappbrowser git commit: CB-7679 add fix for iOS upload. This closes #139

2016-03-25 Thread jcesarmobile
Repository: cordova-plugin-inappbrowser
Updated Branches:
  refs/heads/master 21f4de0e2 -> c6ff80311


CB-7679 add fix for iOS upload. This closes #139


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

Branch: refs/heads/master
Commit: c6ff803113eb71c39bf41a774204efdebcce0377
Parents: 21f4de0
Author: Birge Clark 
Authored: Tue Jan 19 10:31:28 2016 -0800
Committer: Julio César 
Committed: Fri Mar 25 15:44:25 2016 +0100

--
 src/ios/CDVInAppBrowser.m | 6 ++
 1 file changed, 6 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/cordova-plugin-inappbrowser/blob/c6ff8031/src/ios/CDVInAppBrowser.m
--
diff --git a/src/ios/CDVInAppBrowser.m b/src/ios/CDVInAppBrowser.m
index 8e5a75e..7cffac3 100644
--- a/src/ios/CDVInAppBrowser.m
+++ b/src/ios/CDVInAppBrowser.m
@@ -998,6 +998,12 @@
 
 @implementation CDVInAppBrowserNavigationController : UINavigationController
 
+- (void) dismissViewControllerAnimated:(BOOL)flag completion:(void 
(^)(void))completion {
+if ( self.presentedViewController) {
+[super dismissViewControllerAnimated:flag completion:completion];
+}
+}
+
 - (void) viewDidLoad {
 
 CGRect frame = [UIApplication sharedApplication].statusBarFrame;


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



svn commit: r12858 - /dev/cordova/CB-10902/

2016-03-25 Thread an-selm
Author: an-selm
Date: Fri Mar 25 07:41:42 2016
New Revision: 12858

Log:
CB-10902 Upload release candidated for 6.1.1 re-release

Added:
dev/cordova/CB-10902/
dev/cordova/CB-10902/cordova-6.1.1.tgz   (with props)
dev/cordova/CB-10902/cordova-6.1.1.tgz.asc
dev/cordova/CB-10902/cordova-6.1.1.tgz.md5
dev/cordova/CB-10902/cordova-6.1.1.tgz.sha
dev/cordova/CB-10902/cordova-lib-6.1.1.tgz   (with props)
dev/cordova/CB-10902/cordova-lib-6.1.1.tgz.asc
dev/cordova/CB-10902/cordova-lib-6.1.1.tgz.md5
dev/cordova/CB-10902/cordova-lib-6.1.1.tgz.sha
dev/cordova/CB-10902/plugman-1.2.1.tgz   (with props)
dev/cordova/CB-10902/plugman-1.2.1.tgz.asc
dev/cordova/CB-10902/plugman-1.2.1.tgz.md5
dev/cordova/CB-10902/plugman-1.2.1.tgz.sha

Added: dev/cordova/CB-10902/cordova-6.1.1.tgz
==
Binary file - no diff available.

Propchange: dev/cordova/CB-10902/cordova-6.1.1.tgz
--
svn:mime-type = application/octet-stream

Added: dev/cordova/CB-10902/cordova-6.1.1.tgz.asc
==
--- dev/cordova/CB-10902/cordova-6.1.1.tgz.asc (added)
+++ dev/cordova/CB-10902/cordova-6.1.1.tgz.asc Fri Mar 25 07:41:42 2016
@@ -0,0 +1,11 @@
+-BEGIN PGP SIGNATURE-
+Version: GnuPG v1
+
+iQEcBAABAgAGBQJW9OqAAAoJEACV+K/YTjkMzCwIAJTQ7e20irHO1ABeSe/Bdsyd
+sFzwMEvf2tbfHsazFnmo8+JC9u2rPS3JFTEOSkQ+hnutktSoat2RVlj93B6U95bo
+1U0nzk01vpTSWQKVO+S+n0Qq2fqXDG6gJ7HBQnz2CdLLkP0YWyUUNNeNE5pocaQz
+UnqMNVhc5zaKZASXfH2Q7KpvjU3+jtftnAFuOJOXwxOFys6YKtvsLHeapqwuBbn7
+OeWIGj9frJZBJtfVEuyoa1fNOP+ruLkHVEMtE4srnwdSWvgdy51GhkT1NGZ0R9hU
+aVbf9sWuasyPplNuCyTjlLWSOURg9Amf7KEpi7Y+5p76JtGJx0nBfjyjLO8K8jo=
+=9Q0J
+-END PGP SIGNATURE-

Added: dev/cordova/CB-10902/cordova-6.1.1.tgz.md5
==
--- dev/cordova/CB-10902/cordova-6.1.1.tgz.md5 (added)
+++ dev/cordova/CB-10902/cordova-6.1.1.tgz.md5 Fri Mar 25 07:41:42 2016
@@ -0,0 +1 @@
+4a26203b7297dee524e277fd654d4c49

Added: dev/cordova/CB-10902/cordova-6.1.1.tgz.sha
==
--- dev/cordova/CB-10902/cordova-6.1.1.tgz.sha (added)
+++ dev/cordova/CB-10902/cordova-6.1.1.tgz.sha Fri Mar 25 07:41:42 2016
@@ -0,0 +1 @@
+7e6c0eaf6b55ea7248a75822b5e3a7630d7ffe44edffdf132e5e646712ab4f1856f12da7d699648dcca751641727a4d9780305813db60490548c4ec07acc6cf5

Added: dev/cordova/CB-10902/cordova-lib-6.1.1.tgz
==
Binary file - no diff available.

Propchange: dev/cordova/CB-10902/cordova-lib-6.1.1.tgz
--
svn:mime-type = application/octet-stream

Added: dev/cordova/CB-10902/cordova-lib-6.1.1.tgz.asc
==
--- dev/cordova/CB-10902/cordova-lib-6.1.1.tgz.asc (added)
+++ dev/cordova/CB-10902/cordova-lib-6.1.1.tgz.asc Fri Mar 25 07:41:42 2016
@@ -0,0 +1,11 @@
+-BEGIN PGP SIGNATURE-
+Version: GnuPG v1
+
+iQEcBAABAgAGBQJW9OpaAAoJEACV+K/YTjkMkzIH/0kQDAK0LdU8DWoTlFhVoliN
+ABz3ag+J0PH4xb6Du7DU2LvW4ZxZBs5+RuKYr9OoP4z/oacy9R/g/Le56oyBN644
+m4N17Us+m9siqVjKgrBP22hL8oMNKCJHVtZZHg2g4XLUZinIianB3AiOaYw9lQje
+kgEctHvpRhPai6U5Aens4HNC/mvenmSrUs8y86aOW5wJSnq1krsqIJN+jfkguI5m
+Hq9Cax24BykKh9NXbOeDY8WPJzeHR05EfUDzAvc8VkdvGOMB9lY3xiH4NlkbU5Wq
+WzPkfSVWSEJyPLnNwgjP40/DmnxU2575Wr+a3fPiAevX2HyPfCXkbjPlOoLkCOM=
+=rGLn
+-END PGP SIGNATURE-

Added: dev/cordova/CB-10902/cordova-lib-6.1.1.tgz.md5
==
--- dev/cordova/CB-10902/cordova-lib-6.1.1.tgz.md5 (added)
+++ dev/cordova/CB-10902/cordova-lib-6.1.1.tgz.md5 Fri Mar 25 07:41:42 2016
@@ -0,0 +1 @@
+ab13d5d01db249e0202b5e6a079419b7

Added: dev/cordova/CB-10902/cordova-lib-6.1.1.tgz.sha
==
--- dev/cordova/CB-10902/cordova-lib-6.1.1.tgz.sha (added)
+++ dev/cordova/CB-10902/cordova-lib-6.1.1.tgz.sha Fri Mar 25 07:41:42 2016
@@ -0,0 +1 @@
+e2d6899ddcb51f90c670f08644e4de227684cafe9cc5f14a343814d275fdce3926c01978cea262266121d8d9fce923ab6d6b8f0ed70c37b4d01509cf286e0f06

Added: dev/cordova/CB-10902/plugman-1.2.1.tgz
==
Binary file - no diff available.

Propchange: dev/cordova/CB-10902/plugman-1.2.1.tgz
--
svn:mime-type = application/octet-stream

Added: dev/cordova/CB-10902/plugman-1.2.1.tgz.asc
==
--- dev/cordova/CB-10902/plugman-1.2.1.tgz.asc (added)
+++ dev/cordova/CB-10902/plugman-1.2.1.tgz.asc Fri Mar 25 

[cordova-plugman] Git Push Summary

2016-03-25 Thread an-selm
Repository: cordova-plugman
Updated Tags:  refs/tags/0.22.13 [created] 1d06e98f3
  refs/tags/0.22.14 [created] cdb84dda5
  refs/tags/0.22.4 [created] 13e0e8d72
  refs/tags/0.23.2 [created] d02fcbc8d
  refs/tags/1.2.1 [created] 482b67051

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



[cordova-cli] Git Push Summary

2016-03-25 Thread an-selm
Repository: cordova-cli
Updated Tags:  refs/tags/6.1.1 [created] ed5c36613

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



cordova-cli git commit: CB-10902 bump self version and cordova-lib dep to republish

2016-03-25 Thread an-selm
Repository: cordova-cli
Updated Branches:
  refs/heads/6.1.x 7b52ffccf -> ed5c36613


CB-10902 bump self version and cordova-lib dep to republish


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

Branch: refs/heads/6.1.x
Commit: ed5c366130f19ab15c3c4eced8d2a5401e09baf0
Parents: 7b52ffc
Author: Vladimir Kotikov 
Authored: Fri Mar 25 10:25:53 2016 +0300
Committer: Vladimir Kotikov 
Committed: Fri Mar 25 10:26:46 2016 +0300

--
 package.json | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/ed5c3661/package.json
--
diff --git a/package.json b/package.json
index 62b57d0..83f791d 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "cordova",
-  "version": "6.1.0",
+  "version": "6.1.1",
   "preferGlobal": "true",
   "description": "Cordova command line interface tool",
   "main": "cordova",
@@ -30,7 +30,7 @@
   ],
   "dependencies": {
 "ansi": "^0.3.0",
-"cordova-lib": "6.1.0",
+"cordova-lib": "6.1.1",
 "cordova-common": "^1.1.0",
 "q": "1.0.1",
 "nopt": "3.0.1",
@@ -138,8 +138,8 @@
   "email": "stevengil...@gmail.com"
 },
 {
-  "name":"Jesse",
-  "email":"purplecabb...@gmail.com"
+  "name": "Jesse",
+  "email": "purplecabb...@gmail.com"
 }
   ],
   "license": "Apache-2.0"


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



cordova-lib git commit: CB-10902 Update package version to republish

2016-03-25 Thread an-selm
Repository: cordova-lib
Updated Branches:
  refs/heads/6.1.x 31b58d0c3 -> 96f89aa21


CB-10902 Update package version to republish


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

Branch: refs/heads/6.1.x
Commit: 96f89aa2162e5933ce0e732e38ac456223c5d826
Parents: 31b58d0
Author: Vladimir Kotikov 
Authored: Fri Mar 25 10:16:25 2016 +0300
Committer: Vladimir Kotikov 
Committed: Fri Mar 25 10:16:25 2016 +0300

--
 cordova-lib/RELEASENOTES.md | 16 
 cordova-lib/package.json|  2 +-
 2 files changed, 9 insertions(+), 9 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/cordova-lib/blob/96f89aa2/cordova-lib/RELEASENOTES.md
--
diff --git a/cordova-lib/RELEASENOTES.md b/cordova-lib/RELEASENOTES.md
index a08eadb..c6019db 100644
--- a/cordova-lib/RELEASENOTES.md
+++ b/cordova-lib/RELEASENOTES.md
@@ -20,13 +20,13 @@
 -->
 # Cordova-lib Release Notes
 
-### 6.1.0 (Mar 17, 2016)
+### 6.1.1 (Mar 17, 2016)
 * CB-10902 updated pinned platforms
 * CB-10808 revert npm install for templates
 * CB-10808 CLI Support templates with subdirectory
 * CB-10880 Removed plugin pinning
 * CB-10679 Improving version choosing logic test coverage
-* CB-10673 add plugin `--force` option. 
+* CB-10673 add plugin `--force` option.
 * CB-10679 New version choosing logic for plugin add
 * CB-10328 set top-level property when adding new platforms
 * CB-10314 avoid fetching plugins when oldId is already fetched
@@ -80,7 +80,7 @@
 * CB-10048 clobbering of `` tags to `ATS` directives
 
 ### 5.4.1 (Nov 19, 2015)
-* CB-9976 Reinstall plugins for platform if they were installed with 
`cordova@<5.4.0`. 
+* CB-9976 Reinstall plugins for platform if they were installed with 
`cordova@<5.4.0`.
 * CB-9981 `path.parse` only available on `node 0.12+`.
 * CB-9987 Adds compatibility layer for `cordova.raw.*` methods
 * CB-9975 Fix issue with using `all" as orientation for **iOS**
@@ -96,7 +96,7 @@
 * CB-9675 OSX App Icons are not properly copied.
 * CB-9758 Mobilespec crashes adding plugins on OS X
 * CB-9782 Update create/update signatures for PlatformApi polyfill
-* CB-9815 Engine name="cordova" should check tools version, not platforms. 
+* CB-9815 Engine name="cordova" should check tools version, not platforms.
 * CB-9824 removed plugin download counter code from lib
 * CB-9821 Fix EventEmitter incorrect trace level usages
 * CB-9813 Keep module-to-plugin mapping at hand.
@@ -125,9 +125,9 @@
 * CB-9631 Save plugin to config.xml only if installation succeeds
 * CB-9601 Fix .versions support on Windows after semver update
 * CB-9617 Fixes incorrect project state after adding/removing plugins
-* CB-9560 Issue using plugin restore for plugins with common dependencies 
+* CB-9560 Issue using plugin restore for plugins with common dependencies
 * CB-8993 Plugin restore ignores search path
-* CB-9587 Check if browser platform added properly before creating parser. 
+* CB-9587 Check if browser platform added properly before creating parser.
 * CB-9604 Fix error adding browser platform with PlatformApi polyfill.
 * CB-9597 Initial Implementation of PlatformApiPoly
 * CB-9354 Fix array merging with complex items
@@ -138,7 +138,7 @@
 
 ### 5.3.1 (Aug 28, 2015)
 * pinned blackberry@3.8.0 in prepartion for its release
-* pinned browser@4.0.0 and windows@4.1.0 
+* pinned browser@4.0.0 and windows@4.1.0
 * CB-9559 Adding a plugin with caret in version results in an error
 * Update cordova-serve required version to 0.1.3.
 * CB-6506 RTC: Add support for OSX (closes #278)
@@ -368,7 +368,7 @@
 * CB-8043 CB-6462 CB-6105 Refactor orientation preference support (close #128)
 * FirefoxOS parser: allow passing in a ConfigParser object
 * Parsers: extend base parser with helper functions
-* CB-8244 android: Have `plugin add --link` create symlinks for 
``, ``, etc 
+* CB-8244 android: Have `plugin add --link` create symlinks for 
``, ``, etc
 * CB-8244 Pass options object to platform handlers in plugman (commit attempt 
#2)
 * CB-8226 'cordova platform add' : Look up version in config.xml if no version 
specified
 * Delete root .npmignore, since there's no node module there

http://git-wip-us.apache.org/repos/asf/cordova-lib/blob/96f89aa2/cordova-lib/package.json
--
diff --git a/cordova-lib/package.json b/cordova-lib/package.json
index 193c226..cde0a65 100644
--- a/cordova-lib/package.json
+++ b/cordova-lib/package.json
@@ -2,7 +2,7 @@
   "author": "Apache Software Foundation",
   "name": "cordova-lib",
   

[cordova-lib] Git Push Summary

2016-03-25 Thread an-selm
Repository: cordova-lib
Updated Tags:  refs/tags/6.1.1 [created] 96f89aa21

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