Re: Spam control in the Wiki

2013-04-19 Thread Shazron
LucasHolmquist added On Fri, Apr 19, 2013 at 6:59 AM, Lucas Holmquist wrote: > LucasHolmquist > > > On Apr 17, 2013, at 2:33 PM, Shazron wrote: > > > Thanks Jukka, > > Added the committers from the list plus any Apache members > > > > > > On Wed, Ap

Re: plugin.xml config-file setting not copying all tags

2013-04-19 Thread Shazron
I was just playing with plugman yesterday with the Facebook Connect plugin, it did however install my access tags that were in the top-level: https://github.com/phonegap/phonegap-facebook-plugin/blob/plugman-FB-SDK-3.2.1/plugin.xml#L12-L16 On Fri, Apr 19, 2013 at 7:23 AM, Michal Mocny wrote: >

Re: [Android] HTTP Authentication and WebKit: WTF?

2013-04-19 Thread Shazron
It's not just Android, iOS as well: https://issues.apache.org/jira/browse/CB-2415 On Fri, Apr 19, 2013 at 3:16 PM, Joe Bowser wrote: > Hey > > I'm looking at CB-2962, and I'm not sure how we can resolve this one. > Should we intercept any XHR requests with a Basic Auth token, and set > it on t

Re: Re-tag Cordova Js?

2013-04-19 Thread Shazron
Looking at cordova-js: https://git-wip-us.apache.org/repos/asf?p=cordova-js.git;a=summary The 2.7.0rc1 tag, the last two commits: https://git-wip-us.apache.org/repos/asf?p=cordova-js.git;a=log;h=refs/tags/2.7.0rc1 1. Fixed version number 2. Set VERSION to 2.7.0 I can't seem to find these commits

Re: Re-tag Cordova Js?

2013-04-19 Thread Shazron
a detached head state when pushed to the repo. I wasn't too > sure what was going on, so I decided to go with the flow. > > > > On 19 April 2013 16:46, Shazron wrote: > > > Looking at cordova-js: > > https://git-wip-us.apache.org/repos/asf?p=cordova-js

Re: Re-tag Cordova Js?

2013-04-19 Thread Shazron
You checked in merge conflicts. e.g. +<<<<<<< HEAD 2.5.0 +=== +2.7.0rc1 +>>>>>>> On Fri, Apr 19, 2013 at 5:14 PM, Tim Kim wrote: > Ok, it should be good to go now. > > > On 19 April 2013 16:59, Shazron wrote: > > > Can you

Re: Re-tag Cordova Js?

2013-04-19 Thread Shazron
gt; > > NOOO > > > > > > On 19 April 2013 17:15, Shazron wrote: > > > > > You checked in merge conflicts. e.g. > > > > > > +<<<<<<< HEAD > > > 2.5.0 > > > +=== > > >

Re: Release Page Updated

2013-04-22 Thread Shazron
Coho was named for an ex-Vancouver Canucks player that was traded I believe (and of course is also a native salmon species in Vancouver). That copyright tool is Apache RAT http://creadur.apache.org/rat/ On Mon, Apr 22, 2013 at 1:01 PM, Andrew Grieve wrote: > I pretty much re-wrote the page:

Re: (CB-3022) add default textbox value for notification.prompt dialog

2013-04-23 Thread Shazron
I would say this is low risk since it's adding a parameter at the end (so existing usage works) where we can have a default of "" which it is already I think. On Tue, Apr 23, 2013 at 10:14 AM, Andrew Grieve wrote: > Makes sense. > > > On Tue, Apr 23, 2013 at 11:45 AM, James Jong wrote: > > > ht

Re: reviews.apache.org

2013-04-24 Thread Shazron
Sounds cool - added myself to cordova as shazron On Wed, Apr 24, 2013 at 11:42 AM, Brian LeRoux wrote: > Added myself. Could be promising. > > On Wed, Apr 24, 2013 at 7:35 AM, Andrew Grieve > wrote: > > https://issues.apache.org/jira/browse/INFRA-5889 > > > > We

Re: [plugin.xml spec] usefulness of preserve-dirs attribute?

2013-04-24 Thread Shazron
d go. > > Can I safely remove this functionality? > > [1] https://github.com/phonegap-build > [2] > https://github.com/couchbaselabs/cordova-browserid/blob/master/plugin.xml > [3] https://github.com/shazron/KeychainPlugin/blob/master/plugin.xml > [4] https://github.com/shazron/TestFlightPlugin/blob/master/plugin.xml > >

Re: [plugin.xml spec] usefulness of preserve-dirs attribute?

