[GitHub] cordova-plugin-contacts pull request: CB-8115 incorrect birthday s...

2016-04-01 Thread riknoll
Github user riknoll commented on a diff in the pull request:


https://github.com/apache/cordova-plugin-contacts/pull/113#discussion_r58285822
  
--- Diff: www/convertUtils.js ---
@@ -0,0 +1,61 @@
+/*
+ *
+ * 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.
+ *
+*/
+
+var utils = require('cordova/utils');
+
+module.exports = {
+/**
+* Converts primitives into Complex Object
+* Currently only used for Date fields
+*/
+toCordova: function (contact) {
--- End diff --

Are we anticipating adding more conversions to these functions like the 
comments indicate?

Also, small nitpick: it would be nice to rename these to something a little 
more descriptive, like `toCordovaFormat` and `toNativeFormat`. `toCordova` 
reads a little strangely to me.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

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



[GitHub] cordova-plugin-contacts pull request: Changes to stop using global...

2016-04-01 Thread riknoll
Github user riknoll commented on the pull request:


https://github.com/apache/cordova-plugin-contacts/pull/115#issuecomment-204604763
  
LGTM


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

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



[GitHub] cordova-plugin-file-transfer pull request: adding sample section t...

2016-04-01 Thread riknoll
Github user riknoll commented on a diff in the pull request:


https://github.com/apache/cordova-plugin-file-transfer/pull/136#discussion_r58279713
  
--- Diff: README.md ---
@@ -315,3 +315,237 @@ If you are upgrading to a new (1.0.0 or newer) 
version of File, and you have pre
 cdvfile://localhost/persistent/path/to/file
 
 which can be used in place of the absolute file path in both `download()` 
and `upload()` methods.
+
+## Sample: Download and Upload Files
+
+Use the File-Transfer plugin to upload and download files. In these 
examples, we demonstrate several tasks like:
+
+* Downloading a binary file to the application cache
+* Uploading a file created in your application's root
+* Downloading the uploaded file
+
+## Download a Binary File to the application cache
+
+Use the File plugin with the File-Transfer plugin to provide a target for 
the files that you download (the target must be a FileEntry object). Before you 
download the file, create a DirectoryEntry object using 
`resolveLocalFileSystemURL`, passing in a Cordova file URL like 
`cordova.file.cacheDirectory`. Use the `getFile` method of DirectoryEntry to 
create the target file.
+
+```
+window.requestFileSystem(window.TEMPORARY, 5 * 1024 * 1024, function (fs) {
+
+console.log('file system open: ' + fs.name);
+// Return a DirectoryEntry using Cordova file URLs.
+window.resolveLocalFileSystemURL(cordova.file.cacheDirectory, function 
(dirEntry) {
+
+// Make sure you add the domain name to the 
Content-Security-Policy  element.
+var url = 'http://cordova.apache.org/static/img/cordova_bot.png';
+var fileName = 'downloaded-image.png';
+
+dirEntry.getFile(fileName, { create: true, exclusive: false }, 
function (fileEntry) {
+download(fileEntry, url);
+
+}, onErrorCreateFile);
+
+}, onErrorResolveUrl);
+
+}, onErrorLoadFs);
+```
+
+>*Note* For persistent storage, use cordova.file.dataDirectory and pass 
LocalFileSystem.PERSISTENT to requestFileSystem.
+
+When you have the FileEntry object, download the file using the `download` 
method of the FileTransfer object. The 3rd argument to the function is the 
success handler, which you can use to call the app's readBinaryFile function. 
In this code example, the `entry` variable is a new FileEntry object that 
receives the result of the download operation.
+
+```
+function download(fileEntry, uri) {
+
+var fileTransfer = new FileTransfer();
+var fileURL = fileEntry.toURL();
+
+fileTransfer.download(
+uri,
+fileURL,
+function (entry) {
+console.log("download complete: " + entry.toURL());
+readBinaryFile(entry);
+},
+function (error) {
+console.log("download error source " + error.source);
+console.log("download error target " + error.target);
+console.log("upload error code" + error.code);
+},
+null, // or, pass false
+{
+//headers: {
+//"Authorization": "Basic 
dGVzdHVzZXJuYW1lOnRlc3RwYXNzd29yZA=="
+//}
+}
+);
+}
+```
+
+To support operations with binary files, FileReader supports two methods, 
`readAsBinaryString` and `readAsArrayBuffer`. In this example, use 
readAsArrayBuffer and pass the FileEntry object to the method. Once you read 
the file successfully, construct a Blob object using the result of the read.
--- End diff --

The second readAsArrayBuffer isn't in an inline code block


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

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



[GitHub] cordova-plugin-file-transfer pull request: adding sample section t...

2016-04-01 Thread riknoll
Github user riknoll commented on a diff in the pull request:


https://github.com/apache/cordova-plugin-file-transfer/pull/136#discussion_r58279204
  
--- Diff: README.md ---
@@ -315,3 +315,237 @@ If you are upgrading to a new (1.0.0 or newer) 
version of File, and you have pre
 cdvfile://localhost/persistent/path/to/file
 
 which can be used in place of the absolute file path in both `download()` 
and `upload()` methods.
+
+## Sample: Download and Upload Files
+
+Use the File-Transfer plugin to upload and download files. In these 
examples, we demonstrate several tasks like:
+
+* Downloading a binary file to the application cache
+* Uploading a file created in your application's root
+* Downloading the uploaded file
+
+## Download a Binary File to the application cache
+
+Use the File plugin with the File-Transfer plugin to provide a target for 
the files that you download (the target must be a FileEntry object). Before you 
download the file, create a DirectoryEntry object using 
`resolveLocalFileSystemURL`, passing in a Cordova file URL like 
`cordova.file.cacheDirectory`. Use the `getFile` method of DirectoryEntry to 
create the target file.
+
+```
+window.requestFileSystem(window.TEMPORARY, 5 * 1024 * 1024, function (fs) {
--- End diff --

No need to use `requestFileSystem` and `resolveLocalFileSystemURL` together 
to access the cache


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

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



[GitHub] cordova-plugin-camera pull request: CB-10857 android : Camera.getP...

2016-04-01 Thread riknoll
Github user riknoll commented on the pull request:


https://github.com/apache/cordova-plugin-camera/pull/198#issuecomment-204598390
  
I think that we should eventually fix it to be consistent (and figure out 
the meaning of NATIVE_URI and FILE_URI for that matter). Also, we should 
definitely make sure it always returns a URI and not a path


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

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



[GitHub] cordova-plugin-camera pull request: CB-10857 android : Camera.getP...

2016-04-01 Thread jcesarmobile
Github user jcesarmobile commented on the pull request:


https://github.com/apache/cordova-plugin-camera/pull/198#issuecomment-204596592
  
Tested that the images are correctly displayed if used on an img tag, and 
can be uploaded to a server using file-transfer.

@riknoll, you are right, the paths we return aren't very consistent, maybe 
we should review them or at least document which params return which kind or 
path.

But for now, this looks good and I think it can be merged.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

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



[GitHub] cordova-plugin-file pull request: adding sample section to readme

2016-04-01 Thread riknoll
Github user riknoll commented on a diff in the pull request:

https://github.com/apache/cordova-plugin-file/pull/176#discussion_r58276468
  
--- Diff: README.md ---
@@ -538,3 +540,263 @@ Android also supports a special filesystem named 
"documents", which represents a
 * `root`: The entire device filesystem
 
 By default, the library and documents directories can be synced to iCloud. 
You can also request two additional filesystems, `library-nosync` and 
`documents-nosync`, which represent a special non-synced directory within the 
`/Library` or `/Documents` filesystem.
+
+## Sample: Create Files and Directories, Write, Read, and Append files ##
+
+The File plugin allows you to do things like store files in a temporary or 
persistent storage location for your app (sandboxed storage). The code snippets 
in this section demonstrate different tasks including:
+* Accessing the file system
+* Using cross-platform Cordova file URLs to store your files (see _Where 
to Store Files_ for more info)
+* Creating files and directories
+* Writing to files
+* Reading files
+* Appending files
+
+## Create a persistent file
+
+Before you can use the File plugin APIs, you must get access to the file 
system using `requestFileSystem`. When you do this, you can request either 
persistent or temporary storage. Persistent storage will not be removed unless 
permission is granted by the user.
+
+When you get file system access, access is granted for the sandboxed file 
system only (the sandbox limits access to the app itself), not for general 
access to any file system location on the device. For more information about 
location-specific URLs, see _Where to Store Files_.
+
+Here is a request for persistent storage.
+
+>*Note* When targeting devices (instead of a browser), you dont need to 
use `requestQuota` before using persistent storage.
+
+```
+window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function (fs) {
+
+console.log('file system open: ' + fs.name);
+createPersistentFile("newPersistentFile.txt");
+
+}, onErrorLoadFs);
+```
+
+Once you have access, you generally want to use the Cordova file URLs, 
like `cordova.file.dataDirectory`, where possible (see _Where to Store Files_). 
This will hide implementation details related to the file locations. To use a 
Cordova file URL, call `window.resolveLocalFileSystemURL`. The success callback 
receives a DirectoryEntry object as input. You can use this object to create or 
get a file (by calling `getFile`).
+
+The success callback for `getFile` receives a FileEntry object. You can 
use this to perform file write and file read operations.
+
+```
+function createPersistentFile(fileName) {
+
+// Return a DirectoryEntry using Cordova file URLs.
+window.resolveLocalFileSystemURL(cordova.file.dataDirectory, function 
(dirEntry) {
--- End diff --

If you are trying to write a file to the sandboxed storage location, I 
believe you can just call `fs.root.getFile()` (where `fs` comes from 
`requestFileSystem`) instead of calling 
`window.resolveLocalFileSystemURL(cordova.file.dataDirectory, ...)` first.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

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



[GitHub] cordova-plugin-file pull request: readme updates with samples

2016-04-01 Thread RobPosener
Github user RobPosener commented on the pull request:


https://github.com/apache/cordova-plugin-file/pull/175#issuecomment-204592324
  
You have inserted an additional reference to HTML5 Rocks that should be 
removed.
The HTML5 Rocks web page contains incorrect examples and currently throws 
an error (at the end).


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

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



[GitHub] cordova-plugin-file pull request: adding sample section to readme

2016-04-01 Thread riknoll
Github user riknoll commented on a diff in the pull request:

https://github.com/apache/cordova-plugin-file/pull/176#discussion_r58275738
  
--- Diff: README.md ---
@@ -538,3 +540,263 @@ Android also supports a special filesystem named 
"documents", which represents a
 * `root`: The entire device filesystem
 
 By default, the library and documents directories can be synced to iCloud. 
You can also request two additional filesystems, `library-nosync` and 
`documents-nosync`, which represent a special non-synced directory within the 
`/Library` or `/Documents` filesystem.
+
+## Sample: Create Files and Directories, Write, Read, and Append files ##
+
+The File plugin allows you to do things like store files in a temporary or 
persistent storage location for your app (sandboxed storage). The code snippets 
in this section demonstrate different tasks including:
+* Accessing the file system
+* Using cross-platform Cordova file URLs to store your files (see _Where 
to Store Files_ for more info)
+* Creating files and directories
+* Writing to files
+* Reading files
+* Appending files
+
+## Create a persistent file
+
+Before you can use the File plugin APIs, you must get access to the file 
system using `requestFileSystem`. When you do this, you can request either 
persistent or temporary storage. Persistent storage will not be removed unless 
permission is granted by the user.
+
+When you get file system access, access is granted for the sandboxed file 
system only (the sandbox limits access to the app itself), not for general 
access to any file system location on the device. For more information about 
location-specific URLs, see _Where to Store Files_.
+
+Here is a request for persistent storage.
+
+>*Note* When targeting devices (instead of a browser), you dont need to 
use `requestQuota` before using persistent storage.
+
+```
+window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function (fs) {
+
+console.log('file system open: ' + fs.name);
+createPersistentFile("newPersistentFile.txt");
+
+}, onErrorLoadFs);
+```
+
+Once you have access, you generally want to use the Cordova file URLs, 
like `cordova.file.dataDirectory`, where possible (see _Where to Store Files_). 
This will hide implementation details related to the file locations. To use a 
Cordova file URL, call `window.resolveLocalFileSystemURL`. The success callback 
receives a DirectoryEntry object as input. You can use this object to create or 
get a file (by calling `getFile`).
+
+The success callback for `getFile` receives a FileEntry object. You can 
use this to perform file write and file read operations.
+
+```
+function createPersistentFile(fileName) {
+
+// Return a DirectoryEntry using Cordova file URLs.
+window.resolveLocalFileSystemURL(cordova.file.dataDirectory, function 
(dirEntry) {
--- End diff --

You don't actually have to call `window.resolveLocalFileSystemURL` from 
within `window.requestFileSystem`. `window.requestFileSystem` is for getting 
access to the sandboxed application-specific storage only. 
`window.resolveLocalFileSystemURL` is for arbitrarily accessing storage 
(including non-sandboxed storage locations, like a phone's photo folder) and 
can be called on its own.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

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



[GitHub] cordova-plugin-file pull request: adding sample section to readme

2016-04-01 Thread Mikejo5000
GitHub user Mikejo5000 opened a pull request:

https://github.com/apache/cordova-plugin-file/pull/176

adding sample section to readme

removed link to current complete sample, related edits

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/Mikejo5000/cordova-plugin-file master

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/cordova-plugin-file/pull/176.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #176


commit 2cf6527ec83286e5c8aaa19a055dedc8e53af354
Author: Mikejo5001 
Date:   2016-03-29T00:22:49Z

readme updates with samples

commit ebe57fe3780812d5ce3e5b38423f0c0ac3269ea5
Author: Mikejo5001 
Date:   2016-03-29T00:31:01Z

readme edits

commit 96af5b056357e827d5ec4307af67a714498d5ee5
Author: Mikejo5001 
Date:   2016-04-01T21:17:15Z

readme updates




---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

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



[GitHub] cordova-plugin-inappbrowser pull request: New PR for Geo sample - ...

2016-04-01 Thread rakatyal
Github user rakatyal commented on a diff in the pull request:


https://github.com/apache/cordova-plugin-inappbrowser/pull/161#discussion_r58268931
  
--- Diff: README.md ---
@@ -217,6 +217,79 @@ The object returned from a call to 
`cordova.InAppBrowser.open`.
 
 - __callback__: the function that executes when the event fires. The 
function is passed an `InAppBrowserEvent` object as a parameter.
 
+## Example
+
+```javascript
+
+var inAppBrowserRef = undefined;
--- End diff --

Can we pass this reference to the callbacks instead of defining it globally?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

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



[GitHub] cordova-plugin-file pull request: readme updates with samples

2016-04-01 Thread Mikejo5000
Github user Mikejo5000 closed the pull request at:

https://github.com/apache/cordova-plugin-file/pull/175


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

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



RE: [VOTE] Tools release attempt 2

2016-04-01 Thread Vladimir Kotikov (Akvelon)
The vote has now closed. The results are:

Positive Binding Votes: 3

Vladimir Kotikov
Carlos Santana
Edna Morales

The vote has passed.

-
Best regards, Vladimir

-Original Message-
From: Carlos Santana [mailto:csantan...@gmail.com] 
Sent: Thursday, March 31, 2016 6:11 PM
To: dev@cordova.apache.org
Subject: Re: [VOTE] Tools release attempt 2

oops I was able to verify the tags after doing git fetch origin --tags

  $ coho verify-tags
Running from ~/dev/cordova
Paste in print-tags output then hit Enter
cordova-lib: 6.1.1 (107e273647)
cordova-plugman: 1.2.1 (f05a7ef8cf)
cordova-cli: 6.1.1 (8e730ac376)

cordova-lib: Tag hash verified.
cordova-plugman: Tag hash verified.
cordova-cli: Tag hash verified.


On Thu, Mar 31, 2016 at 7:51 AM Edna Y Morales  wrote:

> I vote +1
>
> -Verified tags for all 3 tools with coho verify-tags -Tested hello 
> world app with ios and android and all core plugins installed -Created 
> hello world app with windows and all core plugins installed, but did 
> not run on device or emulator
>
> Thanks,
> *Edna Morales*
>
> [image: Inactive hide details for Carlos Santana ---03/30/2016 
> 06:10:27 PM---I vote +1 coho verify-archive 
> vote-6.1.1/cordova-6.1.1.tgz]Carlos
> Santana ---03/30/2016 06:10:27 PM---I vote +1 coho verify-archive 
> vote-6.1.1/cordova-6.1.1.tgz
>
> From: Carlos Santana 
> To: "dev@cordova.apache.org" 
> Date: 03/30/2016 06:10 PM
> Subject: Re: [VOTE] Tools release attempt 2
> --
>
>
>
>
> I vote +1
>
> coho verify-archive vote-6.1.1/cordova-6.1.1.tgz coho verify-archive 
> vote-6.1.1/cordova-lib-6.1.1.tgz coho verify-archive 
> vote-6.1.1/plugman-1.2.1.tgz
>
> verify tag for cordova-plugman 6.1.1
>
> was not able to verify tags for lib and cli, no problem with release 
> content and signatures, just the tags need to be updated in the git 
> repo
>
> cordova-cli tag 6.1.1 needs to be move to hash 8e730ac376 cordova-lib 
> tag 6.1.1 needs to be move to hash 107e273647
>
> Also cordova-cli master doesn't have latest commits from 8e730ac376
>
> Tested hello-world app with ios and android
>
> $ coho verify-tags
> Running from /Users/csantana23/Documents/dev/cordova
> Paste in print-tags output then hit Enter
> cordova-lib: 6.1.1 (107e273647)
> cordova-lib: Hashes don't match!
>
> $ coho verify-tags
> Running from /Users/csantana23/Documents/dev/cordova
> Paste in print-tags output then hit Enter
> cordova-cli: 6.1.1 (8e730ac376)
> cordova-cli: Hashes don't match!
>
>
>
>
> On Tue, Mar 29, 2016 at 10:33 AM Vladimir Kotikov (Akvelon) < 
> v-vlk...@microsoft.com> wrote:
>
> > Please review and vote on this Tools Release by replying to this 
> > email (and keep discussion on the DISCUSS thread)
> >
> > Release issue: 
> > https://na01.safelinks.protection.outlook.com/?url=https%3a%2f%2fiss
> > ues.apache.org%2fjira%2fbrowse%2fCB-10980=01%7c01%7cv-vlkoti%40
> > microsoft.com%7ca7fcfe16d3d645db3a8008d35976a406%7c72f988bf86f141af9
> > 1ab2d7cd011db47%7c1=FFjoMAJw3E71QLT%2bhBO%2fPQbJcjMej5UEDJ4ErC
> > 20WKs%3d Both tools have been published to dist/dev:
> > https://na01.safelinks.protection.outlook.com/?url=https%3a%2f%2fdis
> > t.apache.org%2frepos%2fdist%2fdev%2fcordova%2fCB-10980=01%7c01%
> > 7cv-vlkoti%40microsoft.com%7ca7fcfe16d3d645db3a8008d35976a406%7c72f9
> > 88bf86f141af91ab2d7cd011db47%7c1=%2fE8%2fQIlr7cLM3urVgo%2b339m
> > vpTB9fSArJCeiE3mthB8%3d
> >
> > The packages were published from their corresponding git tags:
> > cordova-lib: 6.1.1 (107e273647)
> > cordova-plugman: 1.2.1 (f05a7ef8cf)
> > cordova-cli: 6.1.1 (8e730ac376)
> >
> > Upon a successful vote I will upload the archives to dist/, publish 
> > them to NPM, and post the corresponding blog post.
> >
> > Voting guidelines:
> >
> https://github.com/apache/cordova-coho/blob/master/docs/release-voting
> .md
> >
> > Voting will go on for a minimum of 48 hours.
> >
> > I vote +1:
> > * Ran coho audit-license-headers over the relevant repos
> > * Ran coho check-license to ensure all dependencies and 
> > subdependencies have Apache-compatible licenses
> > * Ensured continuous build was green when repos were tagged
> > * Created and ran mobilespec app on Android and Windows
> > * Ran mobilespec app with --browserify flag on Android
> > * Ensured unit tests are passing for cli, lib and plugman
> >
> > 
> > - To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
> > For additional commands, e-mail: dev-h...@cordova.apache.org
> >
> >
>
>
>
>


[GitHub] cordova-plugin-inappbrowser pull request: New PR for Geo sample - ...

2016-04-01 Thread rakatyal
Github user rakatyal commented on a diff in the pull request:


https://github.com/apache/cordova-plugin-inappbrowser/pull/161#discussion_r58267690
  
--- Diff: README.md ---
@@ -394,3 +467,163 @@ Due to [MSDN 
docs](https://msdn.microsoft.com/en-us/library/windows.ui.xaml.cont
 ref.addEventListener('loadstop', function() {
 ref.insertCSS({file: "mystyles.css"});
 });
+__
+
+## Sample: Show help pages with an InAppBrowser
+
+You can use this plugin to show helpful documentation pages within your 
app. Users can view online help documents and then close them without leaving 
the app.
+
+Here's a few snippets that show how you do this.
+
+* Give users a way to ask for help.
--- End diff --

Consider adding links to these options.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

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



[GitHub] cordova-plugin-file-transfer pull request: adding sample section t...

2016-04-01 Thread Mikejo5000
GitHub user Mikejo5000 opened a pull request:

https://github.com/apache/cordova-plugin-file-transfer/pull/136

adding sample section to readme



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/Mikejo5000/cordova-plugin-file-transfer master

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/cordova-plugin-file-transfer/pull/136.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #136


commit 013a3b60a20e03e69b7403c355033397453df870
Author: Mikejo5001 
Date:   2016-04-01T21:04:31Z

adding sample section to readme




---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

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



[GitHub] cordova-plugin-geolocation pull request: New PR for sample content...

2016-04-01 Thread rakatyal
Github user rakatyal commented on a diff in the pull request:


https://github.com/apache/cordova-plugin-geolocation/pull/75#discussion_r58266872
  
--- Diff: README.md ---
@@ -296,3 +311,436 @@ callback function when an error occurs with 
navigator.geolocation.
   - Returned when the device is unable to retrieve a position. In general, 
this means the device is not connected to a network or can't get a satellite 
fix.
 - `PositionError.TIMEOUT`
   - Returned when the device is unable to retrieve a position within the 
time specified by the `timeout` included in `geolocationOptions`. When used 
with `navigator.geolocation.watchPosition`, this error could be repeatedly 
passed to the `geolocationError` callback every `timeout` milliseconds.
+
+
+## Sample: Get the weather, find stores, and see photos of things nearby 
with Geolocation ##
+
+Use this plugin to help users find things near them such as Groupon deals, 
houses for sale, movies playing, sports and entertainment events and more.
+
+Here's a "cookbook" of ideas to get you started. In the snippets below, 
we'll show you some basic ways to add these features to your app.
+
+* Get your coordinates.
--- End diff --

We could actually live away with the index of entire README. Just adding 
links to this should be good enough.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

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



[GitHub] cordova-plugin-geolocation pull request: New PR for sample content...

2016-04-01 Thread rakatyal
Github user rakatyal commented on the pull request:


https://github.com/apache/cordova-plugin-geolocation/pull/75#issuecomment-204563680
  
Also I know this is not completely on you, but would you mind adding a list 
(index) at the starting of the README with links to the major headings? That 
would help in navigating through the examples and other content.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

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



[GitHub] cordova-plugin-geolocation pull request: New PR for sample content...

2016-04-01 Thread rakatyal
Github user rakatyal commented on a diff in the pull request:


https://github.com/apache/cordova-plugin-geolocation/pull/75#discussion_r58266173
  
--- Diff: README.md ---
@@ -296,3 +311,436 @@ callback function when an error occurs with 
navigator.geolocation.
   - Returned when the device is unable to retrieve a position. In general, 
this means the device is not connected to a network or can't get a satellite 
fix.
 - `PositionError.TIMEOUT`
   - Returned when the device is unable to retrieve a position within the 
time specified by the `timeout` included in `geolocationOptions`. When used 
with `navigator.geolocation.watchPosition`, this error could be repeatedly 
passed to the `geolocationError` callback every `timeout` milliseconds.
+
+
+## Sample: Get the weather, find stores, and see photos of things nearby 
with Geolocation ##
+
+Use this plugin to help users find things near them such as Groupon deals, 
houses for sale, movies playing, sports and entertainment events and more.
+
+Here's a "cookbook" of ideas to get you started. In the snippets below, 
we'll show you some basic ways to add these features to your app.
+
+* Get your coordinates.
+* Get the weather forecast.
+* Receive updated weather forecasts as you drive around.
+* See where you are on a map.
+* Find stores near you.
+* See pictures of things around you.
+
+## Get your geolocation coordinates
+
+```javascript
+
+function getWeatherLocation() {
+
+navigator.geolocation.getCurrentPosition
+(onWeatherSuccess, onWeatherError, { enableHighAccuracy: true });
+}
+
+```
+## Get the weather forecast
+
+```javascript
+
+// Success callback for get geo coordinates
+
+var onWeatherSuccess = function (position) {
+
+// We declared Latitude and Longitude as global variables
+Latitude = position.coords.latitude;
+Longitude = position.coords.longitude;
+
+getWeather(Latitude, Longitude);
+}
+
+// Get weather by using coordinates
+
+function getWeather(latitude, longitude) {
+
+var queryString =
+
"http://gws2.maps.yahoo.com/findlocation?pf=1=en_US=15==;
++ latitude + "%2c" + longitude + "=R=0=json";
+
+$.getJSON(queryString, function (results) {
+
+if (results.Found > 0) {
+var zipCode = results.Result.uzip;
+var queryString = 
"https://query.yahooapis.com/v1/public/yql?q=;
+  + "select+*+from+weather.forecast+where+location="
+  + zipCode + "=json";
+
+$.getJSON(queryString, function (results) {
+
+if (results.query.count > 0) {
+var weather = results.query.results.channel;
+
+$('#description').text(weather.description);
+$('#temp').text(weather.wind.chill);
+$('#wind').text(weather.wind.speed);
+$('#humidity').text(weather.atmosphere.humidity);
+$('#visibility').text(weather.atmosphere.visibility);
+$('#sunrise').text(weather.astronomy.sunrise);
+$('#sunset').text(weather.astronomy.sunset);
+}
+});
+}
+}).fail(function () {
+console.log("error getting location");
+});
+}
+
+// Error callback
+
+function onWeatherError(error) {
+console.log('code: ' + error.code + '\n' +
+'message: ' + error.message + '\n');
+}
+
+```
+
+## Receive updated weather forecasts as you drive around
+
+```javascript
+
+// Watch your changing position
+
+function watchWeatherPosition() {
+
+return navigator.geolocation.watchPosition
+(onWeatherWatchSuccess, onWeatherError, { enableHighAccuracy: true });
+}
+
+// Success callback for watching your changing position
+
+var onWeatherWatchSuccess = function (position) {
+
+var updatedLatitude = position.coords.latitude;
+var updatedLongitude = position.coords.longitude;
+
+if (updatedLatitude != Latitude && updatedLongitude != Longitude) {
+
+Latitude = updatedLatitude;
+Longitude = updatedLongitude;
+
+// Calls function we defined earlier.
+getWeather(updatedLatitude, updatedLongitude);
+}
+}
+
+```
+
+## See where you are on a map
+
+Both Bing and Google have map services. We'll use Google's. You'll need a 
key but it's free if you're just trying things out.
+
+Add a reference to the **maps** service.
+
+```HTML
+
+ https://maps.googleapis.com/maps/api/js?key=Your_API_Key";>
+
+```

[GitHub] cordova-osx pull request: CB-11002 Enable hidden accelerated rende...

2016-04-01 Thread asfgit
Github user asfgit closed the pull request at:

https://github.com/apache/cordova-osx/pull/34


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

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



[GitHub] cordova-osx pull request: CB-11002 Enable hidden accelerated rende...

2016-04-01 Thread tripodsan
GitHub user tripodsan opened a pull request:

https://github.com/apache/cordova-osx/pull/34

CB-11002 Enable hidden accelerated rendering settings by default



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/tripodsan/cordova-osx CB-11002

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/cordova-osx/pull/34.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #34


commit aa138454255d6d3e69edac450679713cfbccba7c
Author: Tobias Bocanegra 
Date:   2016-04-01T19:11:06Z

CB-11002 Enable hidden accelerated rendering settings by default




---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

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



[GitHub] cordova-plugin-statusbar pull request: CB-10884 Inappbrowser break...

2016-04-01 Thread jacobweber
Github user jacobweber commented on the pull request:


https://github.com/apache/cordova-plugin-statusbar/pull/53#issuecomment-204442987
  
There is still a similar [portrait-to-landscape 
bug](https://issues.apache.org/jira/browse/CB-10884?focusedCommentId=15221859=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-15221859),
 even with this fix.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

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



Re: [DISCUSS] Tools Release CLI/LIB 6.1.1

2016-04-01 Thread Carlos Santana
can we close the vote and release?

On Fri, Apr 1, 2016 at 9:38 AM Carlos Santana  wrote:

> bump
>
> On Thu, Mar 31, 2016 at 1:27 PM Carlos Santana 
> wrote:
>
>> +1
>>
>> - Carlos
>> @csantanapr
>>
>> > On Mar 31, 2016, at 1:17 PM, Vladimir Kotikov (Akvelon) <
>> v-vlk...@microsoft.com> wrote:
>> >
>> > Just cherry-picked releasenotes to master
>> > -
>> > Best regards, Vladimir
>> >
>> > -Original Message-
>> > From: Carlos Santana [mailto:csantan...@gmail.com]
>> > Sent: Thursday, March 31, 2016 6:09 PM
>> > To: dev@cordova.apache.org
>> > Subject: Re: [DISCUSS] Tools Release CLI/LIB 6.1.1
>> >
>> > Burned again by not using --tags to fresh :-(
>> >
>> > But still cordova-cli master/HEAD is behind 3 commits need to be
>> updated, it's missing the
>> https://na01.safelinks.protection.outlook.com/?url=RELEASENOTES.md=01%7c01%7cv-vlkoti%40microsoft.com%7c4d492fd59cd945deab3b08d359767d19%7c72f988bf86f141af91ab2d7cd011db47%7c1=mAKpEs1VeHtDgr6DinoFQjrSX3WZblU3IpZAh8LHbEY%3d
>> changes for 6.1.1
>> >
>> >
>> >
>> >> On Thu, Mar 31, 2016 at 3:36 AM Vladimir Kotikov (Akvelon) <
>> v-vlk...@microsoft.com> wrote:
>> >>
>> >> Carlos,
>> >> I was able to verify tags for lib and cli:
>> >>
>> >> coho verify-tags
>> >> Running from d:\cordova
>> >> Paste in print-tags output then hit Enter
>> >>cordova-lib: 6.1.1 (107e273647)
>> >>cordova-plugman: 1.2.1 (f05a7ef8cf)
>> >>cordova-cli: 6.1.1 (8e730ac376)
>> >>
>> >> cordova-lib: Tag hash verified.
>> >> cordova-plugman: Tag hash verified.
>> >> cordova-cli: Tag hash verified.
>> >>
>> >> Looks like you just need to run `git fetch origin --tags` to update
>> >> the tags in your local repo. They had been moved since last release
>> >> attempt. I should have notify about this when started the vote.
>> >>
>> >> -
>> >> Best regards, Vladimir
>> >>
>> >> -Original Message-
>> >> From: Carlos Santana [mailto:csantan...@gmail.com]
>> >> Sent: Tuesday, March 29, 2016 2:35 PM
>> >> To: dev@cordova.apache.org
>> >> Subject: Re: [DISCUSS] Tools Release CLI/LIB 6.1.1
>> >>
>> >> I agree, we can discuss later the release for cordova-commons
>> >>
>> >> - Carlos
>> >> @csantanapr
>> >>
>>  On Mar 29, 2016, at 7:27 AM, Vladimir Kotikov (Akvelon) <
>> >>> v-vlk...@microsoft.com> wrote:
>> >>>
>> >>> Carlos, I've reviewed and merged these PRs. However the only two PRs
>> >> that need to be included into this release are #415 [1] and #416 [2].
>> >> The other two are for cordova-common and I guess we have nothing to do
>> >> with them for now.
>> >>>
>> >>> Summarizing, the release notes for 6.1.1 will look like this:
>> >>>
>> >>> ### 6.1.1 (Mar 29, 2016)
>> >>> * CB-10961 Error no such file or directory adding ios platform when
>> >> plugins present or required
>> >>> * CB-10908 Reload the config.xml before writing the saved plugin
>> >>>
>> >>> [1] https://github.com/apache/cordova-lib/pull/415
>> >>> [2] https://github.com/apache/cordova-lib/pull/416
>> >>>
>> >>> -
>> >>> Best regards, Vladimir
>> >>>
>> >>> -Original Message-
>> >>> From: Carlos Santana [mailto:csantan...@gmail.com]
>> >>> Sent: Monday, March 28, 2016 10:50 PM
>> >>> To: dev@cordova.apache.org
>> >>> Subject: [DISCUSS] Tools Release CLI/LIB 6.1.1
>> >>>
>> >>> I would like to see a patch release for the tools
>> >>>
>> >>> Interested if someone can review and merge these PRs and get include
>> >>> it
>> >> in the release:
>> >>>
>> >>> https://github.com/apache/cordova-lib/pull/418
>> >>> https://github.com/apache/cordova-lib/pull/417
>> >>> https://github.com/apache/cordova-lib/pull/416
>> >>> https://github.com/apache/cordova-lib/pull/415
>> >>>
>> >>> 
>> >>> - To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
>> >>> For additional commands, e-mail: dev-h...@cordova.apache.org
>> >>
>> >> -
>> >> To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
>> >> For additional commands, e-mail: dev-h...@cordova.apache.org
>> >>
>> >>
>> >> -
>> >> To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
>> >> For additional commands, e-mail: dev-h...@cordova.apache.org
>> >
>> ТÐÐ¥Fò
>> Vç7V'67&– RÖÖ –â FWb×Vç7V'67&– 6÷÷f æ   6†Ræ÷Фf÷"  FF—F–öæ Â
>> 6öÖÖ æG2 RÖÖ –â FWbÖ†VÇ  6÷÷f æ   6†Ræ÷Ð
>>
>


Re: [DISCUSS] Tools Release CLI/LIB 6.1.1

2016-04-01 Thread Carlos Santana
bump

On Thu, Mar 31, 2016 at 1:27 PM Carlos Santana  wrote:

> +1
>
> - Carlos
> @csantanapr
>
> > On Mar 31, 2016, at 1:17 PM, Vladimir Kotikov (Akvelon) <
> v-vlk...@microsoft.com> wrote:
> >
> > Just cherry-picked releasenotes to master
> > -
> > Best regards, Vladimir
> >
> > -Original Message-
> > From: Carlos Santana [mailto:csantan...@gmail.com]
> > Sent: Thursday, March 31, 2016 6:09 PM
> > To: dev@cordova.apache.org
> > Subject: Re: [DISCUSS] Tools Release CLI/LIB 6.1.1
> >
> > Burned again by not using --tags to fresh :-(
> >
> > But still cordova-cli master/HEAD is behind 3 commits need to be
> updated, it's missing the
> https://na01.safelinks.protection.outlook.com/?url=RELEASENOTES.md=01%7c01%7cv-vlkoti%40microsoft.com%7c4d492fd59cd945deab3b08d359767d19%7c72f988bf86f141af91ab2d7cd011db47%7c1=mAKpEs1VeHtDgr6DinoFQjrSX3WZblU3IpZAh8LHbEY%3d
> changes for 6.1.1
> >
> >
> >
> >> On Thu, Mar 31, 2016 at 3:36 AM Vladimir Kotikov (Akvelon) <
> v-vlk...@microsoft.com> wrote:
> >>
> >> Carlos,
> >> I was able to verify tags for lib and cli:
> >>
> >> coho verify-tags
> >> Running from d:\cordova
> >> Paste in print-tags output then hit Enter
> >>cordova-lib: 6.1.1 (107e273647)
> >>cordova-plugman: 1.2.1 (f05a7ef8cf)
> >>cordova-cli: 6.1.1 (8e730ac376)
> >>
> >> cordova-lib: Tag hash verified.
> >> cordova-plugman: Tag hash verified.
> >> cordova-cli: Tag hash verified.
> >>
> >> Looks like you just need to run `git fetch origin --tags` to update
> >> the tags in your local repo. They had been moved since last release
> >> attempt. I should have notify about this when started the vote.
> >>
> >> -
> >> Best regards, Vladimir
> >>
> >> -Original Message-
> >> From: Carlos Santana [mailto:csantan...@gmail.com]
> >> Sent: Tuesday, March 29, 2016 2:35 PM
> >> To: dev@cordova.apache.org
> >> Subject: Re: [DISCUSS] Tools Release CLI/LIB 6.1.1
> >>
> >> I agree, we can discuss later the release for cordova-commons
> >>
> >> - Carlos
> >> @csantanapr
> >>
>  On Mar 29, 2016, at 7:27 AM, Vladimir Kotikov (Akvelon) <
> >>> v-vlk...@microsoft.com> wrote:
> >>>
> >>> Carlos, I've reviewed and merged these PRs. However the only two PRs
> >> that need to be included into this release are #415 [1] and #416 [2].
> >> The other two are for cordova-common and I guess we have nothing to do
> >> with them for now.
> >>>
> >>> Summarizing, the release notes for 6.1.1 will look like this:
> >>>
> >>> ### 6.1.1 (Mar 29, 2016)
> >>> * CB-10961 Error no such file or directory adding ios platform when
> >> plugins present or required
> >>> * CB-10908 Reload the config.xml before writing the saved plugin
> >>>
> >>> [1] https://github.com/apache/cordova-lib/pull/415
> >>> [2] https://github.com/apache/cordova-lib/pull/416
> >>>
> >>> -
> >>> Best regards, Vladimir
> >>>
> >>> -Original Message-
> >>> From: Carlos Santana [mailto:csantan...@gmail.com]
> >>> Sent: Monday, March 28, 2016 10:50 PM
> >>> To: dev@cordova.apache.org
> >>> Subject: [DISCUSS] Tools Release CLI/LIB 6.1.1
> >>>
> >>> I would like to see a patch release for the tools
> >>>
> >>> Interested if someone can review and merge these PRs and get include
> >>> it
> >> in the release:
> >>>
> >>> https://github.com/apache/cordova-lib/pull/418
> >>> https://github.com/apache/cordova-lib/pull/417
> >>> https://github.com/apache/cordova-lib/pull/416
> >>> https://github.com/apache/cordova-lib/pull/415
> >>>
> >>> 
> >>> - To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
> >>> For additional commands, e-mail: dev-h...@cordova.apache.org
> >>
> >> -
> >> To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
> >> For additional commands, e-mail: dev-h...@cordova.apache.org
> >>
> >>
> >> -
> >> To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
> >> For additional commands, e-mail: dev-h...@cordova.apache.org
> >
> ТÐÐ¥Fò
> Vç7V'67&– RÖÖ –â FWb×Vç7V'67&– 6÷÷f æ   6†Ræ÷Фf÷"  FF—F–öæ Â
> 6öÖÖ æG2 RÖÖ –â FWbÖ†VÇ  6÷÷f æ   6†Ræ÷Ð
>


[GitHub] cordova-cli pull request: CB-10062 Error: EACCES: permission denie...

2016-04-01 Thread daserge
GitHub user daserge opened a pull request:

https://github.com/apache/cordova-cli/pull/242

CB-10062 Error: EACCES: permission denied - update-notifier-cordova.json

Catch permissions error and print a workaround

[Jira issue](https://issues.apache.org/jira/browse/CB-10062)

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/MSOpenTech/cordova-cli CB-10062

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/cordova-cli/pull/242.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #242


commit 24865b92be955c7c3d47b2a99c7dc296ba98c264
Author: daserge 
Date:   2016-04-01T09:12:26Z

CB-10062 Error: EACCES: permission denied - update-notifier-cordova.json

Catch permissions error and print a workaround




---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

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