Re: Command Line Tooling

2012-06-04 Thread Anis KADRI
Yeah I will add a test for that. I just need to run it twice for it to generate once and fail the second time ;) On Mon, Jun 4, 2012 at 6:20 PM, Jesse wrote: > ./bin/create ./example > ?? > I think you got it with this: > > # clobber any existing example > if [ -d $PROJECT_PATH ] > then >ech

Re: [jira] [Commented] (CB-643) Use the Apache RAT (Release Audit Tool) on sources, add Apache License

2012-06-04 Thread Shazron
I don't think the directing the user to re-license it can work. I believe only the copyright owner can re-license it, in this case it would be Apache, not the user. However, from my reading of clause 4.4 http://www.apache.org/licenses/LICENSE-2.0.html --- You may add Your own copyright statem

Re: [jira] [Commented] (CB-643) Use the Apache RAT (Release Audit Tool) on sources, add Apache License

2012-06-04 Thread Shazron
Another tidbit from that thread: http://markmail.org/thread/m7jmgl3qncsffygb#query:+page:1+mid:ovgrsbgs55to37x2+state:results - "[...] Currently, rat:check will report the reference files as missing the appropriate license header. In the current log4cxx release vote the reported failu

Re: Command Line Tooling

2012-06-04 Thread Jesse
./bin/create ./example ?? I think you got it with this: # clobber any existing example if [ -d $PROJECT_PATH ] then echo "Project already exists! Delete and recreate" exit 1 fi On Mon, Jun 4, 2012 at 6:11 PM, Anis KADRI wrote: > Can you be more specific ? Like give an example ? > > On

Re: Command Line Tooling

2012-06-04 Thread Anis KADRI
Can you be more specific ? Like give an example ? On Mon, Jun 4, 2012 at 6:10 PM, Jesse wrote: > Test that the script cannot receive params that would make it overwrite > itself or any of it's own required files? > > > On Mon, Jun 4, 2012 at 6:05 PM, Anis KADRI wrote: > > > > > > https://github

Re: [jira] [Commented] (CB-643) Use the Apache RAT (Release Audit Tool) on sources, add Apache License

2012-06-04 Thread Shazron
Interesting comment by Craig Russell in this thread: http://apache.markmail.org/message/5hk2t2vl6jjtsloy --- Craig Russell: [...] For now, I'll be happy with some wording in our License Policy document that explicitly permits the PMC to use its judgement as to whether a license header is requi

Re: [jira] [Commented] (CB-643) Use the Apache RAT (Release Audit Tool) on sources, add Apache License

2012-06-04 Thread Filip Maj
*I* would consider it non-creative. Don't get me wrong: I understand your point and your concern (that it would turn users away). This is a good concern to have. I just don't think it would. The compromise here would be to a) try to remove it altogether under the non-creative grounds or b) docume

Re: Command Line Tooling

2012-06-04 Thread Jesse
Test that the script cannot receive params that would make it overwrite itself or any of it's own required files? On Mon, Jun 4, 2012 at 6:05 PM, Anis KADRI wrote: > > https://github.com/imhotep/incubator-cordova-android/blob/master/bin/test_create2.js > > FYI I did not use any testing framewor

Re: [jira] [Commented] (CB-643) Use the Apache RAT (Release Audit Tool) on sources, add Apache License

2012-06-04 Thread Jesse
That is an example, which makes sense to work that way. A template is a logical starting point for developing an app, which is what I am talking about. To me, this is like hitting command+n in textmate and having it spit out a 60 lines textmate header jargon in every new file it creates. I will ho

Re: Command Line Tooling

2012-06-04 Thread Anis KADRI
https://github.com/imhotep/incubator-cordova-android/blob/master/bin/test_create2.js FYI I did not use any testing framework because I don't like dependencies and this is so simple that I don't think it deserves it. I guess this onewould have been cool. Anyho

Re: [jira] [Commented] (CB-643) Use the Apache RAT (Release Audit Tool) on sources, add Apache License

2012-06-04 Thread Shazron
>From this page: http://www.apache.org/legal/src-headers.html#headers --- **What files in an Apache release do not require a license header?** A file without any degree of creativity in either its literal elements or its structure is not protected by copyright law; therefore, such a f

Re: [jira] [Commented] (CB-643) Use the Apache RAT (Release Audit Tool) on sources, add Apache License

2012-06-04 Thread Brian LeRoux
license header in a generated project isn't a big deal; at that moment the developer whom generated it can choose to relicense (or not) as they wish On Mon, Jun 4, 2012 at 5:54 PM, Filip Maj wrote: > I don't see the issue here. > > The example code we ship is apache-owned, so the license header

Re: [jira] [Commented] (CB-643) Use the Apache RAT (Release Audit Tool) on sources, add Apache License