2013-04-24 Thread Shazron
ibute, that attribute gets tacked > onto the end of the namespaced location for plugin native code, I.e. > Plugin with id "foo.bar.baz": > > > > Results in > > myApp/Plugins/foo.bar.baz/emFiles/MyPlugin.m > > > > On 4/24/13 1:57 PM, "Shazron"

[iOS] Project-level CLI changes into 2.7.0

2013-04-25 Thread Shazron
I've checked in the fixes for these into master: https://issues.apache.org/jira/browse/CB-2998 https://issues.apache.org/jira/browse/CB-2980 https://issues.apache.org/jira/browse/CB-2988 https://issues.apache.org/jira/browse/CB-2915 https://issues.apache.org/jira/browse/CB-2964 https://issues.apach

Re: [iOS] Project-level CLI changes into 2.7.0

2013-04-25 Thread Shazron
Ok sounds good then. On Thu, Apr 25, 2013 at 8:55 AM, Filip Maj wrote: > Meh, I'd wait for 2.8. Let the integration bake a little via cordova-cli > > On 4/25/13 6:48 AM, "Shazron" wrote: > > >I've checked in the fixes for these into master: > >h

Re: Question about caching

2013-04-25 Thread Shazron
We set up a cache in AppDelegate.m[1], and I suppose you could hook into CDVPageDidLoadNotification[2] in your own plugin, then clear the cache[3]: e.g. [[NSURLCache sharedURLCache] removeAllCachedResponses] [1] https://github.com/apache/cordova-ios/blob/c6e71147386d4ad94b07428952d1aae0a9cbf3f5/

Re: Question about caching

2013-04-25 Thread Shazron
; > > [[NSURLCache sharedURLCache] removeAllCachedResponses]; > > [self.webView loadRequest:[NSURLRequest requestWithURL:[NSURL > fileURLWithPath:reloadTarget]]]; > > > On Thu, Apr 25, 2013 at 3:57 PM, Shazron wrote: > > > We set up a cache in AppDelegate.m[1], and I suppose yo

Re: Scripts for CLI

2013-04-29 Thread Shazron
I think the main purpose of the scripts being in the project is that they can exist outside of having the repo source download around, afaik. The script upgrades which I've been documenting have been a straight copy and paste of the whole 'cordova' folder. I suppose we could have a: bin/cli-up

Re: Scripts for CLI

2013-04-29 Thread Shazron
*over-write (oops on the oop) On Mon, Apr 29, 2013 at 11:15 AM, Shazron wrote: > I think the main purpose of the scripts being in the project is that they > can exist outside of having the repo source download around, afaik. > The script upgrades which I've been documenti

Re: Naming: cordova-2.8.0.js --> cordova.js

2013-04-30 Thread Shazron
+1 On Tue, Apr 30, 2013 at 12:54 PM, James Jong wrote: > +1 Cleaner. Thanks Andrew! > > -James Jong > > On Apr 30, 2013, at 3:31 PM, Lorin Beer wrote: > > > +1 > > duplicated information is a good redundancy to remove > > > > > > On Tue, Apr 30, 2013 at 11:41 AM, Brian LeRoux wrote: > > > >>

[iOS][OS X] xctool

2013-05-02 Thread Shazron
Drop-in replacement for xcodebuild authored by Facebook. Apache 2.0 licensed. Not proposing we use it, but it does have some benefits

Re: [iOS][OS X] xctool

2013-05-02 Thread Shazron
D'oh: https://github.com/facebook/xctool On Thu, May 2, 2013 at 11:25 AM, Shazron wrote: > Drop-in replacement for xcodebuild authored by Facebook. Apache 2.0 > licensed. > Not proposing we use it, but it does have some benefits >

Re: Conference Season and Holidays

2013-05-02 Thread Shazron
Congrats Braden and Andrew :) I'm wondering if we should have a shared Google Calendar for this (gonna be away a lot) On Thu, May 2, 2013 at 7:25 AM, Michal Mocny wrote: > No plans for vacations yet, though I will likely take some in July. > > No conferences until PGDay. > > -Michal > > > On

Re: Standardising How to Get Cordova Version in a Project

2013-05-02 Thread Shazron
Why don't we defer to each platform how to read the version - return it in a script? kinda like bin/check_reqs On Thu, May 2, 2013 at 2:18 PM, Tim Kim wrote: > Hey gang, > > So I'm working on the engine tag for plugman and I've come across a bit of > a problem. For those who don't know, the eng

JIRA issues - releasing 2.7.0

2013-05-02 Thread Shazron
Giving notice that I will 'release' the 2.7.0 version on JIRA tomorrow, which means that 2.7.0 issues will be pushed to 2.8.0.

Re: Standardising How to Get Cordova Version in a Project

