Re: [webkit-dev] communication between upnp and webkit

2008-11-04 Thread Pierre-Luc Beaudoin
On Tue, 2008-11-04 at 09:17 +0530, Ajay Gautam wrote: My Main question is...i am getting data from upnp such like description ,file nam.now i want to show this data on Webkit Browser,so what should i do for this? Can you define which OS you are developing on? Which port of WebKit? There

Re: [webkit-dev] webkit ignores manual mouse click event

2008-11-04 Thread Luka Napotnik
The Gtk+ port. Greets, Luka Dne 04.11.2008 (tor) ob 18:48 +0530 je Nilesh Patil zapisal(a): which port On Tue, Nov 4, 2008 at 6:43 PM, Luka Napotnik [EMAIL PROTECTED] wrote: Hello. I've created a method to send X,Y clicks to a page in the current frame. I'm using the

Re: [webkit-dev] make[1]: *** [libWebCore.la] Error 255

2008-11-04 Thread Nilesh Patil
did u distclean it? On Tue, Nov 4, 2008 at 7:31 PM, Bn, Sharath [EMAIL PROTECTED] wrote: Hi, I think the error was due to long command. Pls find work around that I did in the attached file. I inserted backslashes(\) to the command and then executed it. With this the build was able to go

Re: [webkit-dev] make[1]: *** [libWebCore.la] Error 255

2008-11-04 Thread Nilesh Patil
Hi By the looks of the log, it seems that there is linking problem. I am currently working on Gtk port of Webkit. We usually get this error when that source change is not applied correctly. Wht i mean is, if u got some previous error (before this build cycle), and say, had a fix for it. Then u

Re: [webkit-dev] webkit ignores manual mouse click event

2008-11-04 Thread Nilesh Patil
Hi Usually i construct it like PlatformMouseEvent pme(point, point, LeftButton, met, 1, false, false, false, false, 0); and call is frame-eventHandler()-handleMousePressEvent(pme); If this is not answer u r looking for, then probably u need to check for webpage u r trying this clicks on.

Re: [webkit-dev] EOT Support in WebKit

2008-11-04 Thread Nicholas Shanks
Hi list. I recently emailed a few indie font developers to get their opinions on EOT and @font-face. Here's the first response worth reading on the matter. Ray has given permission for his comments to be distributed to any interested browser developers. — Nicholas Shanks. Begin

[webkit-dev] leak

2008-11-04 Thread mario bensi
Hello, I seen in Changeset 3810, you force a leak, it's the same thing for the cache and others parts in webCore, I would understand why you want leak some part of code ? regards, -- Mario Bensi Join OWB team on freenode IRC, channel #owb Web-enabler for CE devices www.pleyo.com

Re: [webkit-dev] leak

2008-11-04 Thread David Kilzer
On Tue, 11/4/08, mario bensi [EMAIL PROTECTED] wrote: I seen in Changeset 3810, you force a leak, it's the same thing for the cache and others parts in webCore, I would understand why you want leak some part of code ? Do you mean r38104? http://trac.webkit.org/changeset/38104 This

Re: [webkit-dev] leak

2008-11-04 Thread mario bensi
yes it's r38104, sorry. I seen also this in cache : ~Cache(); // Not implemented to make sure nobody accidentally calls delete -- WebCore does not delete singletons. it's also to make shutdown faster ? this can create a big leak, no ? Mario Le mardi 04 novembre 2008 22:04:39 David Kilzer,

Re: [webkit-dev] leak

2008-11-04 Thread Geoffrey Garen
I seen also this in cache : ~Cache(); // Not implemented to make sure nobody accidentally calls delete -- WebCore does not delete singletons. it's also to make shutdown faster ? this can create a big leak, no ? Destruction of items in the cache is not tied to the lifetime of the cache.

Re: [webkit-dev] webkit ignores manual mouse click event

2008-11-04 Thread Nilesh Patil
which port On Tue, Nov 4, 2008 at 6:43 PM, Luka Napotnik [EMAIL PROTECTED] wrote: Hello. I've created a method to send X,Y clicks to a page in the current frame. I'm using the handleMousePressEvent() method to create the event: Frame *frame = core(webView)-mainFrame();