2012-06-04 Thread Filip Maj
Here's some sample code that is shipped with Cassandra: https://git-wip-us.apache.org/repos/asf?p=cassandra.git;a=blob;f=examples/c lient_only/src/ClientOnlyExample.java;h=fa69965fb993ecfe11ce1b4dd9faf86c776 41713;hb=HEAD Note the same license header at the top. Same situation here no? On 6/4/

Re: [jira] [Commented] (CB-643) Use the Apache RAT (Release Audit Tool) on sources, add Apache License

2012-06-04 Thread Filip Maj
I don't see the issue here. The example code we ship is apache-owned, so the license header should be there. Why is swapping in a user's application assets into the www/ folder, overwriting the example assets, for cordova projects unacceptable? Most people would do this. Before you go making any

Re: [jira] [Commented] (CB-643) Use the Apache RAT (Release Audit Tool) on sources, add Apache License

2012-06-04 Thread Shazron
Or, you can get a clarification from the legal-discuss list as well and/or https://issues.apache.org/jira/browse/LEGAL because AFAIK WANAL On Mon, Jun 4, 2012 at 5:49 PM, Jesse wrote: > I will make the create tool strip the license header then ... > and remove it from the template before distri

Re: [jira] [Commented] (CB-643) Use the Apache RAT (Release Audit Tool) on sources, add Apache License

2012-06-04 Thread Jesse
I will make the create tool strip the license header then ... and remove it from the template before distributing ... Both the other options are unacceptable IMO On Mon, Jun 4, 2012 at 5:43 PM, Shazron wrote: > There is only two alternatives then: > > 1. The user would remove the boilerplate ind

Re: [jira] [Commented] (CB-643) Use the Apache RAT (Release Audit Tool) on sources, add Apache License

2012-06-04 Thread Shazron
There is only two alternatives then: 1. The user would remove the boilerplate index.html and use their own 2. We don't include the index.html in a new project template On Mon, Jun 4, 2012 at 5:40 PM, Jesse wrote: > What I am saying is that every new project that is created will include the > l

Re: [jira] [Commented] (CB-643) Use the Apache RAT (Release Audit Tool) on sources, add Apache License

2012-06-04 Thread Filip Maj
They swap out the example HTML with their own. On 6/4/12 5:40 PM, "Jesse" wrote: >What I am saying is that every new project that is created will include >the >license tag, meaning that the new project is also licensed under Apache. >So how does a developer make an app if they aren't licensing i

Re: [jira] [Commented] (CB-643) Use the Apache RAT (Release Audit Tool) on sources, add Apache License

2012-06-04 Thread Jesse
What I am saying is that every new project that is created will include the license tag, meaning that the new project is also licensed under Apache. So how does a developer make an app if they aren't licensing it under Apache? They cannot use our tool now ... On Mon, Jun 4, 2012 at 5:32 PM, Filip

Re: [jira] [Commented] (CB-643) Use the Apache RAT (Release Audit Tool) on sources, add Apache License

2012-06-04 Thread Filip Maj
To be clear: yes I think it is amusing/waste of real estate/ugly/shouldn't be there. But most legal bs amuses/depresses me so I just go through the motions and get it over with. On 6/4/12 5:27 PM, "Filip Maj" wrote: >It doesn't impose anything on projects generated with Cordova. Simply: it >is c

Re: Apache Cordova: inquiry about graduation status and timeline

2012-06-04 Thread Filip Maj
Apache RAT audit complete. Hurray! I've gone through incubation graduation checklist (my comments inline) below. I think we are good! Final step is to create a test release snapshot and make sure it adheres to the release checklist you provided, Jukka. I will be working on this today and tomorrow.

Re: [jira] [Commented] (CB-643) Use the Apache RAT (Release Audit Tool) on sources, add Apache License

2012-06-04 Thread Shazron
Yeah when I said boilerplate - i meant the index.html. It has to be included in all source files that Apache distributes I believe. What is your specific objection to it? If someone uses the index.html their whole app has to be Apache 2.0? I don't think that's how it works. On Mon, Jun 4, 2012 at

Re: [jira] [Commented] (CB-643) Use the Apache RAT (Release Audit Tool) on sources, add Apache License

2012-06-04 Thread Filip Maj
It doesn't impose anything on projects generated with Cordova. Simply: it is code we ship, therefore license is required. No drama around it really. On 6/4/12 5:24 PM, "Jesse MacFadyen" wrote: >That's the template used to generate new projects. > >Cheers, > Jesse > > > >On 2012-06-04, at 5:19 P

Re: [jira] [Commented] (CB-643) Use the Apache RAT (Release Audit Tool) on sources, add Apache License