2013-05-02 Thread Shazron
z's idea. > > +1 to that! > > > On 2 May 2013 15:22, Brian LeRoux wrote: > > > thats a great idea > > > > On Thu, May 2, 2013 at 2:46 PM, Erik Johnson > > wrote: > > > > > > +1 on this idea. > > > > > > -

[iOS] XmlHttpRequest and 401 Unauthorized

2013-05-02 Thread Shazron
To summarize, this is an iOS thing, not a Cordova thing. We are just trying to work around it. JIRA issue: https://issues.apache.org/jira/browse/CB-2415 The proposed workaround is intrusive in that we basically need to create our own NSURLConnection for each shouldStartLoadRequest call, and handl

Re: Camera UI Language

2013-05-03 Thread Shazron
Hi Hedcler, This list is for developing Cordova. For using Cordova there is the PhoneGap Google Groups: https://groups.google.com/forum/?fromgroups#!forum/phonegap That being said - the UI is controlled by Xcode and not Cordova. See this question to have your answer: https://github.com/shazron

Re: [iOS][OS X] xctool

2013-05-03 Thread Shazron
compiling using different SDKs just to check, but I don't know if we can really test on the iOS 5 SDK for example since it is not bundled anymore. On Fri, May 3, 2013 at 10:22 AM, Filip Maj wrote: > Can you summarize the benefits for the project, Shaz? > > On 5/2/13 11:26 AM, &q

Re: Recap of command-line tools meeting

2013-05-03 Thread Shazron
Thanks Braden! btw Wiki is back up woohoo On Fri, May 3, 2013 at 7:35 AM, Andrew Grieve wrote: > Great! Thanks for the recap Braden! The plan sounds great! > > > On Thu, May 2, 2013 at 8:22 PM, Braden Shepherdson >wrote: > > > Today, Brian LeRoux, Anis Kadri, Herm Wong, Steve Gill and me met u

Re: Logger plugin and console

2013-05-06 Thread Shazron
+1 Sounds reasonable to me On Mon, May 6, 2013 at 7:42 AM, Ian Clelland wrote: > Prompted by CB-3327, I've been looking again at the implementation of the > Logger plugin and how it interacts with the native JS console object. > > From what I can see, the current situation is this: > > * We hav

Re: [Android] Can rename DroidGap to CordovaActivity?

2013-05-06 Thread Shazron
Pull request plus jira issue then ? ;) On Mon, May 6, 2013 at 1:35 PM, Lorin Beer wrote: > I've been listening to you complain about the DroidGap class name for years > now, and will fully support you in the refactor. > I'll even plus one this on the rename > > but I have a question to ask: > >

Re: Cordova version 4.6 Plugin issue

2013-05-13 Thread Shazron
There is no cordova version 4.6 We abandoned use of Cordova.plist a long time ago, and certainly don't use it in 2.7.0 On Mon, May 13, 2013 at 7:22 AM, Nithiyanandan Sathiyanathan < nithiyananda...@infosys.com> wrote: > Hi team, > > I am trying to create a custom plugin for phonegap. But, whil

Re: JIRA issues - releasing 2.7.0

2013-05-13 Thread Shazron
Done - 93 issues migrated to 2.8.0. Sorry for flood of emails you will receive :P On Thu, May 2, 2013 at 2:48 PM, Shazron wrote: > Giving notice that I will 'release' the 2.7.0 version on JIRA tomorrow, > which means that 2.7.0 issues will be pushed to 2.8.0. > >

iOS CDVLocalStorage plugin and config.xml

2013-05-16 Thread Shazron
I noticed that it has been removed in config.xml: https://github.com/apache/cordova-ios/blob/a07794d88c8e9cf72c24427908462a583241834b/CordovaLibTests/CordovaLibApp/config.xml Just a copy and paste thing or something more? (are we removing it). I'm in favour of not patching Apple's mistakes (sorry

Re: iOS CDVLocalStorage plugin and config.xml

2013-05-16 Thread Shazron
Seems like it was removed from the pull request to convert plugin to feature. Re-adding. On Thu, May 16, 2013 at 10:00 AM, Shazron wrote: > I noticed that it has been removed in config.xml: > > https://github.com/apache/cordova-ios/blob/a07794d88c8e9cf72c24427908462a583241834b/Cordov

Re: apache git servers f'ed

2013-05-16 Thread Shazron
Same here when pushing to cordova-ios: Pushing to https://git-wip-us.apache.org/repos/asf/cordova-ios.git Counting objects: 5, done. Delta compression using up to 8 threads. Compressing objects: 33% (1/3) Compressing objects: 66% (2/3) Compressing objects: 100% (3/3) Compressing objects: 100% (3

Re: apache git servers f'ed

