[jira] [Commented] (CB-6667) window.requestFileSystem - callbacks are not fired in a particular circumstance

2014-05-30 Thread Kelvin Dart (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6667?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013409#comment-14013409
 ] 

Kelvin Dart commented on CB-6667:
-

Hi [~iclelland],

I'll provide a pastebin shortly and instructions on how to set it up. It's 
pretty much the default project but with a minor alteration, but I will provide 
that to you anyway!

Rather frustratingly, File Dropper has deleted my files.

 window.requestFileSystem - callbacks are not fired in a particular 
 circumstance
 ---

 Key: CB-6667
 URL: https://issues.apache.org/jira/browse/CB-6667
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin File
Affects Versions: 3.4.0
 Environment: Mac OS X 10.9.2
 Android SDK (latest) - API v19
 Eclipse 4.2.2
Reporter: Kelvin Dart
Priority: Critical
  Labels: Android4.4.x, Cordova, androidmanifest.xml, window

 Excuse the essay, but I have a very odd issue that I have singled down to 
 Cordova which happens in a very specific circumstance on Android.
 I have provided a project of the stock Cordova Android project which can be 
 found here: http://www.filedropper.com/windowfstest - with a minor 
 modification for the issue I am having.
 I have uploaded a compiled APK to install to your device here: 
 http://www.filedropper.com/windowfstest140509-1404
 Steps to replicate are:
 1) Download and install that APK onto your device (I was using the Samsung 
 Galaxy S4 with Android 4.4.2 running, no root, and stock TouchWiz ROM, I 
 *hope* this occurs on other Android devices but have not had an opportunity 
 to verify).
 2) Start the application and observe an alert appears stating 'dr', then 
 afterwards another alert appears, 'got FS' - if you check the code, you'll 
 see this is normal from my app.initialize().
 3) Once those two alerts have appeared, press the Android 'home' button, to 
 quit to the main Android home screen.
 4) Go into another app or two and just use your phone normally. What we are 
 trying to achieve here is for the Android memory management system to 
 'end'/kill the WindowFSTest app in the backend.
 5) Go into Apps  WindowFSTest (i.e. the app in question) and hopefully it 
 will have restarted - the app has to have restarted for the bug to occur, and 
 observe a few things here:
 a) Verify the app has restarted, this can be verified by the 'dr' popup 
 occuring when Cordova loads.
 b) Once you are confident the app has been restarted, observe the initial 
 'dr' popup, but *not* the 'got FS' popup - this is the bug, the 
 window.requestFileSystem does not fire the callbacks for some reason - and I 
 do not know why.
 N.b. there are a few things to note here which is why the bug is tricky to 
 replicate AND I imagine will be even more difficult to debug at a lower level 
 ;-)
 1) The Android system has to kill the app in the backend once you've pressed 
 the 'home' button - there's no way of determining when this has happened, 
 just use the phone like ordinary for half a minute or so - normally it kills 
 it after a short period.
 2) The way to restart the app is via Apps  WindowFSTest (not via the task 
 manager).
 3) ***IMPORTANT*** the above two steps seem to occur only when you run it 
 from a compiled APK, not directly from source/debug APK - so it's not as easy 
 to debug since you cannot put line breaks in the Java file(s).
 Although not perfect, one way to fix this is to use:
 android:launchMode=singleTop
 In AndroidManifest.xml - since it ensures the app is 'resumed' instead of 
 restarted.
 I can provide a video upon request illustrating the issue.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6689) UIWebview freezes while page behind the link with target='_system' opens in mobile safari

2014-05-30 Thread Jake McAllister (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6689?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013456#comment-14013456
 ] 

Jake McAllister commented on CB-6689:
-

Yes you are right also at point 7 Cordova app comes back to the foreground the 
phone also freezes

 UIWebview freezes while page behind the link with target='_system' opens in 
 mobile safari
 -

 Key: CB-6689
 URL: https://issues.apache.org/jira/browse/CB-6689
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin InAppBrowser
Affects Versions: 3.4.0
 Environment: iOS 7.1, iPhone
Reporter: Jake McAllister

 When opening an external link in cordova app using the inAppBrowser plugin 
 with  target='_system' the cordova app freezes until the page in safari has 
 loaded. This posses a problem where if the user accidentally presses it and 
 wants to go back to the app before the page has loaded in safari the app 
 remain frozen.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6667) window.requestFileSystem - callbacks are not fired in a particular circumstance

2014-05-30 Thread Kelvin Dart (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6667?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013462#comment-14013462
 ] 

Kelvin Dart commented on CB-6667:
-

Pastebin available: http://pastebin.com/CWxVg7Pg.

Not a big change at all. However, as mentioned above, you'll need to create a 
self-signed APK in order for the default launch mode to occur (it does not seem 
to occur otherwise) - then once you have installed the self-signed APK, install 
it on the device and follow the steps above.

Hope that helps!

 window.requestFileSystem - callbacks are not fired in a particular 
 circumstance
 ---

 Key: CB-6667
 URL: https://issues.apache.org/jira/browse/CB-6667
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin File
Affects Versions: 3.4.0
 Environment: Mac OS X 10.9.2
 Android SDK (latest) - API v19
 Eclipse 4.2.2
Reporter: Kelvin Dart
Priority: Critical
  Labels: Android4.4.x, Cordova, androidmanifest.xml, window

 Excuse the essay, but I have a very odd issue that I have singled down to 
 Cordova which happens in a very specific circumstance on Android.
 I have provided a project of the stock Cordova Android project which can be 
 found here: http://www.filedropper.com/windowfstest - with a minor 
 modification for the issue I am having.
 I have uploaded a compiled APK to install to your device here: 
 http://www.filedropper.com/windowfstest140509-1404
 Steps to replicate are:
 1) Download and install that APK onto your device (I was using the Samsung 
 Galaxy S4 with Android 4.4.2 running, no root, and stock TouchWiz ROM, I 
 *hope* this occurs on other Android devices but have not had an opportunity 
 to verify).
 2) Start the application and observe an alert appears stating 'dr', then 
 afterwards another alert appears, 'got FS' - if you check the code, you'll 
 see this is normal from my app.initialize().
 3) Once those two alerts have appeared, press the Android 'home' button, to 
 quit to the main Android home screen.
 4) Go into another app or two and just use your phone normally. What we are 
 trying to achieve here is for the Android memory management system to 
 'end'/kill the WindowFSTest app in the backend.
 5) Go into Apps  WindowFSTest (i.e. the app in question) and hopefully it 
 will have restarted - the app has to have restarted for the bug to occur, and 
 observe a few things here:
 a) Verify the app has restarted, this can be verified by the 'dr' popup 
 occuring when Cordova loads.
 b) Once you are confident the app has been restarted, observe the initial 
 'dr' popup, but *not* the 'got FS' popup - this is the bug, the 
 window.requestFileSystem does not fire the callbacks for some reason - and I 
 do not know why.
 N.b. there are a few things to note here which is why the bug is tricky to 
 replicate AND I imagine will be even more difficult to debug at a lower level 
 ;-)
 1) The Android system has to kill the app in the backend once you've pressed 
 the 'home' button - there's no way of determining when this has happened, 
 just use the phone like ordinary for half a minute or so - normally it kills 
 it after a short period.
 2) The way to restart the app is via Apps  WindowFSTest (not via the task 
 manager).
 3) ***IMPORTANT*** the above two steps seem to occur only when you run it 
 from a compiled APK, not directly from source/debug APK - so it's not as easy 
 to debug since you cannot put line breaks in the Java file(s).
 Although not perfect, one way to fix this is to use:
 android:launchMode=singleTop
 In AndroidManifest.xml - since it ensures the app is 'resumed' instead of 
 restarted.
 I can provide a video upon request illustrating the issue.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Issue Comment Deleted] (CB-6667) window.requestFileSystem - callbacks are not fired in a particular circumstance

2014-05-30 Thread Kelvin Dart (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-6667?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Kelvin Dart updated CB-6667:


Comment: was deleted

(was: Hi [~iclelland],

I'll provide a pastebin shortly and instructions on how to set it up. It's 
pretty much the default project but with a minor alteration, but I will provide 
that to you anyway!

Rather frustratingly, File Dropper has deleted my files.)

 window.requestFileSystem - callbacks are not fired in a particular 
 circumstance
 ---

 Key: CB-6667
 URL: https://issues.apache.org/jira/browse/CB-6667
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin File
Affects Versions: 3.4.0
 Environment: Mac OS X 10.9.2
 Android SDK (latest) - API v19
 Eclipse 4.2.2
Reporter: Kelvin Dart
Priority: Critical
  Labels: Android4.4.x, Cordova, androidmanifest.xml, window

 Excuse the essay, but I have a very odd issue that I have singled down to 
 Cordova which happens in a very specific circumstance on Android.
 I have provided a project of the stock Cordova Android project which can be 
 found here: http://www.filedropper.com/windowfstest - with a minor 
 modification for the issue I am having.
 I have uploaded a compiled APK to install to your device here: 
 http://www.filedropper.com/windowfstest140509-1404
 Steps to replicate are:
 1) Download and install that APK onto your device (I was using the Samsung 
 Galaxy S4 with Android 4.4.2 running, no root, and stock TouchWiz ROM, I 
 *hope* this occurs on other Android devices but have not had an opportunity 
 to verify).
 2) Start the application and observe an alert appears stating 'dr', then 
 afterwards another alert appears, 'got FS' - if you check the code, you'll 
 see this is normal from my app.initialize().
 3) Once those two alerts have appeared, press the Android 'home' button, to 
 quit to the main Android home screen.
 4) Go into another app or two and just use your phone normally. What we are 
 trying to achieve here is for the Android memory management system to 
 'end'/kill the WindowFSTest app in the backend.
 5) Go into Apps  WindowFSTest (i.e. the app in question) and hopefully it 
 will have restarted - the app has to have restarted for the bug to occur, and 
 observe a few things here:
 a) Verify the app has restarted, this can be verified by the 'dr' popup 
 occuring when Cordova loads.
 b) Once you are confident the app has been restarted, observe the initial 
 'dr' popup, but *not* the 'got FS' popup - this is the bug, the 
 window.requestFileSystem does not fire the callbacks for some reason - and I 
 do not know why.
 N.b. there are a few things to note here which is why the bug is tricky to 
 replicate AND I imagine will be even more difficult to debug at a lower level 
 ;-)
 1) The Android system has to kill the app in the backend once you've pressed 
 the 'home' button - there's no way of determining when this has happened, 
 just use the phone like ordinary for half a minute or so - normally it kills 
 it after a short period.
 2) The way to restart the app is via Apps  WindowFSTest (not via the task 
 manager).
 3) ***IMPORTANT*** the above two steps seem to occur only when you run it 
 from a compiled APK, not directly from source/debug APK - so it's not as easy 
 to debug since you cannot put line breaks in the Java file(s).
 Although not perfect, one way to fix this is to use:
 android:launchMode=singleTop
 In AndroidManifest.xml - since it ensures the app is 'resumed' instead of 
 restarted.
 I can provide a video upon request illustrating the issue.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Created] (CB-6819) Android set 'nativeToJsModes' to LOAD_URL, soft keyboard closed immediately when use 'input' element in html page

2014-05-30 Thread puchen (JIRA)
puchen created CB-6819:
--

 Summary: Android set 'nativeToJsModes' to LOAD_URL, soft keyboard 
closed immediately when use 'input' element in html page 
 Key: CB-6819
 URL: https://issues.apache.org/jira/browse/CB-6819
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android
Affects Versions: 3.5.0
 Environment: Android 4.3
Reporter: puchen


Android set 'nativeToJsModes' to LOAD_URL in cordova.js, and set 
'DEFAULT_BRIDGE_MODE' to 1 in NativeToJsMessageQueue.java.

When I loaded this:
!DOCTYPE html
html
  head
  /head
  body
input id=address1 type=text/
  /body
/html

Soft keyboard closed immediately that couldn't input anything, when click the 
input field. And it's so weird the soft keyboard could be use correctly, when I 
configured preference name=fullscreen value=true / in res/xml/config.xml.

Please fix it , thanks



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-5654) [BB10] make visible the version of the Cordova native lib

2014-05-30 Thread Marcel Kinard (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5654?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013594#comment-14013594
 ] 

Marcel Kinard commented on CB-5654:
---

Bryan, the driver for this task was for situations where cordova.js got 
out-of-sync with the native code, since I had a customer that did this on 
Android. So the goal was for the native side to log the Cordova version, so we 
could compare it to the Cordova version in cordova.js and inspect that they are 
the same. Strange behaviors can occur when the wrong version of cordova.js is 
paired with Cordova native code (i.e., change in the bridge behavior between 
versions).

My understanding is that there is no Android-like or iOS-like Cordova native 
side in BB10, it's WebWorks. So upon realizing this, it seems that this 
native-out-of-sync-with-js scenario isn't valid on BB10.

If you want to log the version from cordova.js somewhere during startup, that 
certainly sounds fine, but is different use case than the target here.

 [BB10] make visible the version of the Cordova native lib
 -

 Key: CB-5654
 URL: https://issues.apache.org/jira/browse/CB-5654
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: BlackBerry
Reporter: Marcel Kinard
Assignee: Bryan Higgins

 See the parent task.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6780) Createmobilespec fails in WP8 for non-CLI project

2014-05-30 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6780?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013599#comment-14013599
 ] 

ASF GitHub Bot commented on CB-6780:


Github user asfgit closed the pull request at:

https://github.com/apache/cordova-mobile-spec/pull/65


 Createmobilespec fails in WP8 for non-CLI project
 -

 Key: CB-6780
 URL: https://issues.apache.org/jira/browse/CB-6780
 Project: Apache Cordova
  Issue Type: Bug
  Components: mobile-spec
Reporter: Staci Cooper
Priority: Minor

 When running createmobilespec.js for wp8 using the --plugman flag, project 
 creation fails.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6780) Createmobilespec fails in WP8 for non-CLI project

2014-05-30 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6780?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013598#comment-14013598
 ] 

ASF subversion and git services commented on CB-6780:
-

Commit 5e4e04cf967eafc9063446215e0b4d8c95b881a1 in cordova-mobile-spec's branch 
refs/heads/master from [~stacic]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-mobile-spec.git;h=5e4e04c ]

CB-6780 Removed space from platform_layout for wp8

This closes #65


 Createmobilespec fails in WP8 for non-CLI project
 -

 Key: CB-6780
 URL: https://issues.apache.org/jira/browse/CB-6780
 Project: Apache Cordova
  Issue Type: Bug
  Components: mobile-spec
Reporter: Staci Cooper
Priority: Minor

 When running createmobilespec.js for wp8 using the --plugman flag, project 
 creation fails.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6780) Createmobilespec fails in WP8 for non-CLI project

