python xpcom fails to build with gran paradiso alpha 1

2006-12-19 Thread Kannan
Hi, Has anyone built python xpcom with the gran paradiso alpha 1 code base? I am getting compile error with nsXPTCStubBase class. --Kannan. ___ dev-embedding mailing list dev-embedding@lists.mozilla.org https://lists.mozilla.org/listinfo/dev-embedding

Re: Intercepting URL in Firefox extension

2006-12-19 Thread Andrei Korostelev
On Dec 19, 3:58 pm, Boris Zbarsky <[EMAIL PROTECTED]> wrote: > Andrei Korostelev wrote: > > // I set up the content listener: attempt 1 > > var wnd = > > window.QueryInterface(Components.interfaces.nsIInterfaceRequestor) > > > .getInterface(Components.interfaces.nsIWebNavigation) > > > .QueryInterf

ecm2001 winols shoemaster wilcom2006 bentley amiable

2006-12-19 Thread ecm2001 winols shoemaster wilcom 2006 bentley amiable
We can crack or emulate any protection type: Dongle, Hardlock, Hasp, Serial, Password, Hasp4, Flexlm, Sentinel, Wibu, Eutron Smartkey, Hasphl, Proteq, All the Protections!! http://ecm2001.1500mb.com http://shoemaster.275mb.com If you have some protected program

Re: Intercepting URL in Firefox extension

2006-12-19 Thread Boris Zbarsky
Andrei Korostelev wrote: // I set up the content listener: attempt 1 var wnd = window.QueryInterface(Components.interfaces.nsIInterfaceRequestor) .getInterface(Components.interfaces.nsIWebNavigation) .QueryInterface(Components.interfaces.nsIDocShell) .QueryInterface(Components.interfaces.nsIIn

Intercepting URL in Firefox extension

2006-12-19 Thread Andrei Korostelev
I need a Firefox extension which performs some actions (redirect and others) before the URL is open. Simply using Mozilla's window.addEventListener("load", Handler, ..) does not work since I have to catch the URL *before* the page is loaded. Not too exotic task on my thought. I also read a couple o

Re: problem executing javascript from mfcembed

2006-12-19 Thread philippe
I found it myself here is the html code function bob(param1) { document.location.href=param1; //return 123; } BOB href BOB onclick and the C++ code nsCOMPtr theGlobalObjectOwner(do_GetInterface(mWebBrowser)); if (theGlobalObjectOwner) { JSFunction* jsf;