2013-05-16 Thread Shazron
Filing an INFRA issue. On Thu, May 16, 2013 at 4:10 PM, Shazron wrote: > Same here when pushing to cordova-ios: > > Pushing to https://git-wip-us.apache.org/repos/asf/cordova-ios.git > Counting objects: 5, done. > Delta compression using up to 8 threads. > Compressing

Re: apache git servers f'ed

2013-05-16 Thread Shazron
Ok, will hold On Thu, May 16, 2013 at 4:12 PM, Filip Maj wrote: > Im in the infra channel, someone's working on it > > On 5/16/13 4:10 PM, "Shazron" wrote: > > >Same here when pushing to cordova-ios: > > > >Pushing to https://git-wip-us.apache.org/

Re: apache git servers f'ed

2013-05-16 Thread Shazron
Seems to be working ok now On Thu, May 16, 2013 at 4:13 PM, Shazron wrote: > Ok, will hold > > > On Thu, May 16, 2013 at 4:12 PM, Filip Maj wrote: > >> Im in the infra channel, someone's working on it >> >> On 5/16/13 4:10 PM, "Shazron" wro

Re: Changing config and plugin XML namespace

2013-05-17 Thread Shazron
+1 On Friday, May 17, 2013, Filip Maj wrote: > Sounds good to me > > On 5/17/13 8:07 AM, "Ian Clelland" > > wrote: > > >A minor cleanup task, but something that I'd like to get fixed before > >anyone decides to point any serious XML tools at our plugin XML files. > > > >I'd like to change the nam

Re: Hello

2013-05-17 Thread Shazron
Welcome David! On Fri, May 17, 2013 at 11:08 AM, David Kemp wrote: > Hi all, > > My name is David Kemp, and I recently joined the Google team contributing > to Cordova. > My experience is primarily in application development in Linux, Windows and > Android, but I'm looking forward to more. > >

Re: FW: cordova API doc queries

2013-05-20 Thread Shazron
Answers inline. * The criteria for when online/offline events fire (internet > connection) seem vague, especially with ubiquitous non-Wifi network > options. Do various devices use the same threshold criteria to fire > the event? > > Offline/online is common code in the JS that uses Networ

jira down for maintenance :/

2013-05-21 Thread Shazron

Re: cordova API doc queries

2013-05-22 Thread Shazron
events. I just tested with > PhoneGap 2.6 and Ripple, and on Chrome, it did *not* fire an event handler > for network change when the app started. > > > On 5/20/13 4:05 PM, "Shazron" wrote: > > > >> * Do relevant online/offline events fire when the app start

Re: FW: cordova API doc queries (pause event)

2013-05-22 Thread Shazron
ry for all the naive questions, and thanks, > > --Mike S > > > From: Shazron [shaz...@gmail.com] > Sent: Monday, May 20, 2013 5:05 PM > To: dev@cordova.apache.org > Cc: Michael Sierra > Subject: Re: FW: cordova API doc queries > > ... > * The doc

Re: cordova API doc queries

2013-05-22 Thread Shazron
n of using event > listeners in onDeviceReady and adding a check immediately as well. That > seems cleaner than having both an onLoad and onDeviceReady. > > I'm confused though why the docs bug is marked fixed. The connection docs > still use onDeviceReady. > > > On 5/22/

device.name removal

2013-05-22 Thread Shazron
2.9.0? Deprecated since 2.3.0 https://issues.apache.org/jira/browse/CB-2200#comment-13664447

Re: cordova API doc queries

2013-05-22 Thread Shazron
hough why the docs bug is marked fixed. The connection docs > still use onDeviceReady. > > > On 5/22/13 11:24 AM, "Shazron" wrote: > > >It should - what you are seeing is probably related to this issue: > >https://issues.apache.org/jira/browse/CB-2096 > > >

Re: 2.8.0rc1

2013-05-22 Thread Shazron
Fixed the OS X issue (CB-3443). On Wed, May 22, 2013 at 1:13 PM, Andrew Grieve wrote: > LGTM so long as you've tested that the error even actually fires (I know it > didn't use to on some older browsers). > > The other thing still outstanding is > https://issues.apache.org/jira/browse/CB-3307 f

Re: svngit2jira

2013-05-24 Thread Shazron
> > > > > +1 that jumped out at me from the letter the Infra guys sent out. > > > > > > > > They probably won't be happy when we ask for it on 20 git repos, > though > > > :P > > > > > > > > Braden > > > > &g

Re: svngit2jira

2013-05-24 Thread Shazron
Filed: https://issues.apache.org/jira/browse/INFRA-6308 On Fri, May 24, 2013 at 11:33 AM, Shazron wrote: > I think it's pretty obvious all of us want this, I'll file the INFRA issue. > > > On Fri, May 24, 2013 at 10:39 AM, Michael Brooks > wrote: > >> +1 mos