2014-05-30 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6780?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013600#comment-14013600
 ] 

ASF GitHub Bot commented on CB-6780:


Github user cmarcelk commented on the pull request:

https://github.com/apache/cordova-mobile-spec/pull/65#issuecomment-44645617
  
Merged. Thanks!


 Createmobilespec fails in WP8 for non-CLI project
 -

 Key: CB-6780
 URL: https://issues.apache.org/jira/browse/CB-6780
 Project: Apache Cordova
  Issue Type: Bug
  Components: mobile-spec
Reporter: Staci Cooper
Priority: Minor

 When running createmobilespec.js for wp8 using the --plugman flag, project 
 creation fails.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-5654) [BB10] make visible the version of the Cordova native lib

2014-05-30 Thread Bryan Higgins (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5654?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013619#comment-14013619
 ] 

Bryan Higgins commented on CB-5654:
---

It's entirely possible for this scenario to occur on BB10 as well.

Unlike the JS-only platforms, BB10 does have an exec bridge. Rather than 
going directly to native, the call is handled by a privileged web view, aka 
the controller. This has access to the qnx.webplatform object which drives a 
lot of the APIs as well as the ability to load native code via an NPAPI plugin.

We recently did change the beahviour of the bridge to allow for async xhr 
rather than the default sync. So cordova-js 3.3 is not compatible with 
cordova-blackberry 3.4.

BTW, As of 2.0, WebWorks is a distribution of Cordova. We bundle a custom CLI 
and GUI with it, but otherwise it is functionally equivalent.

 [BB10] make visible the version of the Cordova native lib
 -

 Key: CB-5654
 URL: https://issues.apache.org/jira/browse/CB-5654
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: BlackBerry
Reporter: Marcel Kinard
Assignee: Bryan Higgins

 See the parent task.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Created] (CB-6820) iOS Media plugin: cannot play video and record audio simultaneously

2014-05-30 Thread Nikos Nakas (JIRA)
Nikos Nakas created CB-6820:
---

 Summary: iOS Media plugin: cannot play video and record audio 
simultaneously
 Key: CB-6820
 URL: https://issues.apache.org/jira/browse/CB-6820
 Project: Apache Cordova
  Issue Type: Bug
  Components: iOS, Plugin Media
Affects Versions: 3.5.0, 3.6.0
 Environment: iOS, all versions
Reporter: Nikos Nakas


Before the initiation of the recording process in iOS, the media API ensures 
that the application is recording-capable, by setting the category of the 
AVAudioSession to AVAudioSessionCategoryRecord. This behavior is incorrect in 
the case that the category is already set to the value of 
AVAudioSessionCategoryPlayAndRecord. Obviously in this case, the application 
already has recording capabilities, and changing the category to record-only 
deprives the app of being able to play video at the same time. 

The only possible workaround to this, is setting the AVAudioSession category to 
play-and-record after the recording has started, and then initiate video play. 
However, this may be unacceptable in various scenarios. Thus, the Media plugin 
should first check if the audio session is already configured for 
play-and-record, and if not, then set the session category to record-only.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6667) window.requestFileSystem - callbacks are not fired in a particular circumstance

2014-05-30 Thread Ian Clelland (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6667?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013634#comment-14013634
 ] 

Ian Clelland commented on CB-6667:
--

Thanks -- I'll test it out.

Incidentally, do you know what versions of Cordova and the File plugin you are 
using?

 window.requestFileSystem - callbacks are not fired in a particular 
 circumstance
 ---

 Key: CB-6667
 URL: https://issues.apache.org/jira/browse/CB-6667
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin File
Affects Versions: 3.4.0
 Environment: Mac OS X 10.9.2
 Android SDK (latest) - API v19
 Eclipse 4.2.2
Reporter: Kelvin Dart
Priority: Critical
  Labels: Android4.4.x, Cordova, androidmanifest.xml, window

 Excuse the essay, but I have a very odd issue that I have singled down to 
 Cordova which happens in a very specific circumstance on Android.
 I have provided a project of the stock Cordova Android project which can be 
 found here: http://www.filedropper.com/windowfstest - with a minor 
 modification for the issue I am having.
 I have uploaded a compiled APK to install to your device here: 
 http://www.filedropper.com/windowfstest140509-1404
 Steps to replicate are:
 1) Download and install that APK onto your device (I was using the Samsung 
 Galaxy S4 with Android 4.4.2 running, no root, and stock TouchWiz ROM, I 
 *hope* this occurs on other Android devices but have not had an opportunity 
 to verify).
 2) Start the application and observe an alert appears stating 'dr', then 
 afterwards another alert appears, 'got FS' - if you check the code, you'll 
 see this is normal from my app.initialize().
 3) Once those two alerts have appeared, press the Android 'home' button, to 
 quit to the main Android home screen.
 4) Go into another app or two and just use your phone normally. What we are 
 trying to achieve here is for the Android memory management system to 
 'end'/kill the WindowFSTest app in the backend.
 5) Go into Apps  WindowFSTest (i.e. the app in question) and hopefully it 
 will have restarted - the app has to have restarted for the bug to occur, and 
 observe a few things here:
 a) Verify the app has restarted, this can be verified by the 'dr' popup 
 occuring when Cordova loads.
 b) Once you are confident the app has been restarted, observe the initial 
 'dr' popup, but *not* the 'got FS' popup - this is the bug, the 
 window.requestFileSystem does not fire the callbacks for some reason - and I 
 do not know why.
 N.b. there are a few things to note here which is why the bug is tricky to 
 replicate AND I imagine will be even more difficult to debug at a lower level 
 ;-)
 1) The Android system has to kill the app in the backend once you've pressed 
 the 'home' button - there's no way of determining when this has happened, 
 just use the phone like ordinary for half a minute or so - normally it kills 
 it after a short period.
 2) The way to restart the app is via Apps  WindowFSTest (not via the task 
 manager).
 3) ***IMPORTANT*** the above two steps seem to occur only when you run it 
 from a compiled APK, not directly from source/debug APK - so it's not as easy 
 to debug since you cannot put line breaks in the Java file(s).
 Although not perfect, one way to fix this is to use:
 android:launchMode=singleTop
 In AndroidManifest.xml - since it ensures the app is 'resumed' instead of 
 restarted.
 I can provide a video upon request illustrating the issue.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6667) window.requestFileSystem - callbacks are not fired in a particular circumstance

2014-05-30 Thread Clayton Grassick (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6667?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013652#comment-14013652
 ] 

Clayton Grassick commented on CB-6667:
--

Personally, I'm on Cordova 3.5.0-0.2.4 and the file plugin was cloned within 
the last week.


 window.requestFileSystem - callbacks are not fired in a particular 
 circumstance
 ---

 Key: CB-6667
 URL: https://issues.apache.org/jira/browse/CB-6667
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin File
Affects Versions: 3.4.0
 Environment: Mac OS X 10.9.2
 Android SDK (latest) - API v19
 Eclipse 4.2.2
Reporter: Kelvin Dart
Priority: Critical
  Labels: Android4.4.x, Cordova, androidmanifest.xml, window

 Excuse the essay, but I have a very odd issue that I have singled down to 
 Cordova which happens in a very specific circumstance on Android.
 I have provided a project of the stock Cordova Android project which can be 
 found here: http://www.filedropper.com/windowfstest - with a minor 
 modification for the issue I am having.
 I have uploaded a compiled APK to install to your device here: 
 http://www.filedropper.com/windowfstest140509-1404
 Steps to replicate are:
 1) Download and install that APK onto your device (I was using the Samsung 
 Galaxy S4 with Android 4.4.2 running, no root, and stock TouchWiz ROM, I 
 *hope* this occurs on other Android devices but have not had an opportunity 
 to verify).
 2) Start the application and observe an alert appears stating 'dr', then 
 afterwards another alert appears, 'got FS' - if you check the code, you'll 
 see this is normal from my app.initialize().
 3) Once those two alerts have appeared, press the Android 'home' button, to 
 quit to the main Android home screen.
 4) Go into another app or two and just use your phone normally. What we are 
 trying to achieve here is for the Android memory management system to 
 'end'/kill the WindowFSTest app in the backend.
 5) Go into Apps  WindowFSTest (i.e. the app in question) and hopefully it 
 will have restarted - the app has to have restarted for the bug to occur, and 
 observe a few things here:
 a) Verify the app has restarted, this can be verified by the 'dr' popup 
 occuring when Cordova loads.
 b) Once you are confident the app has been restarted, observe the initial 
 'dr' popup, but *not* the 'got FS' popup - this is the bug, the 
 window.requestFileSystem does not fire the callbacks for some reason - and I 
 do not know why.
 N.b. there are a few things to note here which is why the bug is tricky to 
 replicate AND I imagine will be even more difficult to debug at a lower level 
 ;-)
 1) The Android system has to kill the app in the backend once you've pressed 
 the 'home' button - there's no way of determining when this has happened, 
 just use the phone like ordinary for half a minute or so - normally it kills 
 it after a short period.
 2) The way to restart the app is via Apps  WindowFSTest (not via the task 
 manager).
 3) ***IMPORTANT*** the above two steps seem to occur only when you run it 
 from a compiled APK, not directly from source/debug APK - so it's not as easy 
 to debug since you cannot put line breaks in the Java file(s).
 Although not perfect, one way to fix this is to use:
 android:launchMode=singleTop
 In AndroidManifest.xml - since it ensures the app is 'resumed' instead of 
 restarted.
 I can provide a video upon request illustrating the issue.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6820) iOS Media plugin: cannot play video and record audio simultaneously

2014-05-30 Thread Nikos Nakas (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6820?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013664#comment-14013664
 ] 

Nikos Nakas commented on CB-6820:
-

Github repo that fixes the issue: 
[https://github.com/apache/cordova-plugin-media]

 iOS Media plugin: cannot play video and record audio simultaneously
 ---

 Key: CB-6820
 URL: https://issues.apache.org/jira/browse/CB-6820
 Project: Apache Cordova
  Issue Type: Bug
  Components: iOS, Plugin Media
Affects Versions: 3.5.0, 3.6.0
 Environment: iOS, all versions
Reporter: Nikos Nakas
   Original Estimate: 10m
  Remaining Estimate: 10m

 Before the initiation of the recording process in iOS, the media API ensures 
 that the application is recording-capable, by setting the category of the 
 AVAudioSession to AVAudioSessionCategoryRecord. This behavior is incorrect 
 in the case that the category is already set to the value of 
 AVAudioSessionCategoryPlayAndRecord. Obviously in this case, the 
 application already has recording capabilities, and changing the category to 
 record-only deprives the app of being able to play video at the same time. 
 The only possible workaround to this, is setting the AVAudioSession category 
 to play-and-record after the recording has started, and then initiate video 
 play. However, this may be unacceptable in various scenarios. Thus, the Media 
 plugin should first check if the audio session is already configured for 
 play-and-record, and if not, then set the session category to record-only.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-5654) [BB10] make visible the version of the Cordova native lib

2014-05-30 Thread Bryan Higgins (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5654?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013681#comment-14013681
 ] 

Bryan Higgins commented on CB-5654:
---

https://github.com/apache/cordova-blackberry/pull/159

 [BB10] make visible the version of the Cordova native lib
 -

 Key: CB-5654
 URL: https://issues.apache.org/jira/browse/CB-5654
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: BlackBerry
Reporter: Marcel Kinard
Assignee: Bryan Higgins

 See the parent task.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-5654) [BB10] make visible the version of the Cordova native lib

2014-05-30 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5654?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013680#comment-14013680
 ] 

ASF GitHub Bot commented on CB-5654:


GitHub user bryanhiggins opened a pull request:

https://github.com/apache/cordova-blackberry/pull/159

CB-5654 Log 'native' Cordova version during framework bootstrap

cc @jsoref @jkeshavarzi 

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

$ git pull https://github.com/blackberry/cordova-blackberry CB-5654

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

https://github.com/apache/cordova-blackberry/pull/159.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 #159


commit 6c9f6f8931f3cc3d548896408faa938df136da06
Author: Bryan Higgins bhigg...@blackberry.com
Date:   2014-05-30T14:25:37Z

CB-5654 Log 'native' Cordova version during framework bootstrap




 [BB10] make visible the version of the Cordova native lib
 -

 Key: CB-5654
 URL: https://issues.apache.org/jira/browse/CB-5654
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: BlackBerry
Reporter: Marcel Kinard
Assignee: Bryan Higgins

 See the parent task.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Issue Comment Deleted] (CB-5654) [BB10] make visible the version of the Cordova native lib

2014-05-30 Thread Bryan Higgins (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-5654?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Bryan Higgins updated CB-5654:
--

Comment: was deleted

(was: https://github.com/apache/cordova-blackberry/pull/159)

 [BB10] make visible the version of the Cordova native lib
 -

 Key: CB-5654
 URL: https://issues.apache.org/jira/browse/CB-5654
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: BlackBerry
Reporter: Marcel Kinard
Assignee: Bryan Higgins

 See the parent task.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-5654) [BB10] make visible the version of the Cordova native lib

2014-05-30 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5654?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013723#comment-14013723
 ] 

ASF GitHub Bot commented on CB-5654:


Github user martincgg commented on the pull request:

https://github.com/apache/cordova-blackberry/pull/159#issuecomment-44659940
  
Yes I worked on something like it to print it out, and be able to see it 
using the webinspector.
You may want to use this proposed output:
Apache Cordova native platform version X.Y.Z is starting.
console.log(Apache Cordova native platform version  + 
config.cordovaVersion +  is starting)




 [BB10] make visible the version of the Cordova native lib
 -

 Key: CB-5654
 URL: https://issues.apache.org/jira/browse/CB-5654
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: BlackBerry
Reporter: Marcel Kinard
Assignee: Bryan Higgins

 See the parent task.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-5654) [BB10] make visible the version of the Cordova native lib

2014-05-30 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5654?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013724#comment-14013724
 ] 

ASF GitHub Bot commented on CB-5654:


Github user martincgg commented on the pull request:

https://github.com/apache/cordova-blackberry/pull/159#issuecomment-44660029
  
This will keep it consistent with the others platforms output.


 [BB10] make visible the version of the Cordova native lib
 -

 Key: CB-5654
 URL: https://issues.apache.org/jira/browse/CB-5654
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: BlackBerry
Reporter: Marcel Kinard
Assignee: Bryan Higgins

 See the parent task.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Created] (CB-6821) Cordova does not build under certain build settings

2014-05-30 Thread Song Zheng (JIRA)
Song Zheng created CB-6821:
--

 Summary: Cordova does not build under certain build settings
 Key: CB-6821
 URL: https://issues.apache.org/jira/browse/CB-6821
 Project: Apache Cordova
  Issue Type: Bug
  Components: iOS
