Re: Using the nsIObserver and nsIObserverService

2013-01-24 Thread Gavin Sharp
On Fri, Jan 18, 2013 at 3:18 AM, wrote: > I noticed that the notifications are sent fine but the nsIObserver only > receives them when I have a JS/XUL Gui interaction towards _any_ of my C++ > xpcom components. I'm not sure what "when I have a JS/XUL Gui interaction towards _any_ of my C++ xpc

Re: Push Notifications feedback

2013-01-24 Thread Kazuho Oku
On Friday, January 25, 2013 1:00:24 AM UTC+9, Nikhil Marathe wrote: > On Thu, Jan 24, 2013 at 5:06 AM, wrote: > > > Hi, > > > > > > Are you people still working on this at mozilla.org? I noticed that the > > Wiki now redirects to https://wiki.mozilla.org/WebAPI/PushAPI which seems > > speci

Re: PHP to AngularJS - Permission Denied to access property

2013-01-24 Thread Boris Zbarsky
On 1/23/13 3:39 PM, edgar.am...@gmail.com wrote: also, the the angularJS app is in my localhost port 81, the php file is in my localhost, different port. Then they're not same-origin and can't call back and forth directly. I suggest using postMessage to send the data across. -Boris

Re: Push Notifications feedback

2013-01-24 Thread Nikhil Marathe
On Thu, Jan 24, 2013 at 5:06 AM, wrote: > Hi, > > Are you people still working on this at mozilla.org? I noticed that the Wiki > now redirects to https://wiki.mozilla.org/WebAPI/PushAPI which seems specific > to FirefoxOS. > > I am interested in implementing the feature for other web browsers

Re: Tablet vs. Touch: decision

2013-01-24 Thread Gervase Markham
On 23/01/13 10:33, Henri Sivonen wrote: > Anyway, it seems > https://developer.mozilla.org/en-US/docs/Gecko_user_agent_string_reference > isn't getting updated together with the code changes, which probably > makes evangelism even harder than it would otherwise be. :-( Fixed - sorry about that. >

Re: Push Notifications feedback

2013-01-24 Thread DigDug
On Thursday, January 24, 2013 5:06:25 AM UTC-8, Kazuho Oku wrote: > Hi, > > > > Are you people still working on this at mozilla.org? I noticed that the Wiki > now redirects to https://wiki.mozilla.org/WebAPI/PushAPI which seems specific > to FirefoxOS. > > > > I am interested in implementi

Re: Push Notifications feedback

2013-01-24 Thread kazuhooku
Hi, Are you people still working on this at mozilla.org? I noticed that the Wiki now redirects to https://wiki.mozilla.org/WebAPI/PushAPI which seems specific to FirefoxOS. I am interested in implementing the feature for other web browsers as extensions (+ helper javascript). On Tuesday, Feb

Re: PHP to AngularJS - Permission Denied to access property

2013-01-24 Thread Mounir Lamouri
On 23/01/13 20:39, edgar.am...@gmail.com wrote: [...] > also, the the angularJS app is in my localhost port 81, the php file is in my > localhost, different port. You are very likely being stopped by a cross-origin check. Try to run both code within the same origin [1] and see if that works. [1