Re: svngit2jira

2013-05-24 Thread Shazron
Woot! It's all set up - Daniel Gruno in the ticket says report back if it doesn't :) On Fri, May 24, 2013 at 11:44 AM, Shazron wrote: > Filed: https://issues.apache.org/jira/browse/INFRA-6308 > > > On Fri, May 24, 2013 at 11:33 AM, Shazron wrote: > >> I thin

Re: svngit2jira

2013-05-24 Thread Shazron
; What is the exact syntax / capabilities? > > > > On Fri, May 24, 2013 at 11:53 AM, Shazron wrote: > > Woot! It's all set up - Daniel Gruno in the ticket says report back if it > > doesn't :) > > > > > > On Fri, May 24, 2013 at 11:44 AM, Shazron

Re: svngit2jira

2013-05-24 Thread Shazron
https://git-wip-us.apache.org/repos/asf?p=cordova-wp7.git;a=commit;h=700a0ea3 On Fri, May 24, 2013 at 12:10 PM, Shazron wrote: > Actually - notify the ticket IF it works, then it can be closed. > > Just have CB- somewhere in your commit message (I think), it should > automagically

Re: svngit2jira

2013-05-24 Thread Shazron
Never mind, CB- was a really old commit, from a branch merge On Fri, May 24, 2013 at 12:25 PM, Shazron wrote: > Looks like it works if its at the start of the line and enclosed in > parentheses, e.g [CB-3495]: > https://issues.apache.org/jira/browse/CB-3495 > http://git-wip-u

iOS Build Settings - pull requests (2.8.0?)

2013-05-27 Thread Shazron
I think these two issues are medium risk to put into 2.8.0. What do you think? Wrong Linker Flag for project template https://issues.apache.org/jira/browse/CB-3507 requiring all_load linker flag is bad practice and breaks other SDKs with Objective-C categories https://issues.apache.org/jira/brows

Re: iOS Build Settings - pull requests (2.8.0?)

2013-05-27 Thread Shazron
Alright good enough for me. Leaving it for 2.9.0 On Mon, May 27, 2013 at 12:58 PM, Andrew Grieve wrote: > They would require writing and upgrade script for. I don't think it's worth > cherry-picking though since they aren't really fixing anything. > > > On Mon, Ma

Re: 2.8.0

2013-05-30 Thread Shazron
I'm tagging iOS and OS X shortly On Thu, May 30, 2013 at 12:03 PM, Al Harding wrote: > I also sent off an email to Steve too to see about helping us out. > > Let's do this! > Al > > > > On Thu, May 30, 2013 at 11:40 AM, Lorin Beer >wrote: > > > I think the delay is mostly due to our team b

Re: Change project settings in runtime

2013-05-30 Thread Shazron
No, no work has been done on this. Thanks for filing: https://issues.apache.org/jira/browse/CB-3552 On Thu, May 30, 2013 at 6:11 AM, Ariel Erlijman wrote: > Hi, > > I have just found this post > > http://mail-archives.apache.org/mod_mbox/cordova-dev/201302.mbox/%3ccae6o_-apep2uzbdkaxcts24mz95f

Re: NPM Cordova CLI Installer - Massive Problems on Windows

2013-05-30 Thread Shazron
Hi Andreas, any details on what exactly is wrong? On Thu, May 30, 2013 at 12:40 PM, Andreas Sander wrote: > Hi, > > my colleagues have massive problems with cordova npm install script on > their windows machines (Windows 8). > > I only want to tell you that because it's simply not possible to in

Re: cordova-cli emulate deletes plugin's javascript

2013-05-30 Thread Shazron
Hi Don, do you mind filing an issue in JIRA so this doesn't get lost? A lot of devs are away at @jsconf currently On Thu, May 30, 2013 at 12:45 PM, Don Coleman wrote: > cordova-cli 2.7.4 is deleting the javascript files for plugins when I run > cordova emulate with Android. > > Anyone have idea

Re: 2.8.0

2013-05-30 Thread Shazron
Using coho to tag. D'oh - Andrew already tagged iOS, doing OS X now On Thu, May 30, 2013 at 1:58 PM, Shazron wrote: > I'm tagging iOS and OS X shortly > > > On Thu, May 30, 2013 at 12:03 PM, Al Harding wrote: > >> I also sent off an email to Steve

Re: 2.8.0

2013-05-30 Thread Shazron
Joe Bowser wrote: > > > This is for RC1, right? Do we need docs to even be tagged to do an RC? > > > > > > On Thu, May 30, 2013 at 5:36 PM, Lorin Beer > > wrote: > > >> Blocking issues on Mobile Spec have been tested and resolved. > > >> Mob