Affects Versions: 3.5.0
 Environment: OSX 10.9.3, XCODE 5.1.1, iOS 7.1.1 (device)
Reporter: Song Zheng


1. Create a new project: cordova create projectName
2. Add iOS platform: cordova platform add ios
3. Open Xcode: open projectName/platform/ios/..xcodeproj
4. Change project settings:
* Valid Architectures: armv7 (remove arm64 and armv7s)
* Build Active Architecture Only - NO

Expected behavior: Compile and run on device

Result (error):
Undefined symbols for architecture armv7:
  _OBJC_METACLASS_$_CDVCommandDelegateImpl, referenced from:
  _OBJC_METACLASS_$_MainCommandDelegate in MainViewController.o
  _OBJC_CLASS_$_CDVCommandQueue, referenced from:
  _OBJC_CLASS_$_MainCommandQueue in MainViewController.o
  _OBJC_METACLASS_$_CDVViewController, referenced from:
  _OBJC_METACLASS_$_MainViewController in MainViewController.o
  _OBJC_METACLASS_$_CDVCommandQueue, referenced from:
  _OBJC_METACLASS_$_MainCommandQueue in MainViewController.o
  _CDVPluginHandleOpenURLNotification, referenced from:
  -[AppDelegate application:openURL:sourceApplication:annotation:] in 
AppDelegate.o
  _OBJC_CLASS_$_CDVViewController, referenced from:
  _OBJC_CLASS_$_MainViewController in MainViewController.o
  _CDVRemoteNotificationError, referenced from:
  -[AppDelegate 
application:didFailToRegisterForRemoteNotificationsWithError:] in AppDelegate.o
  _CDVRemoteNotification, referenced from:
  -[AppDelegate 
application:didRegisterForRemoteNotificationsWithDeviceToken:] in AppDelegate.o
  _OBJC_CLASS_$_CDVCommandDelegateImpl, referenced from:
  _OBJC_CLASS_$_MainCommandDelegate in MainViewController.o
  _CDVLocalNotification, referenced from:
  -[AppDelegate application:didReceiveLocalNotification:] in AppDelegate.o
ld: symbol(s) not found for architecture armv7
clang: error: linker command failed with exit code 1 (use -v to see invocation)




--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-5654) [BB10] make visible the version of the Cordova native lib

2014-05-30 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-5654?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013727#comment-14013727
 ] 

ASF GitHub Bot commented on CB-5654:


Github user bryanhiggins commented on the pull request:

https://github.com/apache/cordova-blackberry/pull/159#issuecomment-44660326
  
I hadn't noticed the change in the parent issue. I'll update it.


 [BB10] make visible the version of the Cordova native lib
 -

 Key: CB-5654
 URL: https://issues.apache.org/jira/browse/CB-5654
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: BlackBerry
Reporter: Marcel Kinard
Assignee: Bryan Higgins

 See the parent task.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6821) Cordova does not build under certain build settings

2014-05-30 Thread Song Zheng (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6821?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013728#comment-14013728
 ] 

Song Zheng commented on CB-6821:


This is blocking our users from upgrading from 3.4.0 to 3.5.0. OpenTok plugin 
requires removal of armv7s and arm64 because of its native SDK.

 Cordova does not build under certain build settings
 ---

 Key: CB-6821
 URL: https://issues.apache.org/jira/browse/CB-6821
 Project: Apache Cordova
  Issue Type: Bug
  Components: iOS
Affects Versions: 3.5.0
 Environment: OSX 10.9.3, XCODE 5.1.1, iOS 7.1.1 (device)
Reporter: Song Zheng

 1. Create a new project: cordova create projectName
 2. Add iOS platform: cordova platform add ios
 3. Open Xcode: open projectName/platform/ios/..xcodeproj
 4. Change project settings:
 * Valid Architectures: armv7 (remove arm64 and armv7s)
 * Build Active Architecture Only - NO
 Expected behavior: Compile and run on device
 Result (error):
 Undefined symbols for architecture armv7:
   _OBJC_METACLASS_$_CDVCommandDelegateImpl, referenced from:
   _OBJC_METACLASS_$_MainCommandDelegate in MainViewController.o
   _OBJC_CLASS_$_CDVCommandQueue, referenced from:
   _OBJC_CLASS_$_MainCommandQueue in MainViewController.o
   _OBJC_METACLASS_$_CDVViewController, referenced from:
   _OBJC_METACLASS_$_MainViewController in MainViewController.o
   _OBJC_METACLASS_$_CDVCommandQueue, referenced from:
   _OBJC_METACLASS_$_MainCommandQueue in MainViewController.o
   _CDVPluginHandleOpenURLNotification, referenced from:
   -[AppDelegate application:openURL:sourceApplication:annotation:] in 
 AppDelegate.o
   _OBJC_CLASS_$_CDVViewController, referenced from:
   _OBJC_CLASS_$_MainViewController in MainViewController.o
   _CDVRemoteNotificationError, referenced from:
   -[AppDelegate 
 application:didFailToRegisterForRemoteNotificationsWithError:] in 
 AppDelegate.o
   _CDVRemoteNotification, referenced from:
   -[AppDelegate 
 application:didRegisterForRemoteNotificationsWithDeviceToken:] in 
 AppDelegate.o
   _OBJC_CLASS_$_CDVCommandDelegateImpl, referenced from:
   _OBJC_CLASS_$_MainCommandDelegate in MainViewController.o
   _CDVLocalNotification, referenced from:
   -[AppDelegate application:didReceiveLocalNotification:] in AppDelegate.o
 ld: symbol(s) not found for architecture armv7
 clang: error: linker command failed with exit code 1 (use -v to see 
 invocation)



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6789) OSX - Fix header licenses (Apache RAT report)

2014-05-30 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6789?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013742#comment-14013742
 ] 

ASF subversion and git services commented on CB-6789:
-

Commit 1c612a2a313af060079caa17a13cc39d5fcc1911 in cordova-osx's branch 
refs/heads/master from [~cmarcelk]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-osx.git;h=1c612a2 ]

CB-6789 Add license to CONTRIBUTING.md


 OSX - Fix header licenses (Apache RAT report)
 -

 Key: CB-6789
 URL: https://issues.apache.org/jira/browse/CB-6789
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: OSX
Reporter: Shazron Abdullah

 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 25 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md
   ./CordovaLib/CordovaLib_Prefix.pch
   ./CordovaLib/CordovaLib/CordovaLib-Prefix.pch
   ./CordovaLib/CordovaLib/Classes/Commands/CDVReachability.h
   ./CordovaLib/CordovaLib/Classes/Commands/CDVReachability.m
   ./CordovaLib/CordovaLib/Classes/Utils/NSData+Base64.h
   ./CordovaLib/CordovaLib/Classes/Utils/NSData+Base64.m
   ./CordovaLibTests/CordovaLibTests-Prefix.pch
   ./CordovaLibTests/TestApp/MainViewController.xib
   ./CordovaLibTests/TestApp/TestApp-Prefix.pch
   ./CordovaLibTests/TestApp/config.xml
   ./CordovaLibTests/TestApp/en.lproj/Credits.rtf
   ./CordovaLibTests/TestApp/en.lproj/InfoPlist.strings
   ./CordovaLibTests/TestApp/en.lproj/MainViewController.strings
   ./CordovaLibTests/en.lproj/InfoPlist.strings
   ./patches/cordova-cli.patch
   ./templates/project/gitignore
   ./templates/project/__CDV_PRODUCT_NAME__/MainViewController.xib
   ./templates/project/__CDV_PRODUCT_NAME__/__CDV_PRODUCT_NAME__-Prefix.pch
   ./templates/project/__CDV_PRODUCT_NAME__/config.xml
   
 ./templates/project/__CDV_PRODUCT_NAME__/Images.xcassets/AppIcon.appiconset/Contents.json
   ./templates/project/__CDV_PRODUCT_NAME__/en.lproj/Credits.rtf
   ./templates/project/__CDV_PRODUCT_NAME__/en.lproj/InfoPlist.strings
   ./templates/project/__CDV_PRODUCT_NAME__/en.lproj/MainViewController.strings
   ./templates/scripts/cordova/build.xcconfig



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6790) Docs - Fix header licenses (Apache RAT report)

2014-05-30 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6790?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013744#comment-14013744
 ] 

ASF subversion and git services commented on CB-6790:
-

Commit 3c79d99b9982117398ba5adbcf24942f6c6a79fd in cordova-docs's branch 
refs/heads/master from [~cmarcelk]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-docs.git;h=3c79d99 ]

CB-6790 Add license to CONTRIBUTING.md


 Docs - Fix header licenses (Apache RAT report)
 --

 Key: CB-6790
 URL: https://issues.apache.org/jira/browse/CB-6790
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Docs
Reporter: Shazron Abdullah

 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 172 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md
   ./README.md
   ./docs/de/3.1.0/config.json
   ./docs/de/3.4.0/config.json
   ./docs/de/3.4.0/cordova/plugins/pluginapis.md
   ./docs/de/3.4.0/guide/platforms/amazonfireos/index.md
   ./docs/de/3.4.0/guide/support/index.md
   ./docs/de/3.5.0/config.json
   ./docs/de/3.5.0/cordova/plugins/pluginapis.md
   ./docs/de/3.5.0/guide/platforms/amazonfireos/index.md
   ./docs/de/3.5.0/guide/support/index.md
   ./docs/de/edge/config.json
   ./docs/de/edge/cordova/plugins/pluginapis.md
   ./docs/de/edge/guide/appdev/security/index.md
   ./docs/de/edge/guide/next/index.md
   ./docs/de/edge/guide/platforms/amazonfireos/index.md
   ./docs/de/edge/guide/platforms/wp8/vmware.md
   ./docs/de/edge/guide/support/index.md
   ./docs/en/1.5.0/config.json
   ./docs/en/1.6.0/config.json
   ./docs/en/1.6.1/config.json
   ./docs/en/1.7.0/config.json
   ./docs/en/1.8.0/config.json
   ./docs/en/1.8.1/config.json
   ./docs/en/1.9.0/config.json
   ./docs/en/2.0.0/config.json
   ./docs/en/2.1.0/config.json
   ./docs/en/2.2.0/config.json
   ./docs/en/2.3.0/config.json
   ./docs/en/2.4.0/config.json
   ./docs/en/2.5.0/config.json
   ./docs/en/2.6.0/config.json
   ./docs/en/2.7.0/config.json
   ./docs/en/2.8.0/config.json
   ./docs/en/2.9.0/config.json
   ./docs/en/3.0.0/config.json
   ./docs/en/3.1.0/config.json
   ./docs/en/3.2.0/config.json
   ./docs/en/3.3.0/config.json
   ./docs/en/3.4.0/config.json
   ./docs/en/3.5.0/config.json
   ./docs/en/3.5.0/guide/next/index.md
   ./docs/en/edge/config.json
   ./docs/en/edge/guide/next/index.md
   ./docs/es/3.1.0/config.json
   ./docs/es/3.4.0/config.json
   ./docs/es/3.5.0/config.json
   ./docs/es/edge/config.json
   ./docs/es/edge/guide/next/index.md
   ./docs/fr/3.1.0/config.json
   ./docs/fr/3.1.0/config.json~
   ./docs/fr/3.4.0/config.json
   ./docs/fr/3.4.0/config.json~
   ./docs/fr/3.4.0/cordova/plugins/pluginapis.md
   ./docs/fr/3.4.0/guide/platforms/amazonfireos/index.md
   ./docs/fr/3.4.0/guide/support/index.md
   ./docs/fr/3.5.0/config.json
   ./docs/fr/3.5.0/config.json~
   ./docs/fr/3.5.0/cordova/plugins/pluginapis.md
   ./docs/fr/3.5.0/guide/platforms/amazonfireos/index.md
   ./docs/fr/3.5.0/guide/platforms/wp8/vmware.md
   ./docs/fr/3.5.0/guide/support/index.md
   ./docs/fr/edge/config.json
   ./docs/fr/edge/config.json~
   ./docs/fr/edge/cordova/plugins/pluginapis.md
   ./docs/fr/edge/guide/appdev/security/index.md
   ./docs/fr/edge/guide/next/index.md
   ./docs/fr/edge/guide/platforms/amazonfireos/index.md
   ./docs/fr/edge/guide/platforms/wp8/vmware.md
   ./docs/fr/edge/guide/support/index.md
   ./docs/it/3.1.0/config.json
   ./docs/it/3.4.0/config.json
   ./docs/it/3.4.0/cordova/plugins/pluginapis.md
   ./docs/it/3.4.0/guide/platforms/amazonfireos/index.md
   ./docs/it/3.4.0/guide/support/index.md
   ./docs/it/3.5.0/config.json
   ./docs/it/3.5.0/cordova/plugins/pluginapis.md
   ./docs/it/3.5.0/guide/platforms/amazonfireos/index.md
   ./docs/it/3.5.0/guide/support/index.md
   ./docs/it/edge/config.json
   ./docs/it/edge/cordova/plugins/pluginapis.md
   ./docs/it/edge/guide/appdev/security/index.md
   ./docs/it/edge/guide/next/index.md
   ./docs/it/edge/guide/platforms/amazonfireos/index.md
   ./docs/it/edge/guide/platforms/wp8/vmware.md
   ./docs/it/edge/guide/support/index.md
   ./docs/ja/1.7.0/config.json
   ./docs/ja/1.8.1/config.json
   ./docs/ja/1.9.0/config.json
   ./docs/ja/2.0.0/config.json
   ./docs/ja/2.1.0/config.json
   ./docs/ja/2.2.0/config.json
   ./docs/ja/3.1.0/config.json
   ./docs/ja/3.4.0/config.json
   ./docs/ja/3.5.0/config.json
   ./docs/ja/edge/config.json
   ./docs/ja/edge/guide/next/index.md
   ./docs/ko/2.0.0/config.json
   ./docs/ko/2.0.0/cordova/connection/sedrJrM4w
   ./docs/ko/2.0.0/cordova/file/fileentry/sedvxcPGu
   ./docs/ko/3.1.0/config.json
   ./docs/ko/3.4.0/config.json
   ./docs/ko/3.5.0/config.json
   ./docs/ko/edge/config.json
   ./docs/ko/edge/guide/next/index.md
   

[jira] [Commented] (CB-6791) MobileSpec - Fix header licenses (Apache RAT report)

2014-05-30 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6791?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013747#comment-14013747
 ] 

ASF subversion and git services commented on CB-6791:
-

