Re: Where can i download firefox-sdk

2015-11-08 Thread Dave Townsend
As of Firefox 41 we no longer support loading binary components from add-ons. On Sun, Nov 8, 2015 at 5:44 AM, wrote: > Hi all. > > I am developing firefox addon with a binary component, and until recently > i was using xulrunner-sdk for linking with required libs. As

Where can i download firefox-sdk

2015-11-08 Thread ales . rozman . si
Hi all. I am developing firefox addon with a binary component, and until recently i was using xulrunner-sdk for linking with required libs. As of version 42 xulrunner-sdk is no longer published. I read in a blog post

How to stop the docShell to loading new URIs

2015-11-08 Thread Yonggang Luo
I opened a window and I don't hope it's loading anymore URIs into the docShell. How to configure the docShell to do that. -- 此致 礼 罗勇刚 Yours sincerely, Yonggang Luo ___ dev-platform mailing list dev-platform@lists.mozilla.org

Re: Where can i download firefox-sdk

2015-11-08 Thread ales . rozman . si
On Sunday, November 8, 2015 at 4:07:22 PM UTC+1, Dave Townsend wrote: > As of Firefox 41 we no longer support loading binary components from > add-ons. > > On Sun, Nov 8, 2015 at 5:44 AM, wrote: > > > Hi all. > > > > I am developing firefox addon with a binary

Re: Where can i download firefox-sdk

2015-11-08 Thread Boris Zbarsky
On 11/8/15 3:56 PM, ales.rozman...@gmail.com wrote: Because we use gecko internals in the component. A bunch of nsI* classes. I believe that's the part that's not supported. You can have a binary blob that's self-contained and that you talk to via ctypes, but it shouldn't be touching nsI*.

Re: Where can i download firefox-sdk

2015-11-08 Thread Dave Townsend
Then I'm not sure why you need the gecko sdk to build it. On Sun, Nov 8, 2015 at 10:19 AM, wrote: > On Sunday, November 8, 2015 at 4:07:22 PM UTC+1, Dave Townsend wrote: > > As of Firefox 41 we no longer support loading binary components from > > add-ons. > > > > On

Re: Where can i download firefox-sdk

2015-11-08 Thread ales . rozman . si
Because we use gecko internals in the component. A bunch of nsI* classes. On Sunday, November 8, 2015 at 8:31:57 PM UTC+1, Dave Townsend wrote: > Then I'm not sure why you need the gecko sdk to build it. > > On Sun, Nov 8, 2015 at 10:19 AM, wrote: > > > On Sunday,

Re: Where can i download firefox-sdk

2015-11-08 Thread Kris Maglione
On Sun, Nov 08, 2015 at 12:56:48PM -0800, ales.rozman...@gmail.com wrote: On Sun, Nov 8, 2015 at 10:19 AM, wrote: I'm using js-ctypes to load and use binary (dll), so it's not a xpcom component. As i understand that is still allowed. Well it works on FF42 anyway.