Re: 2.8.0

2013-05-30 Thread Shazron
>wrote: > > > Anis, if you can test this for us before the end of today, great. > > > > Otherwise, +1 for tagging at EOD, allowing Steve to cut the release > > first thing tomorrow. > > > > On Thu, May 30, 2013 at 3:40 PM, Shazron wrote: > > > Someon

Re: 2.8.0

2013-05-30 Thread Shazron
Not sure who tagged 2.8.0rc1 on master2, but it really should have been tagged in the 2.8.x branch. https://git-wip-us.apache.org/repos/asf?p=cordova-cli.git;a=shortlog;h=refs/heads/master2 On Thu, May 30, 2013 at 4:58 PM, Shazron wrote: > Not sure how to proceed with this, I'm prob

Re: 2.8.0

2013-05-31 Thread Shazron
Updated the cli tag to be on 2.8.x branch On Thu, May 30, 2013 at 5:13 PM, Shazron wrote: > Not sure who tagged 2.8.0rc1 on master2, but it really should have been > tagged in the 2.8.x branch. > > https://git-wip-us.apache.org/repos/asf?p=cordova-cli.git;a=shortlog;h=refs/h

Re: Baby Grieve

2013-05-31 Thread Shazron
Congrats Andrew!! :) On Fri, May 31, 2013 at 7:00 AM, Andrew Grieve wrote: > Coming 1 month early > > Everett Arend Grieve born Thursday May 30 at 9:45 am. 5 lbs 15 oz. 18.5 > inches long. > > Mom is currently in the ACOU and Everett in the ICU. They are on track to > meet today! We will b

Re: Widening the window (was: The Deprecation of Froyo)

2013-05-31 Thread Shazron
> >>>>> > >>>>> On Fri, Apr 26, 2013 at 9:04 AM, Andrew Grieve > > >>>>> wrote: > >>>>>> Joe - did you take any action here? JIRA issue? changing of min > >>> version? > >>>>>> Does this mean we

Re: [VOTE] Release Apache Cordova 2.8.0

2013-05-31 Thread Shazron
+1 On Fri, May 31, 2013 at 12:12 PM, Steven Gill wrote: > Hey, > > A release candidate for 2.8.0 is available at: > > https://dist.apache.org/repos/dist/release/cordova/ > > Please vote on releasing this package as Apache Cordova 2.8.0. > > The vote is open for the next 3 days and passes if a ma

Re: Widening the window (was: The Deprecation of Froyo)

2013-05-31 Thread Shazron
I always forget about enterprise until Kevin Hawkins from Salesforce brings up some enterprise-y issues. Which reminds me of a conversation I had with a Cordova dev/shop that is still using BB 5.0 Cordova for banking apps in Nigeria (their platform is used by a majority of banks there). Because tha

Re: 2.8.0

2013-06-02 Thread Shazron
gt;> > >wrote: > >>>> > > >>>> > > Okay. Got it packaged up. 2.8.0rc1 can be found at > >>>> > > https://dist.apache.org/repos/dist/release/cordova/. > >>>> > > > >>>> > > I will start an

Re: Meeting Recorder for #cordova on irc.freenode.net?

2013-06-02 Thread Shazron
+1 On Sat, Jun 1, 2013 at 7:26 PM, Tim Kim wrote: > +1 > > It'd be nice to look up a particular discussion if you weren't in one. > > > On 1 June 2013 17:56, Filip Maj wrote: > > > The Infra guys posted about some new features they've worked on (the > > git->JIRA commenting is one that Shaz al

git-wip down

2013-06-02 Thread Shazron
Somehow my nick was banned on IRC #asfinfra. Contacted them through web IRC but I don't know if any op has seen my message Pushing to https://git-wip-us.apache.org/repos/asf/cordova-ios.git error: The requested URL returned error: 502 while accessing https://git-wip-us.apache.org/repos/asf/c

Re: git-wip down

2013-06-02 Thread Shazron
It's back up. On Sun, Jun 2, 2013 at 1:55 PM, Shazron wrote: > Somehow my nick was banned on IRC #asfinfra. Contacted them through web > IRC but I don't know if any op has seen my message > > > > Pushing to https://git-wip-us.apache.org/repos/asf/cordova-ios.gi

Re: Meeting Recorder for #cordova on irc.freenode.net?

2013-06-03 Thread Shazron
Dare I say... a git repo for logs? ;) On Mon, Jun 3, 2013 at 11:26 AM, Bryan Bishop wrote: > On Sat, Jun 1, 2013 at 7:56 PM, Filip Maj wrote: > > > there's one where we can get the ASFBot to idle in #cordova on irc, and > we > > can use it to start/stop recording of meetings that we may have i