Commit 05a58016b13b8b39bf58059a382cb68914f08ae4 in cordova-mobile-spec's branch 
refs/heads/master from [~cmarcelk]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-mobile-spec.git;h=05a5801 ]

CB-6791 Add license to CONTRIBUTING.md


 MobileSpec - Fix header licenses (Apache RAT report)
 

 Key: CB-6791
 URL: https://issues.apache.org/jira/browse/CB-6791
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: mobile-spec
Reporter: Shazron Abdullah

 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 17 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md
   ./benchmarks/setImmediate.js
   ./cordova-plugin-echo/README.md
   ./cordova-plugin-echo/plugin.xml
   ./cordova-plugin-whitelist/README.md
   ./cordova-plugin-whitelist/plugin.xml



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6667) window.requestFileSystem - callbacks are not fired in a particular circumstance

2014-05-30 Thread Kelvin Dart (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6667?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013748#comment-14013748
 ] 

Kelvin Dart commented on CB-6667:
-

I'm just about to update and test 3.5.0 and report back to you.

 window.requestFileSystem - callbacks are not fired in a particular 
 circumstance
 ---

 Key: CB-6667
 URL: https://issues.apache.org/jira/browse/CB-6667
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin File
Affects Versions: 3.4.0
 Environment: Mac OS X 10.9.2
 Android SDK (latest) - API v19
 Eclipse 4.2.2
Reporter: Kelvin Dart
Priority: Critical
  Labels: Android4.4.x, Cordova, androidmanifest.xml, window

 Excuse the essay, but I have a very odd issue that I have singled down to 
 Cordova which happens in a very specific circumstance on Android.
 I have provided a project of the stock Cordova Android project which can be 
 found here: http://www.filedropper.com/windowfstest - with a minor 
 modification for the issue I am having.
 I have uploaded a compiled APK to install to your device here: 
 http://www.filedropper.com/windowfstest140509-1404
 Steps to replicate are:
 1) Download and install that APK onto your device (I was using the Samsung 
 Galaxy S4 with Android 4.4.2 running, no root, and stock TouchWiz ROM, I 
 *hope* this occurs on other Android devices but have not had an opportunity 
 to verify).
 2) Start the application and observe an alert appears stating 'dr', then 
 afterwards another alert appears, 'got FS' - if you check the code, you'll 
 see this is normal from my app.initialize().
 3) Once those two alerts have appeared, press the Android 'home' button, to 
 quit to the main Android home screen.
 4) Go into another app or two and just use your phone normally. What we are 
 trying to achieve here is for the Android memory management system to 
 'end'/kill the WindowFSTest app in the backend.
 5) Go into Apps  WindowFSTest (i.e. the app in question) and hopefully it 
 will have restarted - the app has to have restarted for the bug to occur, and 
 observe a few things here:
 a) Verify the app has restarted, this can be verified by the 'dr' popup 
 occuring when Cordova loads.
 b) Once you are confident the app has been restarted, observe the initial 
 'dr' popup, but *not* the 'got FS' popup - this is the bug, the 
 window.requestFileSystem does not fire the callbacks for some reason - and I 
 do not know why.
 N.b. there are a few things to note here which is why the bug is tricky to 
 replicate AND I imagine will be even more difficult to debug at a lower level 
 ;-)
 1) The Android system has to kill the app in the backend once you've pressed 
 the 'home' button - there's no way of determining when this has happened, 
 just use the phone like ordinary for half a minute or so - normally it kills 
 it after a short period.
 2) The way to restart the app is via Apps  WindowFSTest (not via the task 
 manager).
 3) ***IMPORTANT*** the above two steps seem to occur only when you run it 
 from a compiled APK, not directly from source/debug APK - so it's not as easy 
 to debug since you cannot put line breaks in the Java file(s).
 Although not perfect, one way to fix this is to use:
 android:launchMode=singleTop
 In AndroidManifest.xml - since it ensures the app is 'resumed' instead of 
 restarted.
 I can provide a video upon request illustrating the issue.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6792) CordovaJS - Fix header licenses (Apache RAT report)

2014-05-30 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6792?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013749#comment-14013749
 ] 

ASF subversion and git services commented on CB-6792:
-

Commit 00ee00f392ca3ffe3e95dbf61a162ee40cb2ad0c in cordova-js's branch 
refs/heads/master from [~cmarcelk]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-js.git;h=00ee00f ]

CB-6792 Add license to CONTRIBUTING.md


 CordovaJS - Fix header licenses (Apache RAT report)
 ---

 Key: CB-6792
 URL: https://issues.apache.org/jira/browse/CB-6792
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: CordovaJS
Reporter: Shazron Abdullah

 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 7 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md
   ./benchmarks/setImmediate.js
   ./cordova-plugin-echo/README.md
   ./cordova-plugin-echo/plugin.xml
   ./cordova-plugin-whitelist/README.md
   ./cordova-plugin-whitelist/plugin.xml



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6793) CordovaAppHelloWorld - Fix header licenses (Apache RAT report)

2014-05-30 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6793?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013750#comment-14013750
 ] 

ASF subversion and git services commented on CB-6793:
-

Commit 31dc6eb01671494bc177ec1aea2e1cffe3257b14 in cordova-app-hello-world's 
branch refs/heads/master from [~cmarcelk]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-app-hello-world.git;h=31dc6eb 
]

CB-6793 Add license to CONTRIBUTING.md


 CordovaAppHelloWorld - Fix header licenses (Apache RAT report)
 --

 Key: CB-6793
 URL: https://issues.apache.org/jira/browse/CB-6793
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: App Hello World
Reporter: Shazron Abdullah

 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 4 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md
   ./README.md
   ./res/README.md
   ./res/screen/tizen/README.md



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Assigned] (CB-6794) BatteryStatus - Fix header licenses (Apache RAT report)

2014-05-30 Thread Marcel Kinard (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-6794?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Marcel Kinard reassigned CB-6794:
-

Assignee: Marcel Kinard

 BatteryStatus - Fix header licenses (Apache RAT report)
 ---

 Key: CB-6794
 URL: https://issues.apache.org/jira/browse/CB-6794
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Plugin Battery Status
Reporter: Shazron Abdullah
Assignee: Marcel Kinard
 Fix For: 3.6.0


 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 1 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Resolved] (CB-6794) BatteryStatus - Fix header licenses (Apache RAT report)

2014-05-30 Thread Marcel Kinard (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-6794?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Marcel Kinard resolved CB-6794.
---

   Resolution: Fixed
Fix Version/s: 3.6.0

 BatteryStatus - Fix header licenses (Apache RAT report)
 ---

 Key: CB-6794
 URL: https://issues.apache.org/jira/browse/CB-6794
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Plugin Battery Status
Reporter: Shazron Abdullah
Assignee: Marcel Kinard
 Fix For: 3.6.0


 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 1 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6794) BatteryStatus - Fix header licenses (Apache RAT report)

2014-05-30 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6794?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013753#comment-14013753
 ] 

ASF subversion and git services commented on CB-6794:
-

Commit 9d14a01284c59b2e2c4981c04455bfdf3c8fcd3b in 
cordova-plugin-battery-status's branch refs/heads/master from [~cmarcelk]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-battery-status.git;h=9d14a01
 ]

CB-6794 Add license for CONTRIBUTING.md


 BatteryStatus - Fix header licenses (Apache RAT report)
 ---

 Key: CB-6794
 URL: https://issues.apache.org/jira/browse/CB-6794
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Plugin Battery Status
Reporter: Shazron Abdullah
 Fix For: 3.6.0


 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 1 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Resolved] (CB-6797) Contacts - Fix header licenses (Apache RAT report)

2014-05-30 Thread Marcel Kinard (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-6797?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Marcel Kinard resolved CB-6797.
---

   Resolution: Fixed
Fix Version/s: 3.6.0

 Contacts - Fix header licenses (Apache RAT report)
 --

 Key: CB-6797
 URL: https://issues.apache.org/jira/browse/CB-6797
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Plugin Contacts
Reporter: Shazron Abdullah
Assignee: Marcel Kinard
 Fix For: 3.6.0


 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 1 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6797) Contacts - Fix header licenses (Apache RAT report)

2014-05-30 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6797?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013773#comment-14013773
 ] 

ASF subversion and git services commented on CB-6797:
-

Commit 31368195823e9be09ce98f6833f934f9bcc14ba7 in cordova-plugin-contacts's 
branch refs/heads/master from [~cmarcelk]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-contacts.git;h=3136819 
]

CB-6797 Add license


 Contacts - Fix header licenses (Apache RAT report)
 --

 Key: CB-6797
 URL: https://issues.apache.org/jira/browse/CB-6797
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Plugin Contacts
Reporter: Shazron Abdullah
 Fix For: 3.6.0


 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 1 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6796) Console - Fix header licenses (Apache RAT report)

2014-05-30 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6796?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013775#comment-14013775
 ] 

ASF subversion and git services commented on CB-6796:
-

Commit 9b8e92589deb2f0657354c4d210b0ecd6e090a9c in cordova-plugin-console's 
branch refs/heads/master from [~cmarcelk]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-console.git;h=9b8e925 ]

CB-6796 Add license


 Console - Fix header licenses (Apache RAT report)
 -

 Key: CB-6796
 URL: https://issues.apache.org/jira/browse/CB-6796
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Plugin Console
Reporter: Shazron Abdullah

 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 1 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Assigned] (CB-6797) Contacts - Fix header licenses (Apache RAT report)

2014-05-30 Thread Marcel Kinard (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-6797?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Marcel Kinard reassigned CB-6797:
-

Assignee: Marcel Kinard

 Contacts - Fix header licenses (Apache RAT report)
 --

 Key: CB-6797
 URL: https://issues.apache.org/jira/browse/CB-6797
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Plugin Contacts
Reporter: Shazron Abdullah
Assignee: Marcel Kinard
 Fix For: 3.6.0


 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 1 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Resolved] (CB-6795) Camera - Fix header licenses (Apache RAT report)

2014-05-30 Thread Marcel Kinard (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-6795?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Marcel Kinard resolved CB-6795.
---

   Resolution: Fixed
Fix Version/s: 3.6.0

 Camera - Fix header licenses (Apache RAT report)
 

 Key: CB-6795
 URL: https://issues.apache.org/jira/browse/CB-6795
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Plugin Camera
Reporter: Shazron Abdullah
Assignee: Marcel Kinard
 Fix For: 3.6.0


 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 1 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Assigned] (CB-6796) Console - Fix header licenses (Apache RAT report)

2014-05-30 Thread Marcel Kinard (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-6796?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Marcel Kinard reassigned CB-6796:
-

Assignee: Marcel Kinard

 Console - Fix header licenses (Apache RAT report)
 -

 Key: CB-6796
 URL: https://issues.apache.org/jira/browse/CB-6796
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Plugin Console
Reporter: Shazron Abdullah
Assignee: Marcel Kinard
 Fix For: 3.6.0


 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 1 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6795) Camera - Fix header licenses (Apache RAT report)

2014-05-30 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6795?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013779#comment-14013779
 ] 

ASF subversion and git services commented on CB-6795:
-

Commit 6e93ebbf90d404a91976d91b05963958ebcc50b3 in cordova-plugin-camera's 
branch refs/heads/master from [~cmarcelk]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-camera.git;h=6e93ebb 
]

CB-6795 Add license


 Camera - Fix header licenses (Apache RAT report)
 

 Key: CB-6795
 URL: https://issues.apache.org/jira/browse/CB-6795
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Plugin Camera
Reporter: Shazron Abdullah
 Fix For: 3.6.0


 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 1 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Assigned] (CB-6795) Camera - Fix header licenses (Apache RAT report)

2014-05-30 Thread Marcel Kinard (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-6795?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Marcel Kinard reassigned CB-6795:
-

Assignee: Marcel Kinard

 Camera - Fix header licenses (Apache RAT report)
 

 Key: CB-6795
 URL: https://issues.apache.org/jira/browse/CB-6795
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Plugin Camera
Reporter: Shazron Abdullah
Assignee: Marcel Kinard
 Fix For: 3.6.0


 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 1 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Resolved] (CB-6796) Console - Fix header licenses (Apache RAT report)

2014-05-30 Thread Marcel Kinard (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-6796?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Marcel Kinard resolved CB-6796.
---

   Resolution: Fixed
Fix Version/s: 3.6.0

 Console - Fix header licenses (Apache RAT report)
 -

 Key: CB-6796
 URL: https://issues.apache.org/jira/browse/CB-6796
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Plugin Console
Reporter: Shazron Abdullah
Assignee: Marcel Kinard
 Fix For: 3.6.0


 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 1 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6799) DeviceOrientation - Fix header licenses (Apache RAT report)

2014-05-30 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6799?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013781#comment-14013781
 ] 

ASF subversion and git services commented on CB-6799:
-

Commit 9bc423854aacd3cf9083b925c585f03ad79607ae in 
cordova-plugin-device-orientation's branch refs/heads/master from [~cmarcelk]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-device-orientation.git;h=9bc4238
 ]

CB-6799 Add license


 DeviceOrientation - Fix header licenses (Apache RAT report)
 ---

 Key: CB-6799
 URL: https://issues.apache.org/jira/browse/CB-6799
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Plugin Device Orientation
Reporter: Shazron Abdullah
 Fix For: 3.6.0


 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 1 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Assigned] (CB-6798) DeviceMotion - Fix header licenses (Apache RAT report)

2014-05-30 Thread Marcel Kinard (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-6798?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Marcel Kinard reassigned CB-6798:
-

Assignee: Marcel Kinard

 DeviceMotion - Fix header licenses (Apache RAT report)
 --

 Key: CB-6798
 URL: https://issues.apache.org/jira/browse/CB-6798
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Plugin Device Motion
Reporter: Shazron Abdullah
Assignee: Marcel Kinard
 Fix For: 3.6.0


 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 1 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Assigned] (CB-6799) DeviceOrientation - Fix header licenses (Apache RAT report)

2014-05-30 Thread Marcel Kinard (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-6799?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Marcel Kinard reassigned CB-6799:
-

Assignee: Marcel Kinard

 DeviceOrientation - Fix header licenses (Apache RAT report)
 ---

 Key: CB-6799
 URL: https://issues.apache.org/jira/browse/CB-6799
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Plugin Device Orientation
Reporter: Shazron Abdullah
Assignee: Marcel Kinard
 Fix For: 3.6.0


 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 1 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6798) DeviceMotion - Fix header licenses (Apache RAT report)

2014-05-30 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6798?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013783#comment-14013783
 ] 

ASF subversion and git services commented on CB-6798:
-

Commit 0b30af4d9cf92d1eb220334b6f0862fd7d9dbeb5 in 
cordova-plugin-device-motion's branch refs/heads/master from [~cmarcelk]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-device-motion.git;h=0b30af4
 ]