2012-06-04 Thread Jesse MacFadyen
That's the template used to generate new projects. Cheers, Jesse On 2012-06-04, at 5:19 PM, Shazron wrote: > As the Joker would say: why so seriouss? > This is just the boilerplate I thought. > > On Mon, Jun 4, 2012 at 5:13 PM, Jesse wrote: > >> So that means that you can only build Apache

Re: [jira] [Commented] (CB-643) Use the Apache RAT (Release Audit Tool) on sources, add Apache License

2012-06-04 Thread Shazron
As the Joker would say: why so seriouss? This is just the boilerplate I thought. On Mon, Jun 4, 2012 at 5:13 PM, Jesse wrote: > So that means that you can only build Apache 2.0 apps with Cordova!? > > Seriously WTF? > > https://git-wip-us.apache.org/repos/asf?p=incubator-cordova-wp7.git;a=blob;f

Re: [jira] [Commented] (CB-643) Use the Apache RAT (Release Audit Tool) on sources, add Apache License

2012-06-04 Thread Filip Maj
No, but example apps shipped with the source are considered apache source and therefore require the license. EG: https://git-wip-us.apache.org/repos/asf?p=incubator-cordova-android.git;a=b lob;f=framework/assets/www/index.html;h=1f39dc575ba7471b32a589b598a525417c6 d861a;hb=HEAD On 6/4/12 5:13 PM

Re: [jira] [Commented] (CB-643) Use the Apache RAT (Release Audit Tool) on sources, add Apache License

2012-06-04 Thread Jesse
So that means that you can only build Apache 2.0 apps with Cordova!? Seriously WTF? https://git-wip-us.apache.org/repos/asf?p=incubator-cordova-wp7.git;a=blob;f=templates/full/www/index.html;h=e4e9fff95930acfc3b26b6dfcb6a969c2c4f7bed;hb=ac1ba7cf406f2a9789d3f8fe60a8e631fa7bd39f On Mon, Jun 4, 201

[jira] [Commented] (CB-643) Use the Apache RAT (Release Audit Tool) on sources, add Apache License