Re: cordova-cli emulate deletes plugin's javascript

2013-06-03 Thread Shazron
cordova_plugins.json --> shouldn't be a problem I don't think unless you are using the element. Yes it can - see this for an example: https://github.com/shazron/TestFlightPlugin/blob/master/plugin.xml On Mon, Jun 3, 2013 at 7:40 PM, Don Coleman wrote: > I think the javascrip

Re: meet up in SF next week (June 9-14)?

2013-06-05 Thread Shazron
Hi James, I will be at WWDC next week, let's meet up. Feel free to drop by the Adobe SF office as well :) (although its not exactly near Moscone West) On Wed, Jun 5, 2013 at 8:42 AM, James Jong wrote: > I was able to get a late ticket to go to WWDC so I'll be in SF next week. > Anyone else her

[CB-1108] Migrate config.xml to the W3C spec

2013-06-07 Thread Shazron
It'll be nice to be on the same page for config.xml for 3.0.0 We should decide what to do with this issue: https://issues.apache.org/jira/browse/CB-1108 plugin onload/init already supported on iOS and Android. the element issue's last comment had Fil suggesting it go into each platform's /cordov

Re: Using Google Play "LocationClient" API

2013-06-10 Thread Shazron
We generally follow w3c specs (which in the implementation would use vendor specific implementations). I reckon this would be a plugin... On Mon, Jun 10, 2013 at 1:51 AM, Kieran Shaw wrote: > Does Cordova for Android only use non-google specific APIs? > > I saw an interesting video at the weeken

Re: Hello World!

2013-06-10 Thread Shazron
Welcome Lisa and Carlos! On Mon, Jun 10, 2013 at 2:59 PM, Michal Mocny wrote: > Hello! Welcome :) > > > On Mon, Jun 10, 2013 at 5:11 PM, Ken Wallis > wrote: > > > Welcome to the group Lisa! > > > > I do have to ask, have you looked at the new BlackBerry's? > > > > Sent from my BlackBerry 10 sm

Re: 2.9.0 + RC objectives

2013-06-10 Thread Shazron
I like the CLI focus for iOS, and hardening - no new features On Mon, Jun 10, 2013 at 3:02 PM, Michal Mocny wrote: > If we get it in to 2.9 it gives us time to test in rcs and in the real > world before shifting focus to the mega 3.0 push where we will have enough > to do. In other words, I su

Re: Plugin and CordovaPlugin

2013-06-11 Thread Shazron
Whatever we decide can we be extra loud about it? Blog posts, tweets, google groups. On Tuesday, June 11, 2013, Joe Bowser wrote: > OK, We actually did deprecate this properly. I don't know how I > missed this edit Simon did on the Wiki: > > https://wiki.apache.org/cordova/DeprecationPolicy > >

Re: Hi group