CB-6798 Add license


 DeviceMotion - Fix header licenses (Apache RAT report)
 --

 Key: CB-6798
 URL: https://issues.apache.org/jira/browse/CB-6798
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Plugin Device Motion
Reporter: Shazron Abdullah
 Fix For: 3.6.0


 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 1 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Resolved] (CB-6798) DeviceMotion - Fix header licenses (Apache RAT report)

2014-05-30 Thread Marcel Kinard (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-6798?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Marcel Kinard resolved CB-6798.
---

   Resolution: Fixed
Fix Version/s: 3.6.0

 DeviceMotion - Fix header licenses (Apache RAT report)
 --

 Key: CB-6798
 URL: https://issues.apache.org/jira/browse/CB-6798
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Plugin Device Motion
Reporter: Shazron Abdullah
Assignee: Marcel Kinard
 Fix For: 3.6.0


 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 1 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Resolved] (CB-6799) DeviceOrientation - Fix header licenses (Apache RAT report)

2014-05-30 Thread Marcel Kinard (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-6799?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Marcel Kinard resolved CB-6799.
---

   Resolution: Fixed
Fix Version/s: 3.6.0

 DeviceOrientation - Fix header licenses (Apache RAT report)
 ---

 Key: CB-6799
 URL: https://issues.apache.org/jira/browse/CB-6799
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Plugin Device Orientation
Reporter: Shazron Abdullah
Assignee: Marcel Kinard
 Fix For: 3.6.0


 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 1 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6802) FileTransfer - Fix header licenses (Apache RAT report)

2014-05-30 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6802?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013786#comment-14013786
 ] 

ASF subversion and git services commented on CB-6802:
-

Commit ef0853dbe8f3be254c3959b7b4bad64520dd645d in 
cordova-plugin-file-transfer's branch refs/heads/master from [~cmarcelk]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-file-transfer.git;h=ef0853d
 ]

CB-6802 Add license


 FileTransfer - Fix header licenses (Apache RAT report)
 --

 Key: CB-6802
 URL: https://issues.apache.org/jira/browse/CB-6802
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Plugin File Transfer
Reporter: Shazron Abdullah
 Fix For: 3.6.0


 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 1 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Resolved] (CB-6802) FileTransfer - Fix header licenses (Apache RAT report)

2014-05-30 Thread Marcel Kinard (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-6802?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Marcel Kinard resolved CB-6802.
---

   Resolution: Fixed
Fix Version/s: 3.6.0

 FileTransfer - Fix header licenses (Apache RAT report)
 --

 Key: CB-6802
 URL: https://issues.apache.org/jira/browse/CB-6802
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Plugin File Transfer
Reporter: Shazron Abdullah
Assignee: Marcel Kinard
 Fix For: 3.6.0


 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 1 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Assigned] (CB-6802) FileTransfer - Fix header licenses (Apache RAT report)

2014-05-30 Thread Marcel Kinard (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-6802?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Marcel Kinard reassigned CB-6802:
-

Assignee: Marcel Kinard

 FileTransfer - Fix header licenses (Apache RAT report)
 --

 Key: CB-6802
 URL: https://issues.apache.org/jira/browse/CB-6802
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Plugin File Transfer
Reporter: Shazron Abdullah
Assignee: Marcel Kinard
 Fix For: 3.6.0


 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 1 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Resolved] (CB-6801) Dialogs - Fix header licenses (Apache RAT report)

2014-05-30 Thread Marcel Kinard (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-6801?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Marcel Kinard resolved CB-6801.
---

   Resolution: Fixed
Fix Version/s: 3.6.0

 Dialogs - Fix header licenses (Apache RAT report)
 -

 Key: CB-6801
 URL: https://issues.apache.org/jira/browse/CB-6801
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Plugin Dialogs
Reporter: Shazron Abdullah
Assignee: Marcel Kinard
 Fix For: 3.6.0


 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 1 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6801) Dialogs - Fix header licenses (Apache RAT report)

2014-05-30 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6801?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013789#comment-14013789
 ] 

ASF subversion and git services commented on CB-6801:
-

Commit 8d8d7154ac2bab34ff91a8baf8f9e102ce1ca883 in cordova-plugin-dialogs's 
branch refs/heads/master from [~cmarcelk]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-dialogs.git;h=8d8d715 ]

CB-6801 Add license


 Dialogs - Fix header licenses (Apache RAT report)
 -

 Key: CB-6801
 URL: https://issues.apache.org/jira/browse/CB-6801
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Plugin Dialogs
Reporter: Shazron Abdullah
 Fix For: 3.6.0


 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 1 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Assigned] (CB-6803) File - Fix header licenses (Apache RAT report)

2014-05-30 Thread Marcel Kinard (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-6803?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Marcel Kinard reassigned CB-6803:
-

Assignee: Marcel Kinard

 File - Fix header licenses (Apache RAT report)
 --

 Key: CB-6803
 URL: https://issues.apache.org/jira/browse/CB-6803
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Plugin File
Reporter: Shazron Abdullah
Assignee: Marcel Kinard
 Fix For: 3.6.0


 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 1 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Assigned] (CB-6801) Dialogs - Fix header licenses (Apache RAT report)

2014-05-30 Thread Marcel Kinard (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-6801?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Marcel Kinard reassigned CB-6801:
-

Assignee: Marcel Kinard

 Dialogs - Fix header licenses (Apache RAT report)
 -

 Key: CB-6801
 URL: https://issues.apache.org/jira/browse/CB-6801
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Plugin Dialogs
Reporter: Shazron Abdullah
Assignee: Marcel Kinard
 Fix For: 3.6.0


 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 1 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Resolved] (CB-6803) File - Fix header licenses (Apache RAT report)

2014-05-30 Thread Marcel Kinard (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-6803?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Marcel Kinard resolved CB-6803.
---

   Resolution: Fixed
Fix Version/s: 3.6.0

 File - Fix header licenses (Apache RAT report)
 --

 Key: CB-6803
 URL: https://issues.apache.org/jira/browse/CB-6803
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Plugin File
Reporter: Shazron Abdullah
Assignee: Marcel Kinard
 Fix For: 3.6.0


 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 1 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Resolved] (CB-6806) InAppBrowser - Fix header licenses (Apache RAT report)

2014-05-30 Thread Marcel Kinard (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-6806?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Marcel Kinard resolved CB-6806.
---

   Resolution: Fixed
Fix Version/s: 3.6.0

 InAppBrowser - Fix header licenses (Apache RAT report)
 --

 Key: CB-6806
 URL: https://issues.apache.org/jira/browse/CB-6806
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Plugin InAppBrowser
Reporter: Shazron Abdullah
Assignee: Marcel Kinard
 Fix For: 3.6.0


 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 1 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Resolved] (CB-6804) Geolocation - Fix header licenses (Apache RAT report)

2014-05-30 Thread Marcel Kinard (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-6804?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Marcel Kinard resolved CB-6804.
---

   Resolution: Fixed
Fix Version/s: 3.6.0

 Geolocation - Fix header licenses (Apache RAT report)
 -

 Key: CB-6804
 URL: https://issues.apache.org/jira/browse/CB-6804
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Plugin Geolocation
Reporter: Shazron Abdullah
Assignee: Marcel Kinard
 Fix For: 3.6.0


 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 1 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6804) Geolocation - Fix header licenses (Apache RAT report)

2014-05-30 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6804?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013798#comment-14013798
 ] 

ASF subversion and git services commented on CB-6804:
-

Commit ddfa62ea4a25f67465087da56e2f84400b3c6b23 in cordova-plugin-geolocation's 
branch refs/heads/master from [~cmarcelk]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-geolocation.git;h=ddfa62e
 ]

CB-6804 Add license


 Geolocation - Fix header licenses (Apache RAT report)
 -

 Key: CB-6804
 URL: https://issues.apache.org/jira/browse/CB-6804
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Plugin Geolocation
Reporter: Shazron Abdullah
 Fix For: 3.6.0


 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 1 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Assigned] (CB-6807) Media - Fix header licenses (Apache RAT report)

2014-05-30 Thread Marcel Kinard (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-6807?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Marcel Kinard reassigned CB-6807:
-

Assignee: Marcel Kinard

 Media - Fix header licenses (Apache RAT report)
 ---

 Key: CB-6807
 URL: https://issues.apache.org/jira/browse/CB-6807
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Plugin Media
Reporter: Shazron Abdullah
Assignee: Marcel Kinard
 Fix For: 3.6.0


 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 1 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6811) Vibration - Fix header licenses (Apache RAT report)

2014-05-30 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6811?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013804#comment-14013804
 ] 

ASF subversion and git services commented on CB-6811:
-

Commit 0b08297f751a006fed63228807b8c9d8383ef832 in cordova-plugin-vibration's 
branch refs/heads/master from [~cmarcelk]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-vibration.git;h=0b08297
 ]

CB-6811 Add license to CONTRIBUTING.md


 Vibration - Fix header licenses (Apache RAT report)
 ---

 Key: CB-6811
 URL: https://issues.apache.org/jira/browse/CB-6811
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Plugin Vibration
Reporter: Shazron Abdullah

 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 3 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md
   ./src/blackberry10/native/public/tokenizer.cpp
   ./src/blackberry10/native/public/tokenizer.h



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6807) Media - Fix header licenses (Apache RAT report)

2014-05-30 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6807?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013801#comment-14013801
 ] 

ASF subversion and git services commented on CB-6807:
-

Commit eb31b31082beea6e4e18d0e01e362f4f54d3743c in cordova-plugin-media's 
branch refs/heads/master from [~cmarcelk]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-media.git;h=eb31b31 ]

CB-6807 Add license


 Media - Fix header licenses (Apache RAT report)
 ---

 Key: CB-6807
 URL: https://issues.apache.org/jira/browse/CB-6807
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Plugin Media
Reporter: Shazron Abdullah
 Fix For: 3.6.0


 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 1 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6813) CLI - Fix header licenses (Apache RAT report)

2014-05-30 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6813?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013809#comment-14013809
 ] 

ASF subversion and git services commented on CB-6813:
-

Commit 7b75074ee63af0d712fbba7f6be11e4b04fe5aaf in cordova-cli's branch 
refs/heads/master from [~cmarcelk]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-cli.git;h=7b75074 ]

CB-6813 Add license to CONTRIBUTING.md


 CLI - Fix header licenses (Apache RAT report)
 -

 Key: CB-6813
 URL: https://issues.apache.org/jira/browse/CB-6813
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: CLI
Reporter: Shazron Abdullah

 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 4 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md
   ./cordova.js
   ./bin/cordova.cmd
   ./doc/help.txt



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6812) Statusbar - Fix header licenses (Apache RAT report)

2014-05-30 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6812?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013811#comment-14013811
 ] 

ASF subversion and git services commented on CB-6812:
-

Commit 4cfee575a1d54ffcc09767dce4db8e4944d26047 in cordova-plugin-statusbar's 
branch refs/heads/master from [~cmarcelk]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-statusbar.git;h=4cfee57
 ]

CB-6812 Add license


 Statusbar - Fix header licenses (Apache RAT report)
 ---

 Key: CB-6812
 URL: https://issues.apache.org/jira/browse/CB-6812
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Plugin Statusbar
Reporter: Shazron Abdullah
 Fix For: 3.6.0


 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 1 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Resolved] (CB-6810) Splashscreen - Fix header licenses (Apache RAT report)

2014-05-30 Thread Marcel Kinard (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-6810?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Marcel Kinard resolved CB-6810.
---

   Resolution: Fixed
Fix Version/s: 3.6.0
 Assignee: Marcel Kinard

 Splashscreen - Fix header licenses (Apache RAT report)
 --

 Key: CB-6810
 URL: https://issues.apache.org/jira/browse/CB-6810
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Plugin SplashScreen
Reporter: Shazron Abdullah
Assignee: Marcel Kinard
 Fix For: 3.6.0


 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 1 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Resolved] (CB-6812) Statusbar - Fix header licenses (Apache RAT report)

2014-05-30 Thread Marcel Kinard (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-6812?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Marcel Kinard resolved CB-6812.
---

   Resolution: Fixed
Fix Version/s: 3.6.0
 Assignee: Marcel Kinard

 Statusbar - Fix header licenses (Apache RAT report)
 ---

 Key: CB-6812
 URL: https://issues.apache.org/jira/browse/CB-6812
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Plugin Statusbar
Reporter: Shazron Abdullah
Assignee: Marcel Kinard
 Fix For: 3.6.0


 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 1 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6810) Splashscreen - Fix header licenses (Apache RAT report)

2014-05-30 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6810?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013810#comment-14013810
 ] 

ASF subversion and git services commented on CB-6810:
-

Commit 30661dbb4253d1958a1ef8b627c9a578a0d36d35 in 
cordova-plugin-splashscreen's branch refs/heads/master from [~cmarcelk]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-splashscreen.git;h=30661db
 ]

CB-6810 Add license to CONTRIBUTING.md


 Splashscreen - Fix header licenses (Apache RAT report)
 --

 Key: CB-6810
 URL: https://issues.apache.org/jira/browse/CB-6810
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Plugin SplashScreen
Reporter: Shazron Abdullah
 Fix For: 3.6.0


 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 1 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Resolved] (CB-6807) Media - Fix header licenses (Apache RAT report)

2014-05-30 Thread Marcel Kinard (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-6807?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Marcel Kinard resolved CB-6807.
---

   Resolution: Fixed
Fix Version/s: 3.6.0

 Media - Fix header licenses (Apache RAT report)
 ---

 Key: CB-6807
 URL: https://issues.apache.org/jira/browse/CB-6807
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Plugin Media
Reporter: Shazron Abdullah
Assignee: Marcel Kinard
 Fix For: 3.6.0


 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 1 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6816) Coho - Fix header licenses (Apache RAT report)

2014-05-30 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6816?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013813#comment-14013813
 ] 

ASF subversion and git services commented on CB-6816:
-

Commit 87d9c3de37a66006ff12cdfd7c606364ce0bee69 in cordova-coho's branch 
refs/heads/master from [~cmarcelk]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-coho.git;h=87d9c3d ]

CB-6816 Add license to CONTRIBUTING.md


 Coho - Fix header licenses (Apache RAT report)
 --

 Key: CB-6816
 URL: https://issues.apache.org/jira/browse/CB-6816
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Coho
Reporter: Shazron Abdullah

 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 15 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md
   ./README.md
   ./coho.cmd
   ./bin/README.md
   ./docs/cadence-release-process.md
   ./docs/code-reviews.md
   ./docs/committer-workflow.md
   ./docs/index.md
   ./docs/plugins-release-process.md
   ./docs/processing-pull-requests.md
   ./docs/release-voting.md
   ./docs/setting-up-gpg.md
   ./docs/storing-repo-versions-design.md
   ./docs/tools-release-process.md
   ./docs/versioning-and-release-strategy.md



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6814) Plugman - Fix header licenses (Apache RAT report)