2012-06-04 Thread Filip Maj (JIRA)
[ https://issues.apache.org/jira/browse/CB-643?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13289005#comment-13289005 ] Filip Maj commented on CB-643: -- Pushed a branch of WP7 that has all appropriate license headers h

[jira] [Commented] (CB-348) console object improvements

2012-06-04 Thread Patrick Mueller (JIRA)
[ https://issues.apache.org/jira/browse/CB-348?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13288982#comment-13288982 ] Patrick Mueller commented on CB-348: per CB-773, make sure we do "something" non-throwy wh

[jira] [Commented] (CB-773) JSON.stringify error when making AJAX calls.

2012-06-04 Thread Patrick Mueller (JIRA)
[ https://issues.apache.org/jira/browse/CB-773?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13288977#comment-13288977 ] Patrick Mueller commented on CB-773: If this was stock Cordova 1.7.0, as stated, then it w

[jira] [Created] (CB-862) Document Plugin Authoring

2012-06-04 Thread Filip Maj (JIRA)
Filip Maj created CB-862: Summary: Document Plugin Authoring Key: CB-862 URL: https://issues.apache.org/jira/browse/CB-862 Project: Apache Cordova Issue Type: Improvement Components: Docs

Re: [DISCUSS] graded platform support / deprecating webOS and Bada

2012-06-04 Thread Brian LeRoux
=) ya, didn't want to give the impression one was better than the others using A/B grading type support. Its more about what we want to distribute in an official supported capacity. I'm leaning that we keep Bada for the moment at least until Tizen ships on a physical device. On Mon, Jun 4, 2012

Re: [DISCUSS] graded platform support / deprecating webOS and Bada

2012-06-04 Thread Jesse
so maybe we need to add LateMorning, MidAfternoon, 2MinutesToMidnight, ... On Mon, Jun 4, 2012 at 2:50 PM, Shazron wrote: > If anyone wants to maintain, it would be off 1.9.0 and branched, yup > > On Mon, Jun 4, 2012 at 2:38 PM, Brian LeRoux wrote: > > > thats interesting, how would that be ma

Re: [DISCUSS] graded platform support / deprecating webOS and Bada

2012-06-04 Thread Shazron
If anyone wants to maintain, it would be off 1.9.0 and branched, yup On Mon, Jun 4, 2012 at 2:38 PM, Brian LeRoux wrote: > thats interesting, how would that be maintained...just an old branch I > guess? > > On Mon, Jun 4, 2012 at 2:22 PM, Shazron wrote: > > I think it's a good idea (à la JQM).

Re: Testing 1.8

2012-06-04 Thread Shazron
Not this one I reckon? https://issues.apache.org/jira/browse/CB-831 On Mon, Jun 4, 2012 at 2:44 PM, Becky Gibson wrote: > FYI - Just tested the lastest 1.8 code on iOS. Still failing one > geolocation test in mobile-spec. The test, "should be called with a > Position object" is still timing

Re: [DISCUSS] graded platform support / deprecating webOS and Bada

2012-06-04 Thread Anis KADRI
http://www.gartner.com/it/page.jsp?id=2017015 Windows Phone still ranks less than Bada worldwide. I don't know. Less support OK but dropping them I don't know...Same goes for WebOS It definitely doesn't have as much traction as the big two but there are a lot of devices out there still. I think

Re: [DISCUSS] graded platform support / deprecating webOS and Bada

2012-06-04 Thread Brian LeRoux
Created a quick wiki article for this: http://wiki.apache.org/cordova/PlatformSupport On Mon, Jun 4, 2012 at 2:38 PM, Brian LeRoux wrote: > thats interesting, how would that be maintained...just an old branch I guess? > > On Mon, Jun 4, 2012 at 2:22 PM, Shazron wrote: >> I think it's a good id

Testing 1.8

2012-06-04 Thread Becky Gibson
FYI - Just tested the lastest 1.8 code on iOS. Still failing one geolocation test in mobile-spec. The test, "should be called with a Position object" is still timing out on my iPhone 4S. Will test more on Tuesday. -becky

Re: Release date for 1.8?

2012-06-04 Thread Filip Maj
BAM Thank you sir On 6/4/12 2:41 PM, "Jesse" wrote: >https://issues.apache.org/jira/browse/CB-827 : Missing (network status >plugin) native .cs file in WP7 > >RESOLUTED > >On Mon, Jun 4, 2012 at 2:33 PM, Herm Wong wrote: > >> >> just resolved this issue. >> https://issues.apache.org/jira/brows

Re: Release date for 1.8?

2012-06-04 Thread Jesse
https://issues.apache.org/jira/browse/CB-827 : Missing (network status plugin) native .cs file in WP7 RESOLUTED On Mon, Jun 4, 2012 at 2:33 PM, Herm Wong wrote: > > just resolved this issue. > https://issues.apache.org/jira/browse/CB-736 : Document webOS migration > for 1.7 -> 1.8 > > > From: f

[jira] [Updated] (CB-606) ./bin/create script

2012-06-04 Thread Jesse MacFadyen (JIRA)
[ https://issues.apache.org/jira/browse/CB-606?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jesse MacFadyen updated CB-606: --- Component/s: (was: WP7) > ./bin/create script > --- > > Key: CB-6

[jira] [Commented] (CB-606) ./bin/create script

2012-06-04 Thread Jesse MacFadyen (JIRA)
[ https://issues.apache.org/jira/browse/CB-606?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13288923#comment-13288923 ] Jesse MacFadyen commented on CB-606: WP7 has basic create script implemented. There are st

[jira] [Resolved] (CB-827) Cordova V1.7 for WP is missing files

2012-06-04 Thread Jesse MacFadyen (JIRA)
[ https://issues.apache.org/jira/browse/CB-827?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jesse MacFadyen resolved CB-827. Resolution: Fixed The bare-lib project included the non-existent file. The file was renamed to Networ

Re: [DISCUSS] graded platform support / deprecating webOS and Bada

2012-06-04 Thread Brian LeRoux
thats interesting, how would that be maintained...just an old branch I guess? On Mon, Jun 4, 2012 at 2:22 PM, Shazron wrote: > I think it's a good idea (à la JQM). Cordova iOS will have to be lumped into > this as well as webOS and Bada (for iOS 3.x platform) once 2.0.0 ships. > > > On Mon, Jun 4

Re: Camera API - clean() function

2012-06-04 Thread Filip Maj
Seems fair. As a baseline could have other platforms noop it but may actually be useful on other platforms too. Will need a deeper per-platform investigation for feasibility. On 6/4/12 1:11 PM, "Shazron" wrote: >For this issue here: https://issues.apache.org/jira/browse/CB-506 > >Not sure when

RE: Release date for 1.8?

2012-06-04 Thread Herm Wong
just resolved this issue. https://issues.apache.org/jira/browse/CB-736 : Document webOS migration for 1.7 -> 1.8 > From: f...@adobe.com > To: callback-dev@incubator.apache.org > Date: Mon, 4 Jun 2012 10:56:00 -0700 > Subject: Re: Release date for 1.8? > > OK, this leaves five issues for 1.8: >

[jira] [Resolved] (CB-736) Document webOS Project Migration for 1.8.0

2012-06-04 Thread Herm Wong (JIRA)
[ https://issues.apache.org/jira/browse/CB-736?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Herm Wong resolved CB-736. -- Resolution: Fixed added update guide for webos from 1.7.0 to 1.8.0 https://git-wip-us.apache.org/repos/asf?p=incub

Re: [DISCUSS] graded platform support / deprecating webOS and Bada

2012-06-04 Thread Shazron
I think it's a good idea (à la JQM). Cordova iOS will have to be lumped into this as well as webOS and Bada (for iOS 3.x platform) once 2.0.0 ships. On Mon, Jun 4, 2012 at 2:18 PM, Brian LeRoux wrote: > Hey guys, I'd like to start some discussion about where we put our > efforts and how. > > Cur

Re: [DISCUSS] graded platform support / deprecating webOS and Bada

2012-06-04 Thread Filip Maj
Drop 'em. No contributor support anyways (other than Herm + Anis) and not much demand or interest in our community for these two platforms. On 6/4/12 2:18 PM, "Brian LeRoux" wrote: >Hey guys, I'd like to start some discussion about where we put our >efforts and how. > >Currently the webOS and Ba

[jira] [Commented] (CB-861) Header support for PhoneGap's FileTransfer (download)

2012-06-04 Thread Shazron Abdullah (JIRA)
[ https://issues.apache.org/jira/browse/CB-861?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13288911#comment-13288911 ] Shazron Abdullah commented on CB-861: - Ah ok now I see - this is for download.

[jira] [Updated] (CB-78) Header support for PhoneGap's FileTransfer (upload)

2012-06-04 Thread Shazron Abdullah (JIRA)
[ https://issues.apache.org/jira/browse/CB-78?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Shazron Abdullah updated CB-78: --- Summary: Header support for PhoneGap's FileTransfer (upload) (was: Header support for PhoneGap's FileTran

[DISCUSS] graded platform support / deprecating webOS and Bada

2012-06-04 Thread Brian LeRoux
Hey guys, I'd like to start some discussion about where we put our efforts and how. Currently the webOS and Bada platforms collectively account for <20million devices globally and dropping. I don't think we should outright remove our support but I am thinking we do drop them from the official dist

Re: [Android] DEATH TO TABS Redux

2012-06-04 Thread Anis KADRI
I usually use VIM to retab files modified with Eclipse ;-) On Mon, Jun 4, 2012 at 1:55 PM, Joe Bowser wrote: > Hey > > I'm trying to do merge commits on CordovaWebView to keep it up to date, and > I'm noticing that we're still modifying sections of code that still have > tabs in it.  Does Eclipse

[jira] [Commented] (CB-861) Header support for PhoneGap's FileTransfer (download)

2012-06-04 Thread Aurelien MERCIER (JIRA)
[ https://issues.apache.org/jira/browse/CB-861?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13288905#comment-13288905 ] Aurelien MERCIER commented on CB-861: - To be able to download a file from the community, I

[jira] [Commented] (CB-726) Document Bada Project Migration for 1.8.0

2012-06-04 Thread Michael Brooks (JIRA)
[ https://issues.apache.org/jira/browse/CB-726?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13288902#comment-13288902 ] Michael Brooks commented on CB-726: --- Looks like Anis has done some work on [Commit 77102|ht

[jira] [Resolved] (CB-726) Document Bada Project Migration for 1.8.0

2012-06-04 Thread Michael Brooks (JIRA)
[ https://issues.apache.org/jira/browse/CB-726?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Michael Brooks resolved CB-726. --- Resolution: Fixed > Document Bada Project Migration for 1.8.0 > -

[jira] [Commented] (CB-861) Header support for PhoneGap's FileTransfer (download)

2012-06-04 Thread Shazron Abdullah (JIRA)
[ https://issues.apache.org/jira/browse/CB-861?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13288901#comment-13288901 ] Shazron Abdullah commented on CB-861: - Isn't this a dupe of CB-78? Which has been resolved

[jira] [Created] (CB-861) Header support for PhoneGap's FileTransfer (download)

2012-06-04 Thread Aurelien MERCIER (JIRA)
Aurelien MERCIER created CB-861: --- Summary: Header support for PhoneGap's FileTransfer (download) Key: CB-861 URL: https://issues.apache.org/jira/browse/CB-861 Project: Apache Cordova Issue Type

[Android] DEATH TO TABS Redux

2012-06-04 Thread Joe Bowser
Hey I'm trying to do merge commits on CordovaWebView to keep it up to date, and I'm noticing that we're still modifying sections of code that still have tabs in it. Does Eclipse have an equivalent of the vim command :retab? This makes trying to read the changes in the code far more difficult sin

[jira] [Commented] (CB-487) Call to Device.setInfo() from cordova-ios disables asynchronous loading of a cordova-js

2012-06-04 Thread Filip Maj (JIRA)
[ https://issues.apache.org/jira/browse/CB-487?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13288895#comment-13288895 ] Filip Maj commented on CB-487: -- I don't think this should be something that the cordova-ios proje

[jira] [Created] (CB-860) MediaFile.getFormatData broken for Image from Capture

2012-06-04 Thread Libby Baldwin (JIRA)
Libby Baldwin created CB-860: Summary: MediaFile.getFormatData broken for Image from Capture Key: CB-860 URL: https://issues.apache.org/jira/browse/CB-860 Project: Apache Cordova Issue Type: Bug

[jira] [Commented] (CB-487) Call to Device.setInfo() from cordova-ios disables asynchronous loading of a cordova-js

2012-06-04 Thread Shazron Abdullah (JIRA)
[ https://issues.apache.org/jira/browse/CB-487?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=1320#comment-1320 ] Shazron Abdullah commented on CB-487: - Not sure what to do with this one. Fil?

[jira] [Commented] (CB-34) File Upload Fails with: The file was only partially uploaded.

2012-06-04 Thread Shazron Abdullah (JIRA)
[ https://issues.apache.org/jira/browse/CB-34?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13288876#comment-13288876 ] Shazron Abdullah commented on CB-34: For 2.0.0 when we drop iOS 3.0 support and can use blo

[jira] [Commented] (CB-78) Header support for PhoneGap's FileTransfer

2012-06-04 Thread Joe Bowser (JIRA)
[ https://issues.apache.org/jira/browse/CB-78?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13288877#comment-13288877 ] Joe Bowser commented on CB-78: -- This does not appear to be documented as of yet.

Re: Media.startRecord behavior - should it create the file?

2012-06-04 Thread Drew Walters
BlackBerry Smartphone: 1.) Yes, BlackBerry creates the media file. 2.) It is created at the path specified. 3.) Like Android, doesn't return an error if the file can't be saved/created/accessed. +1 to moving to W3C Audio API. On Mon, Jun 4, 2012 at 3:05 PM, Simon MacDonald wrote: > Android: > >

[jira] [Updated] (CB-848) GPS initialization is slow

2012-06-04 Thread Shazron Abdullah (JIRA)
[ https://issues.apache.org/jira/browse/CB-848?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Shazron Abdullah updated CB-848: Fix Version/s: 1.9.0 > GPS initialization is slow > -- > >

[jira] [Commented] (CB-615) Can't compile callback-ios, make crashes

2012-06-04 Thread Shazron Abdullah (JIRA)
[ https://issues.apache.org/jira/browse/CB-615?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13288873#comment-13288873 ] Shazron Abdullah commented on CB-615: - @Olivier still have this problem?

[jira] [Commented] (CB-749) dismissModalViewControllerAnimated native code does crash something inside cordova

2012-06-04 Thread Shazron Abdullah (JIRA)
[ https://issues.apache.org/jira/browse/CB-749?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13288871#comment-13288871 ] Shazron Abdullah commented on CB-749: - It's not that we don't trust you - but "99% sure" n

[jira] [Updated] (CB-749) dismissModalViewControllerAnimated native code does crash something inside cordova

2012-06-04 Thread Shazron Abdullah (JIRA)
[ https://issues.apache.org/jira/browse/CB-749?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Shazron Abdullah updated CB-749: Fix Version/s: 1.9.0 > dismissModalViewControllerAnimated native code does crash something inside

[jira] [Updated] (CB-615) Can't compile callback-ios, make crashes

2012-06-04 Thread Shazron Abdullah (JIRA)
[ https://issues.apache.org/jira/browse/CB-615?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Shazron Abdullah updated CB-615: Fix Version/s: 1.9.0 > Can't compile callback-ios, make crashes > -

[jira] [Resolved] (CB-858) Media record defaults to "sdcard" which may not be mounted.

2012-06-04 Thread Simon MacDonald (JIRA)
[ https://issues.apache.org/jira/browse/CB-858?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Simon MacDonald resolved CB-858. Resolution: Fixed I check to see if the sd card is mounted, if so I use it. If not then we default to

[jira] [Updated] (CB-821) Cordova crashes with EXEC_BAD_ACCESS when using camera on iOS 5.1.1

2012-06-04 Thread Shazron Abdullah (JIRA)
[ https://issues.apache.org/jira/browse/CB-821?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Shazron Abdullah updated CB-821: Fix Version/s: 1.9.0 @Tom if you have that sample code, that would be great. > Cordova

[jira] [Updated] (CB-647) Prefix/Namespace common native libraries

2012-06-04 Thread Shazron Abdullah (JIRA)
[ https://issues.apache.org/jira/browse/CB-647?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Shazron Abdullah updated CB-647: Fix Version/s: 1.9.0 > Prefix/Namespace common native libraries > -

[jira] [Commented] (CB-773) JSON.stringify error when making AJAX calls.

2012-06-04 Thread Shazron Abdullah (JIRA)
[ https://issues.apache.org/jira/browse/CB-773?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13288863#comment-13288863 ] Shazron Abdullah commented on CB-773: - Seems to be a limitation of our console.log impleme

[jira] [Assigned] (CB-773) JSON.stringify error when making AJAX calls.

2012-06-04 Thread Shazron Abdullah (JIRA)
[ https://issues.apache.org/jira/browse/CB-773?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Shazron Abdullah reassigned CB-773: --- Assignee: Patrick Mueller (was: Shazron Abdullah) Patrick - assigning to you so you can comment

[jira] [Updated] (CB-765) Header support for PhoneGap's FileTransfer

2012-06-04 Thread Shazron Abdullah (JIRA)
[ https://issues.apache.org/jira/browse/CB-765?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Shazron Abdullah updated CB-765: Fix Version/s: 1.9.0 Tentatively assigning to 1.9.0 version until I heard back from the Android guys r

[jira] [Updated] (CB-506) images taken via Camera.getPicture do not get deleted

2012-06-04 Thread Shazron Abdullah (JIRA)
[ https://issues.apache.org/jira/browse/CB-506?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Shazron Abdullah updated CB-506: Fix Version/s: 1.9.0 Tentatively assigning to 1.9.0 version > images taken via Camera.

Camera API - clean() function

2012-06-04 Thread Shazron
For this issue here: https://issues.apache.org/jira/browse/CB-506 Not sure when this is getting deprecated, but if not, we need a clean() function as described in the issue. It can be common, and iOS supports it for now, but other platforms it's just a noop. Like setMetadata for Entry.

[jira] [Created] (CB-859) Remove com.phonegap.api package from Android jar

2012-06-04 Thread Simon MacDonald (JIRA)
Simon MacDonald created CB-859: -- Summary: Remove com.phonegap.api package from Android jar Key: CB-859 URL: https://issues.apache.org/jira/browse/CB-859 Project: Apache Cordova Issue Type: Bug

[jira] [Updated] (CB-748) refactored-UUID is broken and changes over time!

2012-06-04 Thread Shazron Abdullah (JIRA)
[ https://issues.apache.org/jira/browse/CB-748?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Shazron Abdullah updated CB-748: Fix Version/s: 1.9.0 Provide a definitive uuid not based on MAC address, nor UDID - since the UUID fro

[jira] [Updated] (CB-828) iOS contact.save() stucks the UI from updating on heavy load & has memory leaks.

2012-06-04 Thread Shazron Abdullah (JIRA)
[ https://issues.apache.org/jira/browse/CB-828?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Shazron Abdullah updated CB-828: Fix Version/s: 1.9.0 > iOS contact.save() stucks the UI from updating on heavy load & has memory >

[jira] [Created] (CB-858) Media record defaults to "sdcard" which may not be mounted.

2012-06-04 Thread Simon MacDonald (JIRA)
Simon MacDonald created CB-858: -- Summary: Media record defaults to "sdcard" which may not be mounted. Key: CB-858 URL: https://issues.apache.org/jira/browse/CB-858 Project: Apache Cordova Issue

Re: Media.startRecord behavior - should it create the file?

2012-06-04 Thread Simon MacDonald
Android: 1) Yes, Android creates the media file. 2) It is hard coded to "/sdcard" which is horrible. I may fix that in 1.8 for it to check for external storage and use the default directory which would be "/sdcard" but at least it would check to see if the SD card is mounted. 3) It doesn't return

[jira] [Commented] (CB-78) Header support for PhoneGap's FileTransfer

2012-06-04 Thread Shazron Abdullah (JIRA)
[ https://issues.apache.org/jira/browse/CB-78?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13288848#comment-13288848 ] Shazron Abdullah commented on CB-78: Joe/Simon -- is this support documented in Android? I'

[jira] [Created] (CB-857) Add deprecation notice if user is running iOS 3.x

2012-06-04 Thread Shazron Abdullah (JIRA)
Shazron Abdullah created CB-857: --- Summary: Add deprecation notice if user is running iOS 3.x Key: CB-857 URL: https://issues.apache.org/jira/browse/CB-857 Project: Apache Cordova Issue Type: Ta

Media.startRecord behavior - should it create the file?

2012-06-04 Thread Becky Gibson
On iOS the file to record to in Medis.startRecord must exist. Since the other platforms don't specify in the docs that the user must create the file for recording, I assume the file is created. With the platform maintainers please confirm: 1) is the src file for Media.startRecord created if it d

[jira] [Reopened] (CB-855) Problems with the camera and getPicture on Android

2012-06-04 Thread Unai Sarasola (JIRA)
[ https://issues.apache.org/jira/browse/CB-855?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Unai Sarasola reopened CB-855: -- But ¿is possible the Cordova App and the Camara Intent consume the 60 MB of Ram that is free? With the plugin

[jira] [Resolved] (CB-856) document Camera options.popoverOptions and iOS iOS CameraPopoverOptions

2012-06-04 Thread Becky Gibson (JIRA)
[ https://issues.apache.org/jira/browse/CB-856?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Becky Gibson resolved CB-856. - Resolution: Fixed Fix Version/s: 1.8.0 Fixed with this commit: https://git-wip-us.apache.org/repos/a

cordova labs

2012-06-04 Thread Brian LeRoux
quick update that we now have a repo for the random (like the starter project) thank you jukka!!

Re: Release date for 1.8?

2012-06-04 Thread Filip Maj
OK, this leaves five issues for 1.8: https://issues.apache.org/jira/browse/CB-827 : Missing (network status plugin) native .cs file in WP7 https://issues.apache.org/jira/browse/CB-725 : Document bada migration for 1.6.1 -> 1.7 https://issues.apache.org/jira/browse/CB-726 : Document bada migratio

Re: Release date for 1.8?

2012-06-04 Thread Filip Maj
Do it, moving the constants from ios-only to common is not a big/breaking change so I would go ahead with confidence. On 6/4/12 10:51 AM, "Becky Gibson" wrote: >Ok - I had the concerns about CameraPopoverOptions reversed. > CameraPopoverOptions is a global object that is only generated for iOS >

Re: Release date for 1.8?

2012-06-04 Thread Becky Gibson
Ok - I had the concerns about CameraPopoverOptions reversed. CameraPopoverOptions is a global object that is only generated for iOS but can be used within the options to Camera.getPicture. Simon is actually concerned about having it as an iOS only option. If it is iOS only, then developer java

[jira] [Updated] (CB-152) Normalize Acceleration object x,y,z to return same range for all devices.

2012-06-04 Thread Filip Maj (JIRA)
[ https://issues.apache.org/jira/browse/CB-152?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Filip Maj updated CB-152: - Fix Version/s: (was: 1.8.0) 1.9.0 Moving to 1.9.. > Normalize Acceleration ob

[jira] [Updated] (CB-556) integrate cordova js with webos

2012-06-04 Thread Filip Maj (JIRA)
[ https://issues.apache.org/jira/browse/CB-556?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Filip Maj updated CB-556: - Description: Moving to 1.9 now... Affects Version/s: 1.8.0 1.6.0

Re: Release date for 1.8?

2012-06-04 Thread Brian LeRoux
> CB-597 + CB-563, CB-179, lets punt to 1.9 and start a thread discussing webos future > Other than that I think tagging 1.8 this week should be done ASAP. yes

[jira] [Commented] (CB-298) DEPRECATE "plugins" and "PhoneGap" global objects in JavaScript implementation

2012-06-04 Thread Filip Maj (JIRA)
[ https://issues.apache.org/jira/browse/CB-298?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13288729#comment-13288729 ] Filip Maj commented on CB-298: -- Punt to 1.9? sigh. > DEPRECATE "plugins" and "Ph

Re: Release date for 1.8?

2012-06-04 Thread Anis KADRI
I moved Bada File API support to 1.9 and deviceorientation to 2.0. FYI. I am good for 1.8! On Mon, Jun 4, 2012 at 10:36 AM, Filip Maj wrote: > For the iOS-specific constants, just tack them onto the common constants - > not that much overhead. > > I'm looking over the rest of the issues remaining

[jira] [Updated] (CB-563) Add deviceorientation api support

2012-06-04 Thread Anis Kadri (JIRA)
[ https://issues.apache.org/jira/browse/CB-563?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Anis Kadri updated CB-563: -- Fix Version/s: (was: 1.8.0) 2.0.0 > Add deviceorientation api support >

[jira] [Updated] (CB-597) Support for File api

2012-06-04 Thread Anis Kadri (JIRA)
[ https://issues.apache.org/jira/browse/CB-597?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Anis Kadri updated CB-597: -- Fix Version/s: (was: 1.8.0) 1.9.0 > Support for File api > > >

[jira] [Updated] (CB-606) ./bin/create script

2012-06-04 Thread Filip Maj (JIRA)
[ https://issues.apache.org/jira/browse/CB-606?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Filip Maj updated CB-606: - Fix Version/s: (was: 1.8.0) 1.9.0 Assignee: Filip Maj (was: Michael Brooks) > ./

  1   2   >