2013-06-11 Thread Shazron
Welcome Piotr! On Tuesday, June 11, 2013, Filip Maj wrote: > Welcome man! > > I would totally link you to all the repos and which ones are important and > how to get started, but the apache git servers we rely on are currently > down :( > > On 6/11/13 6:47 AM, "James Jong" > > wrote: > > >Great t

2.8.0 Release in JIRA

2013-06-11 Thread Shazron
Pulling the trigger in JIRA tonight - moving unresolved 2.8.0 issues to 2.9.0

Re: 2.9.0rc1 this coming monday??

2013-06-13 Thread Shazron
I wish I could say there was more velocity in the iOS / OS X repos but there hasn't been any with me being away at WWDC this week, but if that's where the wind blows I am but a feather. Will try to get more issues resolved by rc2. On Thu, Jun 13, 2013 at 9:27 AM, Lorin Beer wrote: > +1, let's ta

Re: [Announce] Cordova 2.8.1 released

2013-06-13 Thread Shazron
Can someone help this guy out? Not sure if it's an actual issue with 2.8.1: https://groups.google.com/d/msg/phonegap/ZjvaeEXBNPE/se-VnXef2NkJ On Wed, Jun 12, 2013 at 4:24 PM, Steven Gill wrote: > Just pushed it out. It is the same as 2.8.0 for all platforms except > Android. Plugin was re-added

Re: 2.9.0rc1 this coming monday??

2013-06-13 Thread Shazron
> > > On Thu, Jun 13, 2013 at 11:01 AM, Shazron wrote: > > > I wish I could say there was more velocity in the iOS / OS X repos but > > there hasn't been any with me being away at WWDC this week, but if that's > > where the wind blows I am but a feat

Re: iOS - Webkit Debug Proxy

2013-06-17 Thread Shazron
Awesome - although if you are developing on Mac, you can already use Safari 6: http://moduscreate.com/enable-remote-web-inspector-in-ios-6/ But this will allow you to use Chrome if you want to, I suppose On Mon, Jun 17, 2013 at 12:41 PM, Andreas Sander wrote: > Hi! > > I just want to share a bri

Documentation update to previous version

2013-06-17 Thread Shazron
Should I bother? I know they will go in edge. There are a couple of issues: https://issues.apache.org/jira/browse/CB-3753 https://issues.apache.org/jira/browse/CB-3752 Basically it's weird since if I added it to the 2.8.0 folder, it's not in the 2.8.x branch, but is in master... So for older vers

Re: Whitelist and Wildcards

2013-06-17 Thread Shazron
iOS doesn't use the subdomains attribute, relying on the wildcard in the origin attribute only. On Mon, Jun 17, 2013 at 4:10 PM, Joe Bowser wrote: > Hey > > I just answered a question on StackOverflow about the whitelist and > wildcards. Currently, on Android, doing this: > > > > > doesn't w

Re: Plugins and IP

2013-06-18 Thread Shazron
For iOS plugins, compile the source as a lib (.a file). For example, in the TestFlightPlugin I include TestFlight's lib: https://github.com/shazron/TestFlightPlugin https://github.com/shazron/TestFlightPlugin/blob/master/plugin.xml#L35 and provide the headers of course On Tue, Jun 18, 20

Re: Plugins and IP

2013-06-18 Thread Shazron
Forgot to mention, you should build the lib as a fat binary with all architectures, don't forget i386 if your users plan to test on the Simulator On Tue, Jun 18, 2013 at 7:04 AM, Shazron wrote: > For iOS plugins, compile the source as a lib (.a file). For example, in > the TestFli

Re: Plugins and IP

2013-06-18 Thread Shazron
imon.macdon...@gmail.com] > Sent: Tuesday, June 18, 2013 7:14 AM > To: dev@cordova.apache.org > Subject: Re: Plugins and IP > > Same deal on Android except you would use a jar or if UI is involved a > library project. > Simon Mac Donald > http://hi.im/simonmacdonald > >

Re: 2.9.0rc1 this coming monday??

2013-06-18 Thread Shazron
;> > >>>>>> On Mon, Jun 17, 2013 at 1:04 PM, Ian Clelland > > >>>>>> wrote: > >>>>>> > >>>>>>> The only thing that I'm working on this morning that could be a > >>>>>>> candidate > >>>

Re: Release Masters?

2013-06-18 Thread Shazron
Echoing Fil here. I am the 'lead' for iOS and OS X but anyone can take over if they wish. What I'm interested in is who should be the "second" in case I can't do it (for example I am away almost all of August). Technically anyone can take over but it will be nice if they are up to speed and have th

Re: Documentation update to previous version

2013-06-18 Thread Shazron
Yeah I'm interested in the flow as well. I think we published everything again in older releases, not sure if we are still doing that going forward On Tue, Jun 18, 2013 at 9:30 AM, Marcel Kinard wrote: > On Jun 17, 2013, at 6:21 PM, Shazron wrote: > > > Should I bother? I kno

Re: Release Masters?

2013-06-18 Thread Shazron
1:18 PM, Andrew Grieve wrote: > > > Okay, created a new release bug & sub-tasks here: > > https://issues.apache.org/jira/browse/CB-3906 > > > > If you want to own a component, just assign it to yourself. > > > > > > On Tue, Jun 18, 2013 at 12:33 PM, Shazr

Re: ios commit: Update JS snapshot to version 2.9.0rc1

2013-06-18 Thread Shazron
The version in the js says 2.7.0rc1 :/ On Tue, Jun 18, 2013 at 10:49 AM, wrote: > Updated Branches: > refs/heads/master ccf5d88a4 -> d9d77c4fa > > > Update JS snapshot to version 2.9.0rc1 > > > Project: http://git-wip-us.apache.org/repos/asf/cordova-ios/repo > Commit: http://git-wip-us.apache

Re: Documentation update to previous version

2013-06-19 Thread Shazron
at are only used by coho. > However, when cordova-docs is revamped to not include all versions, then > the tags and release branches will make a lot more sense. Additionally, > we'll be happy to have accurate tags for older versions. > > Michael > > > On Tue, Jun 18, 2013

Re: Documentation update to previous version

2013-06-19 Thread Shazron
I noticed in cordova-docs, the 2.8.0 tag was tagged in a commit on master, but not in the 2.8.x branch. Furthermore, the commit that was tagged is not even in the 2.8.x branch. Do I fix this? On Wed, Jun 19, 2013 at 11:51 AM, Shazron wrote: > Makes sense. I'll cherry-pick my change

  1   2   3   4   5   6   7   8   9   10   >