2014-05-30 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6814?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013815#comment-14013815
 ] 

ASF subversion and git services commented on CB-6814:
-

Commit 56da8787a6af6321d9a66587e659b9b35b72ca0d in cordova-plugman's branch 
refs/heads/master from [~cmarcelk]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-plugman.git;h=56da878 ]

CB-6814 Add license to CONTRIBUTING.md


 Plugman - Fix header licenses (Apache RAT report)
 -

 Key: CB-6814
 URL: https://issues.apache.org/jira/browse/CB-6814
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Plugman
Reporter: Shazron Abdullah

 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 6 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md
   ./README.md
   ./config.js
   ./plugman.js
   ./doc/help.txt
   ./src/help.js



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6787) Windows8 - Fix header licenses (Apache RAT report)

2014-05-30 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6787?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013819#comment-14013819
 ] 

ASF subversion and git services commented on CB-6787:
-

Commit 90a6e4e620d6fd59ac80031e5d35aa1d6f3d3ff7 in cordova-windows's branch 
refs/heads/master from [~cmarcelk]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-windows.git;h=90a6e4e ]

CB-6787 Add license to windows8/CONTRIBUTING.md


 Windows8 - Fix header licenses (Apache RAT report)
 --

 Key: CB-6787
 URL: https://issues.apache.org/jira/browse/CB-6787
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Windows 8
Reporter: Shazron Abdullah

 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 42 Unknown Licenses
 ***
 Unapproved licenses:
   ./README.md
   ./windows7/Cordova.sln
   ./windows7/Cordova/Cordova.vcxproj
   ./windows7/Cordova/Cordova.vcxproj.filters
   ./windows7/Cordova/lib/js/exec.js
   ./windows7/Cordova/lib/js/platform.js
   ./windows7/Cordova/lib/js/plugin/win7/SQLError.js
   ./windows7/Cordova/lib/js/plugin/win7/device.js
   ./windows7/Cordova/lib/js/plugin/win7/jsHandler.js
   ./windows7/Cordova/lib/js/plugin/win7/storage.js
   ./windows7/Cordova/lib/sqlite/sqlite3.c
   ./windows7/Cordova/lib/sqlite/sqlite3.h
   ./windows7/Cordova/www/accel_game.css
   ./windows7/Cordova/www/accel_game.html
   ./windows7/Cordova/www/accel_game.js
   ./windows7/Cordova/www/capture.html
   ./windows7/Cordova/www/device.html
   ./windows7/Cordova/www/events.html
   ./windows7/Cordova/www/file.html
   ./windows7/Cordova/www/index.html
   ./windows7/Cordova/www/network.html
   ./windows7/Cordova/www/notification.html
   ./windows7/Cordova/www/storage.html
   ./windows8/CONTRIBUTING.md
   ./windows8/bin/check_reqs.bat
   ./windows8/bin/create.bat
   ./windows8/bin/update.bat
   ./windows8/template/CordovaApp.jsproj
   ./windows8/template/CordovaApp.sln
   ./windows8/template/MyTemplate.vstemplate
   ./windows8/template/package.appxmanifest
   ./windows8/template/cordova/build.bat
   ./windows8/template/cordova/clean.bat
   ./windows8/template/cordova/log.bat
   ./windows8/template/cordova/run.bat
   ./windows8/template/cordova/version.bat
   ./windows8/template/cordova/lib/list-devices.bat
   ./windows8/template/cordova/lib/list-emulator-images.bat
   ./windows8/template/cordova/lib/list-started-emulators.bat
   ./windows8/tests/testCreateProject.bat
   ./windows8/tooling/CordovaWindows8Deploy/CordovaWindows8Deploy.cpp
   ./windows8/tooling/CordovaWindows8Deploy/CordovaWindows8Deploy.vcxproj



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6786) BlackBerry - Fix header licenses (Apache RAT report)

2014-05-30 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6786?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013823#comment-14013823
 ] 

ASF subversion and git services commented on CB-6786:
-

Commit 05d0b2787e33e3573345eb4c569521f44844e835 in cordova-blackberry's branch 
refs/heads/master from [~cmarcelk]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-blackberry.git;h=05d0b27 ]

CB-6786 Add license to CONTRIBUTING.md


 BlackBerry - Fix header licenses (Apache RAT report)
 

 Key: CB-6786
 URL: https://issues.apache.org/jira/browse/CB-6786
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: BlackBerry
Reporter: Shazron Abdullah

 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 13 Unknown Licenses
 ***
 Unapproved licenses:
   ./README.md
   ./blackberry10/CONTRIBUTING.md
   ./blackberry10/README.md
   ./blackberry10/bin/whereis.cmd
   
 ./blackberry10/bin/templates/project/cordova/third_party/data2xml/data2xml.js
   ./blackberry10/bin/templates/project/native/device/wwe
   ./blackberry10/bin/templates/project/native/device/plugins/jnext/auth.txt
   ./blackberry10/bin/templates/project/native/simulator/wwe
   ./blackberry10/bin/templates/project/native/simulator/plugins/jnext/auth.txt
   ./blackberry10/bin/test/cordova/unit/params-bad.json
   ./blackberry10/bin/test/cordova/unit/params.json
   ./blackberry10/bin/test/cordova/unit/data/ascii_text.txt
   ./blackberry10/bin/test/cordova/unit/data/utf8_text.txt



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6788) WP8 - Fix header licenses (Apache RAT report)

2014-05-30 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6788?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013821#comment-14013821
 ] 

ASF subversion and git services commented on CB-6788:
-

Commit 46a7d12875742e167028f75a2b887af0207658e5 in cordova-wp8's branch 
refs/heads/master from [~cmarcelk]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-wp8.git;h=46a7d12 ]

CB-6788 Add license to CONTRIBUTING.md


 WP8 - Fix header licenses (Apache RAT report)
 -

 Key: CB-6788
 URL: https://issues.apache.org/jira/browse/CB-6788
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: WP8
Reporter: Shazron Abdullah

 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 39 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md
   ./RELEASENOTES.md
   ./createTemplates.bat
   ./wp8/bin/check_reqs.bat
   ./wp8/bin/create.bat
   ./wp8/bin/update.bat
   ./wp8/framework/WPCordovaClassLib.sln
   ./wp8/framework/Properties/AssemblyInfo.cs
   ./wp8/template/CordovaWP8Solution.sln
   ./wp8/template/MyTemplate.vstemplate
   ./wp8/template/Properties/AppManifest.xml
   ./wp8/template/Properties/AssemblyInfo.cs
   ./wp8/template/Properties/WMAppManifest.xml
   ./wp8/template/cordova/build.bat
   ./wp8/template/cordova/clean.bat
   ./wp8/template/cordova/log.bat
   ./wp8/template/cordova/run.bat
   ./wp8/template/cordova/version.bat
   ./wp8/template/cordova/win_os_version.bat
   ./wp8/template/cordova/win_sdk_version.bat
   ./wp8/template/cordova/lib/install-device.bat
   ./wp8/template/cordova/lib/install-emulator.bat
   ./wp8/template/cordova/lib/list-devices.bat
   ./wp8/template/cordova/lib/list-emulator-images.bat
   ./wp8/template/cordova/lib/list-started-emulators.bat
   ./wp8/template/cordova/lib/start-emulator.bat
   ./wp8/template/cordova/lib/CordovaDeploy/CordovaDeploy.sln
   ./wp8/template/cordova/lib/CordovaDeploy/CordovaDeploy/app.config
   
 ./wp8/template/cordova/lib/CordovaDeploy/CordovaDeploy/Properties/AssemblyInfo.cs
   ./wp8/template/cordovalib/ConfigHandler.cs
   ./wp8/template/cordovalib/ConsoleHelper.cs
   ./wp8/template/cordovalib/IBrowserDecorator.cs
   ./wp8/template/cordovalib/XHRHelper.cs
   ./wp8/tooling/scripts/buildjs.bat
   ./wp8/tooling/scripts/createTemplates.bat
   ./wp8/tooling/scripts/dist.bat
   ./wp8/tooling/scripts/new.bat
   ./wp8/tooling/scripts/package.bat
   ./wp8/tooling/scripts/reversion.bat



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6815) CordovaLib - Fix header licenses (Apache RAT report)

2014-05-30 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6815?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013806#comment-14013806
 ] 

ASF subversion and git services commented on CB-6815:
-

Commit 9b97c5435e3baab74e053fc612be46cf9d252359 in cordova-lib's branch 
refs/heads/master from [~cmarcelk]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-lib.git;h=9b97c54 ]

CB-6815 Add license to CONTRIBUTING.md


 CordovaLib - Fix header licenses (Apache RAT report)
 

 Key: CB-6815
 URL: https://issues.apache.org/jira/browse/CB-6815
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: CordovaLib
Reporter: Shazron Abdullah

 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 204 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md
   ./cordova-lib/npm-shrinkwrap.json
   ./cordova-lib/spec-cordova/helpers.js
   ./cordova-lib/spec-cordova/platform.spec.js
   ./cordova-lib/spec-cordova/plugin.spec.js
   ./cordova-lib/spec-cordova/test-config.xml
   ./cordova-lib/spec-cordova/wrappers.spec.js
   ./cordova-lib/spec-cordova/fixtures/base/www/config.xml
   ./cordova-lib/spec-cordova/fixtures/hooks_bat/fail/fail.bat
   ./cordova-lib/spec-cordova/fixtures/hooks_bat/test/07.bat
   ./cordova-lib/spec-cordova/fixtures/hooks_bat/test/1.bat
   ./cordova-lib/spec-cordova/fixtures/hooks_sh/fail/fail.sh
   ./cordova-lib/spec-cordova/fixtures/hooks_sh/test/07.sh
   ./cordova-lib/spec-cordova/fixtures/hooks_sh/test/1.sh
   ./cordova-lib/spec-cordova/fixtures/platforms/android/AndroidManifest.xml
   ./cordova-lib/spec-cordova/fixtures/platforms/android/build.xml
   ./cordova-lib/spec-cordova/fixtures/platforms/android/local.properties
   ./cordova-lib/spec-cordova/fixtures/platforms/android/proguard-project.txt
   ./cordova-lib/spec-cordova/fixtures/platforms/android/project.properties
   ./cordova-lib/spec-cordova/fixtures/platforms/android/assets/www/config.xml
   
 ./cordova-lib/spec-cordova/fixtures/platforms/android/assets/www/cordova_plugins.js
   ./cordova-lib/spec-cordova/fixtures/platforms/android/res/values/strings.xml
   ./cordova-lib/spec-cordova/fixtures/platforms/android/res/xml/config.xml
   
 ./cordova-lib/spec-cordova/fixtures/platforms/android-lib/framework/assets/www/cordova.js
   
 ./cordova-lib/spec-cordova/fixtures/plugins/ChildBrowser/www/childbrowser_file.html
   ./cordova-lib/spec-cordova/fixtures/plugins/android/plugin.xml
   ./cordova-lib/spec-cordova/fixtures/plugins/android/src/android/Android.java
   
 ./cordova-lib/spec-cordova/fixtures/plugins/android/src/android/SomethingWithR.java
   ./cordova-lib/spec-cordova/fixtures/plugins/android/www/android.js
   ./cordova-lib/spec-cordova/fixtures/plugins/fake1/plugin.xml
   ./cordova-lib/spec-cordova/fixtures/plugins/test/plugin.xml
   ./cordova-lib/spec-cordova/fixtures/plugins/test/www/test.js
   ./cordova-lib/spec-cordova/fixtures/templates/no_content_config.xml
   ./cordova-lib/spec-plugman/add_platform.spec.js
   ./cordova-lib/spec-plugman/adduser.spec.js
   ./cordova-lib/spec-plugman/common.js
   ./cordova-lib/spec-plugman/config.spec.js
   ./cordova-lib/spec-plugman/create.spec.js
   ./cordova-lib/spec-plugman/fetch.spec.js
   ./cordova-lib/spec-plugman/info.spec.js
   ./cordova-lib/spec-plugman/install.spec.js
   ./cordova-lib/spec-plugman/owner.spec.js
   ./cordova-lib/spec-plugman/platform.spec.js
   ./cordova-lib/spec-plugman/prepare.spec.js
   ./cordova-lib/spec-plugman/publish.spec.js
   ./cordova-lib/spec-plugman/search.spec.js
   ./cordova-lib/spec-plugman/uninstall.spec.js
   ./cordova-lib/spec-plugman/unpublish.spec.js
   ./cordova-lib/spec-plugman/wrappers.spec.js
   ./cordova-lib/spec-plugman/platforms/amazon-fireos.spec.js
   ./cordova-lib/spec-plugman/platforms/android.spec.js
   ./cordova-lib/spec-plugman/platforms/blackberry10.spec.js
   ./cordova-lib/spec-plugman/platforms/ios.spec.js
   ./cordova-lib/spec-plugman/platforms/windows8.spec.js
   ./cordova-lib/spec-plugman/platforms/wp7.spec.js
   ./cordova-lib/spec-plugman/platforms/wp8.spec.js
   ./cordova-lib/spec-plugman/plugins/AndroidJS/www/android.js
   
 ./cordova-lib/spec-plugman/plugins/ChildBrowser/src/ios/ChildBrowserCommand.m
   
 ./cordova-lib/spec-plugman/plugins/ChildBrowser/src/ios/ChildBrowserViewController.m
   
 ./cordova-lib/spec-plugman/plugins/ChildBrowser/src/ios/ChildBrowserViewController.xib
   ./cordova-lib/spec-plugman/plugins/ChildBrowser/src/ios/TargetDirTest.m
   
 ./cordova-lib/spec-plugman/plugins/ChildBrowser/src/ios/preserveDirs/PreserveDirsTest.m
   ./cordova-lib/spec-plugman/plugins/ChildBrowser/www/childbrowser_file.html
   ./cordova-lib/spec-plugman/plugins/Contacts/plugin.xml
   

[jira] [Commented] (CB-6784) Android - Fix header licenses (Apache RAT report)

2014-05-30 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6784?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013835#comment-14013835
 ] 

ASF subversion and git services commented on CB-6784:
-

Commit 7687becfeeba8aa29cb24775140d32c7ebfe28ad in cordova-android's branch 
refs/heads/master from [~cmarcelk]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-android.git;h=7687bec ]

CB-6784 Add license to CONTRIBUTING.md


 Android - Fix header licenses (Apache RAT report)
 -

 Key: CB-6784
 URL: https://issues.apache.org/jira/browse/CB-6784
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Android
Reporter: Shazron Abdullah

 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 6 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md
   ./framework/src/com/squareup/okhttp/internal/spdy/ErrorCode.java
   ./framework/src/com/squareup/okhttp/internal/spdy/Hpack.java
   ./framework/src/com/squareup/okhttp/internal/spdy/NameValueBlockReader.java
   ./test/assets/www/cordova_plugins.js
   ./test/res/xml/config.xml



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6785) iOS - Fix header licenses (Apache RAT report)

2014-05-30 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6785?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013840#comment-14013840
 ] 

ASF subversion and git services commented on CB-6785:
-

Commit 7fdd9ca8239d10832bcd17948a1c110fde6fdb79 in cordova-ios's branch 
refs/heads/master from [~cmarcelk]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-ios.git;h=7fdd9ca ]

CB-6785 Add license to CONTRIBUTING.md


 iOS - Fix header licenses (Apache RAT report)
 -

 Key: CB-6785
 URL: https://issues.apache.org/jira/browse/CB-6785
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: iOS
Reporter: Shazron Abdullah

 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 5 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md
   ./CordovaLib/Classes/NSData+Base64.h
   ./CordovaLib/Classes/NSData+Base64.m
   ./bin/templates/project/__PROJECT_NAME__/gitignore
   ./bin/templates/scripts/cordova/build.xcconfig



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6809) Network Information - Fix header licenses (Apache RAT report)

2014-05-30 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6809?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013842#comment-14013842
 ] 

ASF subversion and git services commented on CB-6809:
-

Commit f27b34c2a90b4e620a30a6688ce94bb9f5dc083b in 
cordova-plugin-network-information's branch refs/heads/master from [~cmarcelk]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-network-information.git;h=f27b34c
 ]

CB-6809 Add license to CONTRIBUTING.md


 Network Information - Fix header licenses (Apache RAT report)
 -

 Key: CB-6809
 URL: https://issues.apache.org/jira/browse/CB-6809
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Plugin Network Information
Reporter: Shazron Abdullah

 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 2 Unknown Licenses
 ***
 Unapproved licenses:
   ./src/ios/CDVReachability.h
   ./src/ios/CDVReachability.m
 -- Note the Apple license is in the NOTICE file and is approved in 
 legal-discuss



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Resolved] (CB-6808) Media Capture - Fix header licenses (Apache RAT report)

2014-05-30 Thread Marcel Kinard (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-6808?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Marcel Kinard resolved CB-6808.
---

   Resolution: Fixed
Fix Version/s: 3.6.0
 Assignee: Marcel Kinard

 Media Capture - Fix header licenses (Apache RAT report)
 ---

 Key: CB-6808
 URL: https://issues.apache.org/jira/browse/CB-6808
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Plugin Media Capture
Reporter: Shazron Abdullah
Assignee: Marcel Kinard
 Fix For: 3.6.0


 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 1 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6808) Media Capture - Fix header licenses (Apache RAT report)

2014-05-30 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6808?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013844#comment-14013844
 ] 

ASF subversion and git services commented on CB-6808:
-

Commit a6ad875e8b114874ceedf11493ea526f5df63ff2 in 
cordova-plugin-media-capture's branch refs/heads/master from [~cmarcelk]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-media-capture.git;h=a6ad875
 ]

CB-6808 Add license


 Media Capture - Fix header licenses (Apache RAT report)
 ---

 Key: CB-6808
 URL: https://issues.apache.org/jira/browse/CB-6808
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Plugin Media Capture
Reporter: Shazron Abdullah
 Fix For: 3.6.0


 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 1 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6800) Device - Fix header licenses (Apache RAT report)

2014-05-30 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6800?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013845#comment-14013845
 ] 

ASF subversion and git services commented on CB-6800:
-

Commit 72bfd9c15476e9e33ea4c032f4406f19ed7e09a6 in cordova-plugin-device's 
branch refs/heads/master from [~cmarcelk]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-device.git;h=72bfd9c 
]

CB-6800 Add license


 Device - Fix header licenses (Apache RAT report)
 

 Key: CB-6800
 URL: https://issues.apache.org/jira/browse/CB-6800
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Plugin Device
Reporter: Shazron Abdullah

 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 1 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Resolved] (CB-6800) Device - Fix header licenses (Apache RAT report)

2014-05-30 Thread Marcel Kinard (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-6800?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Marcel Kinard resolved CB-6800.
---

   Resolution: Fixed
Fix Version/s: 3.6.0
 Assignee: Marcel Kinard

 Device - Fix header licenses (Apache RAT report)
 

 Key: CB-6800
 URL: https://issues.apache.org/jira/browse/CB-6800
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Plugin Device
Reporter: Shazron Abdullah
Assignee: Marcel Kinard
 Fix For: 3.6.0


 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 1 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6818) Fix header licenses (Apache RAT report)

2014-05-30 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6818?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013863#comment-14013863
 ] 

ASF subversion and git services commented on CB-6818:
-

Commit a40bfa31035abf9f9bc4939e76f42ce8f5686d8e in cordova-app-harness's branch 
refs/heads/master from [~cmarcelk]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-app-harness.git;h=a40bfa3 ]

CB-6818 Add license to CONTRIBUTING.md


 Fix header licenses (Apache RAT report)
 ---

 Key: CB-6818
 URL: https://issues.apache.org/jira/browse/CB-6818
 Project: Apache Cordova
  Issue Type: Task
 Environment: all components
Reporter: Shazron Abdullah
Assignee: Shazron Abdullah
 Fix For: 3.6.0


 umbrella issue, see subtasks



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6818) Fix header licenses (Apache RAT report)

2014-05-30 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6818?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013859#comment-14013859
 ] 

ASF subversion and git services commented on CB-6818:
-

Commit 59dc5fbc9d30e1f541922964b030d4fa7be4738a in cordova-amazon-fireos's 
branch refs/heads/master from [~cmarcelk]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-amazon-fireos.git;h=59dc5fb 
]

CB-6818 Add license for CONTRIBUTING.md


 Fix header licenses (Apache RAT report)
 ---

 Key: CB-6818
 URL: https://issues.apache.org/jira/browse/CB-6818
 Project: Apache Cordova
  Issue Type: Task
 Environment: all components
Reporter: Shazron Abdullah
Assignee: Shazron Abdullah
 Fix For: 3.6.0


 umbrella issue, see subtasks



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6816) Coho - Fix header licenses (Apache RAT report)

2014-05-30 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6816?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013865#comment-14013865
 ] 

ASF subversion and git services commented on CB-6816:
-

Commit 1578ae853090666fdc04e90fe4bba2ae93363586 in cordova-firefoxos's branch 
refs/heads/master from [~cmarcelk]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-firefoxos.git;h=1578ae8 ]

CB-6816 Add license to CONTRIBUTING.md


 Coho - Fix header licenses (Apache RAT report)
 --

 Key: CB-6816
 URL: https://issues.apache.org/jira/browse/CB-6816
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Coho
Reporter: Shazron Abdullah

 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 15 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md
   ./README.md
   ./coho.cmd
   ./bin/README.md
   ./docs/cadence-release-process.md
   ./docs/code-reviews.md
   ./docs/committer-workflow.md
   ./docs/index.md
   ./docs/plugins-release-process.md
   ./docs/processing-pull-requests.md
   ./docs/release-voting.md
   ./docs/setting-up-gpg.md
   ./docs/storing-repo-versions-design.md
   ./docs/tools-release-process.md
   ./docs/versioning-and-release-strategy.md



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6818) Fix header licenses (Apache RAT report)

2014-05-30 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6818?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013870#comment-14013870
 ] 

ASF subversion and git services commented on CB-6818:
-

Commit 727e144ddecfe7e8a7e3c1bb31fd4d9ad929976a in cordova-medic's branch 
refs/heads/master from [~cmarcelk]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-medic.git;h=727e144 ]

CB-6818 Add license to CONTRIBUTING.md


 Fix header licenses (Apache RAT report)
 ---

 Key: CB-6818
 URL: https://issues.apache.org/jira/browse/CB-6818
 Project: Apache Cordova
  Issue Type: Task
 Environment: all components
Reporter: Shazron Abdullah
Assignee: Shazron Abdullah
 Fix For: 3.6.0


 umbrella issue, see subtasks



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6818) Fix header licenses (Apache RAT report)

2014-05-30 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6818?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013875#comment-14013875
 ] 

ASF subversion and git services commented on CB-6818:
-

Commit c8fc9065779b2443d253ff7c4021bb41afea6c72 in cordova-bada's branch 
refs/heads/master from [~cmarcelk]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-bada.git;h=c8fc906 ]

CB-6818 Add license for CONTRIBUTING.md


 Fix header licenses (Apache RAT report)
 ---

 Key: CB-6818
 URL: https://issues.apache.org/jira/browse/CB-6818
 Project: Apache Cordova
  Issue Type: Task
 Environment: all components
Reporter: Shazron Abdullah
Assignee: Shazron Abdullah
 Fix For: 3.6.0


 umbrella issue, see subtasks



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6818) Fix header licenses (Apache RAT report)

2014-05-30 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6818?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013872#comment-14013872
 ] 

ASF subversion and git services commented on CB-6818:
-

Commit 431c103aab357f5b599edebe720899eb99cc6e82 in cordova-ubuntu's branch 
refs/heads/master from [~cmarcelk]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-ubuntu.git;h=431c103 ]

CB-6818 Add license for CONTRIBUTING.md


 Fix header licenses (Apache RAT report)
 ---

 Key: CB-6818
 URL: https://issues.apache.org/jira/browse/CB-6818
 Project: Apache Cordova
  Issue Type: Task
 Environment: all components
Reporter: Shazron Abdullah
Assignee: Shazron Abdullah
 Fix For: 3.6.0


 umbrella issue, see subtasks



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6818) Fix header licenses (Apache RAT report)

2014-05-30 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6818?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013879#comment-14013879
 ] 

ASF subversion and git services commented on CB-6818:
-

Commit 56292b943a4a88a314fdf5d9971c56c4a9015c0b in cordova-bada-wac's branch 
refs/heads/master from [~cmarcelk]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-bada-wac.git;h=56292b9 ]

CB-6818 Add license for CONTRIBUTING.md


 Fix header licenses (Apache RAT report)
 ---

 Key: CB-6818
 URL: https://issues.apache.org/jira/browse/CB-6818
 Project: Apache Cordova
  Issue Type: Task
 Environment: all components
Reporter: Shazron Abdullah
Assignee: Shazron Abdullah
 Fix For: 3.6.0


 umbrella issue, see subtasks



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6818) Fix header licenses (Apache RAT report)

2014-05-30 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6818?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013884#comment-14013884
 ] 

ASF subversion and git services commented on CB-6818:
-

Commit cfdd764ecc62e2dfeb2147d4dfd0e86e38529ff7 in cordova-qt's branch 
refs/heads/master from [~cmarcelk]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-qt.git;h=cfdd764 ]

CB-6818 Add license for CONTRIBUTING.md


 Fix header licenses (Apache RAT report)
 ---

 Key: CB-6818
 URL: https://issues.apache.org/jira/browse/CB-6818
 Project: Apache Cordova
  Issue Type: Task
 Environment: all components
Reporter: Shazron Abdullah
Assignee: Shazron Abdullah
 Fix For: 3.6.0


 umbrella issue, see subtasks



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Created] (CB-6822) Plugman usage compatible with Windows platforms

2014-05-30 Thread Martin Gonzalez (JIRA)
Martin Gonzalez created CB-6822:
---

 Summary: Plugman usage compatible with Windows platforms
 Key: CB-6822
 URL: https://issues.apache.org/jira/browse/CB-6822
 Project: Apache Cordova
  Issue Type: Bug
  Components: mobile-spec
Affects Versions: 3.5.0
 Environment: Windows 7  8
Reporter: Martin Gonzalez
 Fix For: 3.6.0


When the --plugman arguments is used to create the mobilespec project using the 
createmobilespec nodejs module, it fails the plugins installation under windows.
Reason:
At: 
https://github.com/apache/cordova-mobile-spec/blob/master/createmobilespec/createmobilespec.js#L180
The plugman main js script is called, but for windows it only means open the js 
file with an editor, and for Linux based os uses the #!/usr/bin/env node line 
at the top of the file to invoke nodejs and execute the file.

For the Windows platform it's required provide the node command.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6818) Fix header licenses (Apache RAT report)

2014-05-30 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6818?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013887#comment-14013887
 ] 

ASF subversion and git services commented on CB-6818:
-

Commit ab9b0347255d7d1e61cb11147e0d440feeac743a in cordova-tizen's branch 
refs/heads/master from [~cmarcelk]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-tizen.git;h=ab9b034 ]

CB-6818 Add license to CONTRIBUTING.md


 Fix header licenses (Apache RAT report)
 ---

 Key: CB-6818
 URL: https://issues.apache.org/jira/browse/CB-6818
 Project: Apache Cordova
  Issue Type: Task
 Environment: all components
Reporter: Shazron Abdullah
Assignee: Shazron Abdullah
 Fix For: 3.6.0


 umbrella issue, see subtasks



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6818) Fix header licenses (Apache RAT report)

2014-05-30 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6818?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013886#comment-14013886
 ] 

ASF subversion and git services commented on CB-6818:
-

Commit 9f2be7dc23932d8ba8b865a05da638470e72533b in cordova-registry-web's 
branch refs/heads/master from [~cmarcelk]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-registry-web.git;h=9f2be7d ]

CB-6818 Add license to CONTRIBUTING.md


 Fix header licenses (Apache RAT report)
 ---

 Key: CB-6818
 URL: https://issues.apache.org/jira/browse/CB-6818
 Project: Apache Cordova
  Issue Type: Task
 Environment: all components
Reporter: Shazron Abdullah
Assignee: Shazron Abdullah
 Fix For: 3.6.0


 umbrella issue, see subtasks



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6818) Fix header licenses (Apache RAT report)

2014-05-30 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6818?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013885#comment-14013885
 ] 

ASF subversion and git services commented on CB-6818:
-

Commit 8df754347c3f422bba57df761932a313d9da08b3 in cordova-registry's branch 
refs/heads/master from [~cmarcelk]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-registry.git;h=8df7543 ]

CB-6818 Add license to CONTRIBUTING.md


 Fix header licenses (Apache RAT report)
 ---

 Key: CB-6818
 URL: https://issues.apache.org/jira/browse/CB-6818
 Project: Apache Cordova
  Issue Type: Task
 Environment: all components
Reporter: Shazron Abdullah
Assignee: Shazron Abdullah
 Fix For: 3.6.0


 umbrella issue, see subtasks



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6818) Fix header licenses (Apache RAT report)

2014-05-30 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6818?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013888#comment-14013888
 ] 

ASF subversion and git services commented on CB-6818:
-

Commit e3ea795a30af56895efac4e97ce4c9719eed435c in cordova-webos's branch 
refs/heads/master from [~cmarcelk]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-webos.git;h=e3ea795 ]

CB-6818 Add license for CONTRIBUTING.md


 Fix header licenses (Apache RAT report)
 ---

 Key: CB-6818
 URL: https://issues.apache.org/jira/browse/CB-6818
 Project: Apache Cordova
  Issue Type: Task
 Environment: all components
Reporter: Shazron Abdullah
Assignee: Shazron Abdullah
 Fix For: 3.6.0


 umbrella issue, see subtasks



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6818) Fix header licenses (Apache RAT report)

2014-05-30 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6818?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013891#comment-14013891
 ] 

ASF subversion and git services commented on CB-6818:
-

Commit 48f1b585e252a69638073dffdfb870c4333d6382 in cordova-weinre's branch 
refs/heads/master from [~cmarcelk]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-weinre.git;h=48f1b58 ]

CB-6818 Add license for CONTRIBUTING.md


 Fix header licenses (Apache RAT report)
 ---

 Key: CB-6818
 URL: https://issues.apache.org/jira/browse/CB-6818
 Project: Apache Cordova
  Issue Type: Task
 Environment: all components
Reporter: Shazron Abdullah
Assignee: Shazron Abdullah
 Fix For: 3.6.0


 umbrella issue, see subtasks



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6818) Fix header licenses (Apache RAT report)

2014-05-30 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6818?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013882#comment-14013882
 ] 

ASF subversion and git services commented on CB-6818:
-

Commit 6302f2d54a584b0b1dffde6f9a7e86cb0b90d3a8 in cordova-browser's branch 
refs/heads/master from [~cmarcelk]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-browser.git;h=6302f2d ]

CB-6818 Add license for CONTRIBUTING.md


 Fix header licenses (Apache RAT report)
 ---

 Key: CB-6818
 URL: https://issues.apache.org/jira/browse/CB-6818
 Project: Apache Cordova
  Issue Type: Task
 Environment: all components
Reporter: Shazron Abdullah
Assignee: Shazron Abdullah
 Fix For: 3.6.0


 umbrella issue, see subtasks



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6791) MobileSpec - Fix header licenses (Apache RAT report)

2014-05-30 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6791?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013911#comment-14013911
 ] 

ASF subversion and git services commented on CB-6791:
-

Commit 65c61c871d280f6027d958af190e42b570d0d4f8 in cordova-mobile-spec's branch 
refs/heads/master from [~cmarcelk]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-mobile-spec.git;h=65c61c8 ]

CB-6791 Add missing licenses


 MobileSpec - Fix header licenses (Apache RAT report)
 

 Key: CB-6791
 URL: https://issues.apache.org/jira/browse/CB-6791
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: mobile-spec
Reporter: Shazron Abdullah
 Fix For: 3.6.0


 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 17 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md
   ./benchmarks/setImmediate.js
   ./cordova-plugin-echo/README.md
   ./cordova-plugin-echo/plugin.xml
   ./cordova-plugin-whitelist/README.md
   ./cordova-plugin-whitelist/plugin.xml



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Updated] (CB-6792) CordovaJS - Fix header licenses (Apache RAT report)

2014-05-30 Thread Marcel Kinard (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-6792?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Marcel Kinard updated CB-6792:
--

Description: 
JavaDocs are generated and so license header is optional
Generated files do not required license headers
Add a .ratExcludes file for files to exclude

42 Unknown Licenses

***

Unapproved licenses:

  ./tasks/lib/write-license-header.js
  ./tasks/vendor/commonjs-tests/modules/1.0/absolute/b.js
  ./tasks/vendor/commonjs-tests/modules/1.0/absolute/program.js
  ./tasks/vendor/commonjs-tests/modules/1.0/absolute/test.js
  ./tasks/vendor/commonjs-tests/modules/1.0/absolute/submodule/a.js
  ./tasks/vendor/commonjs-tests/modules/1.0/cyclic/a.js
  ./tasks/vendor/commonjs-tests/modules/1.0/cyclic/b.js
  ./tasks/vendor/commonjs-tests/modules/1.0/cyclic/program.js
  ./tasks/vendor/commonjs-tests/modules/1.0/cyclic/test.js
  ./tasks/vendor/commonjs-tests/modules/1.0/determinism/program.js
  ./tasks/vendor/commonjs-tests/modules/1.0/determinism/test.js
  ./tasks/vendor/commonjs-tests/modules/1.0/determinism/submodule/a.js
  ./tasks/vendor/commonjs-tests/modules/1.0/determinism/submodule/b.js
  ./tasks/vendor/commonjs-tests/modules/1.0/exactExports/a.js
  ./tasks/vendor/commonjs-tests/modules/1.0/exactExports/program.js
  ./tasks/vendor/commonjs-tests/modules/1.0/exactExports/test.js
  ./tasks/vendor/commonjs-tests/modules/1.0/hasOwnProperty/hasOwnProperty.js
  ./tasks/vendor/commonjs-tests/modules/1.0/hasOwnProperty/program.js
  ./tasks/vendor/commonjs-tests/modules/1.0/hasOwnProperty/test.js
  ./tasks/vendor/commonjs-tests/modules/1.0/hasOwnProperty/toString.js
  ./tasks/vendor/commonjs-tests/modules/1.0/method/a.js
  ./tasks/vendor/commonjs-tests/modules/1.0/method/program.js
  ./tasks/vendor/commonjs-tests/modules/1.0/method/test.js
  ./tasks/vendor/commonjs-tests/modules/1.0/missing/program.js
  ./tasks/vendor/commonjs-tests/modules/1.0/missing/test.js
  ./tasks/vendor/commonjs-tests/modules/1.0/monkeys/a.js
  ./tasks/vendor/commonjs-tests/modules/1.0/monkeys/program.js
  ./tasks/vendor/commonjs-tests/modules/1.0/monkeys/test.js
  ./tasks/vendor/commonjs-tests/modules/1.0/nested/program.js
  ./tasks/vendor/commonjs-tests/modules/1.0/nested/test.js
  ./tasks/vendor/commonjs-tests/modules/1.0/nested/a/b/c/d.js
  ./tasks/vendor/commonjs-tests/modules/1.0/relative/program.js
  ./tasks/vendor/commonjs-tests/modules/1.0/relative/test.js
  ./tasks/vendor/commonjs-tests/modules/1.0/relative/submodule/a.js
  ./tasks/vendor/commonjs-tests/modules/1.0/relative/submodule/b.js
  ./tasks/vendor/commonjs-tests/modules/1.0/transitive/a.js
  ./tasks/vendor/commonjs-tests/modules/1.0/transitive/b.js
  ./tasks/vendor/commonjs-tests/modules/1.0/transitive/c.js
  ./tasks/vendor/commonjs-tests/modules/1.0/transitive/program.js
  ./tasks/vendor/commonjs-tests/modules/1.0/transitive/test.js
  ./tasks/vendor/jasmine/jasmine-html.js
  ./tasks/vendor/jasmine/jasmine.css



  was:
JavaDocs are generated and so license header is optional
Generated files do not required license headers
Add a .ratExcludes file for files to exclude

7 Unknown Licenses

***

Unapproved licenses:

  ./CONTRIBUTING.md
  ./benchmarks/setImmediate.js
  ./cordova-plugin-echo/README.md
  ./cordova-plugin-echo/plugin.xml
  ./cordova-plugin-whitelist/README.md
  ./cordova-plugin-whitelist/plugin.xml


 CordovaJS - Fix header licenses (Apache RAT report)
 ---

 Key: CB-6792
 URL: https://issues.apache.org/jira/browse/CB-6792
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: CordovaJS
Reporter: Shazron Abdullah

 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 42 Unknown Licenses
 ***
 Unapproved licenses:
   ./tasks/lib/write-license-header.js
   ./tasks/vendor/commonjs-tests/modules/1.0/absolute/b.js
   ./tasks/vendor/commonjs-tests/modules/1.0/absolute/program.js
   ./tasks/vendor/commonjs-tests/modules/1.0/absolute/test.js
   ./tasks/vendor/commonjs-tests/modules/1.0/absolute/submodule/a.js
   ./tasks/vendor/commonjs-tests/modules/1.0/cyclic/a.js
   ./tasks/vendor/commonjs-tests/modules/1.0/cyclic/b.js
   ./tasks/vendor/commonjs-tests/modules/1.0/cyclic/program.js
   ./tasks/vendor/commonjs-tests/modules/1.0/cyclic/test.js
   ./tasks/vendor/commonjs-tests/modules/1.0/determinism/program.js
   ./tasks/vendor/commonjs-tests/modules/1.0/determinism/test.js
   ./tasks/vendor/commonjs-tests/modules/1.0/determinism/submodule/a.js
   ./tasks/vendor/commonjs-tests/modules/1.0/determinism/submodule/b.js
   ./tasks/vendor/commonjs-tests/modules/1.0/exactExports/a.js
   ./tasks/vendor/commonjs-tests/modules/1.0/exactExports/program.js
   

[jira] [Commented] (CB-6822) Plugman usage compatible with Windows platforms

2014-05-30 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6822?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013914#comment-14013914
 ] 

ASF GitHub Bot commented on CB-6822:


GitHub user martincgg opened a pull request:

https://github.com/apache/cordova-mobile-spec/pull/66

[CB-6822] plugman compatible on Windows platforms

When createmobilespec module is used and the --plugman argument is
present, it will determine if the development platform is windows to add
node as part of the command.

process.argv[0] it will retrieve the node from the current process, and
it will cover the scenario where the nodejs installation it has a custom
path or it's not present in system PATH environmental variable.

If:
/path/to/nodejs/node createmobilespec.js [args]
process.argv[0] it will retrieve: /path/to/nodejs/node
to invoke plugman main.js file.

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

$ git pull https://github.com/martincgg/cordova-mobile-spec CB-6822

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

https://github.com/apache/cordova-mobile-spec/pull/66.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 #66


commit 1b140bca76c826d3eae09b35da2d1d84face3a0c
Author: Martin Gonzalez martin.c.glez.g...@gmail.com
Date:   2014-05-30T16:26:40Z

[CB-6822] plugman compatible with windows

When createmobilespec module is used and the --plugman argument is
present, it will determine if the development platform is windows to add
node as part of the command.

process.argv[0] it will retrieve the node from the current process, and
it will cover the scenario where the nodejs installation it has a custom
path or it's not present in system PATH environmental variable.

If:
/path/to/nodejs/node createmobilespec.js [args]
process.argv[0] it will retrieve: /path/to/nodejs/node
to invoke plugman main.js file.




 Plugman usage compatible with Windows platforms
 ---

 Key: CB-6822
 URL: https://issues.apache.org/jira/browse/CB-6822
 Project: Apache Cordova
  Issue Type: Bug
  Components: mobile-spec
Affects Versions: 3.5.0
 Environment: Windows 7  8
Reporter: Martin Gonzalez
  Labels: createmobilespec, mobilespec
 Fix For: 3.6.0


 When the --plugman arguments is used to create the mobilespec project using 
 the createmobilespec nodejs module, it fails the plugins installation under 
 windows.
 Reason:
 At: 
 https://github.com/apache/cordova-mobile-spec/blob/master/createmobilespec/createmobilespec.js#L180
 The plugman main js script is called, but for windows it only means open the 
 js file with an editor, and for Linux based os uses the #!/usr/bin/env node 
 line at the top of the file to invoke nodejs and execute the file.
 For the Windows platform it's required provide the node command.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6793) CordovaAppHelloWorld - Fix header licenses (Apache RAT report)

2014-05-30 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6793?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013916#comment-14013916
 ] 

ASF subversion and git services commented on CB-6793:
-

Commit 127f3a079781cafc7fa809a38e95bdfc979ab90a in cordova-app-hello-world's 
branch refs/heads/master from [~cmarcelk]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-app-hello-world.git;h=127f3a0 
]

CB-6793 Add missing licenses


 CordovaAppHelloWorld - Fix header licenses (Apache RAT report)
 --

 Key: CB-6793
 URL: https://issues.apache.org/jira/browse/CB-6793
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: App Hello World
Reporter: Shazron Abdullah
 Fix For: 3.6.0


 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 4 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md
   ./README.md
   ./res/README.md
   ./res/screen/tizen/README.md



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Resolved] (CB-6793) CordovaAppHelloWorld - Fix header licenses (Apache RAT report)

2014-05-30 Thread Marcel Kinard (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-6793?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Marcel Kinard resolved CB-6793.
---

   Resolution: Fixed
Fix Version/s: 3.6.0
 Assignee: Marcel Kinard

 CordovaAppHelloWorld - Fix header licenses (Apache RAT report)
 --

 Key: CB-6793
 URL: https://issues.apache.org/jira/browse/CB-6793
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: App Hello World
Reporter: Shazron Abdullah
Assignee: Marcel Kinard
 Fix For: 3.6.0


 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 4 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md
   ./README.md
   ./res/README.md
   ./res/screen/tizen/README.md



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (CB-6816) Coho - Fix header licenses (Apache RAT report)

2014-05-30 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-6816?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14013921#comment-14013921
 ] 

ASF subversion and git services commented on CB-6816:
-

Commit 87b2d44f34eaa4da4f67d8218ecdc619e831f37b in cordova-coho's branch 
refs/heads/master from [~cmarcelk]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-coho.git;h=87b2d44 ]

CB-6816 Add missing licenses


 Coho - Fix header licenses (Apache RAT report)
 --

 Key: CB-6816
 URL: https://issues.apache.org/jira/browse/CB-6816
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: Coho
Reporter: Shazron Abdullah
 Fix For: 3.6.0


 JavaDocs are generated and so license header is optional
 Generated files do not required license headers
 Add a .ratExcludes file for files to exclude
 15 Unknown Licenses
 ***
 Unapproved licenses:
   ./CONTRIBUTING.md
   ./README.md
   ./coho.cmd
   ./bin/README.md
   ./docs/cadence-release-process.md
   ./docs/code-reviews.md
   ./docs/committer-workflow.md
   ./docs/index.md
   ./docs/plugins-release-process.md
   ./docs/processing-pull-requests.md
   ./docs/release-voting.md
   ./docs/setting-up-gpg.md
   ./docs/storing-repo-versions-design.md
   ./docs/tools-release-process.md
   ./docs/versioning-and-release-strategy.md



--
This message was sent by Atlassian JIRA
(v6.2#6252)


  1   2   >