[webkit-dev] Webkit-QT and DOM
Hello, I am using Webkit-QT under Windows, and I need to access to the DOM tree. Anyone has an idea on how to do that? Is there some plan to add it to the Webkit-QT interface? Regards, Julien ___ webkit-dev mailing list webkit-dev@lists.webkit.org http://lists.webkit.org/mailman/listinfo/webkit-dev
Re: [webkit-dev] Regarding Proxy settings in GdkLauncher
actually Curl uses http_proxy if no proxy provided by opts. WebKit doesn't set proxy for curl, so http_proxy is used. Oleg. Namaz wrote: ResourceHandleManager for CURL does not support proxy now. The file webcore/platform/network/curl/ResourceHandleManger.cpp needs to modified to set the proxy settings. -Namaz shriramnbhat wrote: Hi All, I have built WebKit Gdk on Mac OS 10.4.10 (Intel) with Gcc version 4.0.1 While running the GdkLauncher application, if i try to open a url, I am getting following error message in Debug mode, Curl ERROR for url = http://www.google.com/ , error: couldn't connect to server. Is this something related to Proxy settings? I tried setting environment variable HTTP_PROXY, but it didn't worked. How can i set proxy settings? Thanks, Shriram ___ webkit-dev mailing list webkit-dev@lists.webkit.org http://lists.webkit.org/mailman/listinfo/webkit-dev ___ webkit-dev mailing list webkit-dev@lists.webkit.org http://lists.webkit.org/mailman/listinfo/webkit-dev
[webkit-dev] WebKit and Konqueror
Hi, Does anyone know whether WebKitQT has advanced far enough for us to start seeing an alpha build of Konqueror using WebKit? Andre ___ webkit-dev mailing list webkit-dev@lists.webkit.org http://lists.webkit.org/mailman/listinfo/webkit-dev
Re: [webkit-dev] Webkit-QT and DOM
On Friday 14 September 2007, [EMAIL PROTECTED] wrote: Hello, I am using Webkit-QT under Windows, and I need to access to the DOM tree. Anyone has an idea on how to do that? Is there some plan to add it to the Webkit-QT interface? Funny. We have been discussing such an API recently, but it is not done yet. For now we have no API for accessing the DOM, but that is likely to change soon. Cheers, Adam ___ webkit-dev mailing list webkit-dev@lists.webkit.org http://lists.webkit.org/mailman/listinfo/webkit-dev
Re: [webkit-dev] WebKit and Konqueror
On Friday 14 September 2007, Andre-John Mas wrote: Hi, Does anyone know whether WebKitQT has advanced far enough for us to start seeing an alpha build of Konqueror using WebKit? Sure. Just install the WebKitPart in playground and you'll see Konqueror render with QtWebKit. Cheers, Adam ___ webkit-dev mailing list webkit-dev@lists.webkit.org http://lists.webkit.org/mailman/listinfo/webkit-dev
Re: [webkit-dev] WebKitQt build issue: pthread.h
Thanks for the info and links. I was hoping for more of a time-line, but it looks like that would be a bit premature for this project, eh? Seems to be in an early stage -- hence the home on trolltech's lab. The production build I was able to complete either crashed or rendered nothing at all. Unexpected, gmail.com was the only URL that did not crash for me in limited testing. And since I could not complete the debug build, I can't tell you much about the failure modes! I have had better results with earlier builds, so I'm guessing this is an anomaly. Common sense tells me WebKitQt will not be a viable option for us in the 6-9 month time-frame. But we are Qt-based and we really want a cross platform browser solution, so I may be able to offer some help -- provided there is some hope of hitting a stable release in our short horizon. Cheers, KC On 9/13/07, Adam Treat [EMAIL PROTECTED] wrote: On Thursday 13 September 2007, KC Jones wrote: The Windows Qt build is busted for me. Is this known, or have I muffed something? The compilation failure concerns pthread.h while compiling .\WebCore\dom\Document.cpp: [...]\WebKit\WebCore\platform\Threading.h(33) : fatal error C1083: Cannot open include file: 'pthread.h': No such file or directory The file Threading.h was introduced in revision 25416 on Sep 7. I have heard no mention of this problem on this list. Is this a known bug? The windows version of QtWebKit is very new and hasn't received a lot of attention. I haven't event built it yet as I don't have a working windows machine. BTW, Simon/Lars, what is the plan for the buildbots now that Zack has left? Are you guys planning on providing a windows buildbot? Perhaps we can host host some buildbots at SCS... I tried reverting to revision 25415 (after parsing through the update-webkit script to do it by hand). The release target built successfully but was utterly unstable. The debug target, surprisingly, didn't build at all -- didn't even get to the compilation stage. Which makes me wonder... Is there a roadmap for the WebKitQt project that I have not seen on webkit.org? Are there branches or labeled versions that Here is the roadmap: http://trac.webkit.org/projects/webkit/wiki/QtWebKitTodo identify more stable source bases for various builds? Is this an No, there are no more stable branches. I have no idea whether the windows version of QtWebKit is 'utterly unstable', but I wouldn't describe the linux version that way at this point. appropriate forum for asking questions about the roadmap? I'm trying to Yes, this is the correct forum for these types of questions. And of course when it actually builds please report any bugs to the bugzilla or even better patches :) Cheers, Adam ___ webkit-dev mailing list webkit-dev@lists.webkit.org http://lists.webkit.org/mailman/listinfo/webkit-dev
Re: [webkit-dev] WebKit and Konqueror
On Friday 14 September 2007, Mike Hommey wrote: On Fri, Sep 14, 2007 at 11:21:39AM -0400, Adam Treat [EMAIL PROTECTED] wrote: On Friday 14 September 2007, Andre-John Mas wrote: Hi, Does anyone know whether WebKitQT has advanced far enough for us to start seeing an alpha build of Konqueror using WebKit? Sure. Just install the WebKitPart in playground and you'll see Konqueror render with QtWebKit. BTW, is the WebKitPart living under WebKitQt in webkit svn up to date and buildable ? No, I believe the one living in KDE's playground is the correct one. I imagine the one living in webkit svn is scheduled for removal... Cheers, Adam ___ webkit-dev mailing list webkit-dev@lists.webkit.org http://lists.webkit.org/mailman/listinfo/webkit-dev
[webkit-dev] image types in MimeTypeRegistry.cpp
Hi, I have been trying to display bmp and tiff images on both win and mac, apparently both of these work on mac and don't on windows. I noticed that the tiff format is not added to the supportedImageMIMETypes in webcore/platform/MimeTypeRegistry.cpp, but once I added image/tiff, it starts working - any specific reason why tiff was excluded in the first place. Also, I noticed that for bmp, the data is got, but the image does not gets displayed - but it works on safari for windows - any specific reason why this does not work. Also, is there a way to enable only those types which work on both mac and win? Thanks -Sunil ___ webkit-dev mailing list webkit-dev@lists.webkit.org http://lists.webkit.org/mailman/listinfo/webkit-dev
Re: [webkit-dev] image types in MimeTypeRegistry.cpp
On 14/09/2007, at 6:02 PM, Sunil Bannur wrote: Hi, I have been trying to display bmp and tiff images on both win and mac, apparently both of these work on mac and don't on windows. I noticed that the tiff format is not added to the supportedImageMIMETypes in webcore/platform/MimeTypeRegistry.cpp, but once I added image/tiff, it starts working - any specific reason why tiff was excluded in the first place. Sounds like a bug :-O You can file a bug (and patch maybe?) at http://bugs.webkit.org Also, I noticed that for bmp, the data is got, but the image does not gets displayed - but it works on safari for windows - any specific reason why this does not work. What do you mean? It works on windows but not mac? or vice verse? Also, is there a way to enable only those types which work on both mac and win? What do you mean? png/jpeg work on both, and are about as standard as you get... Thanks -Sunil ___ webkit-dev mailing list webkit-dev@lists.webkit.org http://lists.webkit.org/mailman/listinfo/webkit-dev ___ webkit-dev mailing list webkit-dev@lists.webkit.org http://lists.webkit.org/mailman/listinfo/webkit-dev
Re: [webkit-dev] image types in MimeTypeRegistry.cpp
comments inline On 9/14/07, Oliver Hunt [EMAIL PROTECTED] wrote: On 14/09/2007, at 6:02 PM, Sunil Bannur wrote: Hi, I have been trying to display bmp and tiff images on both win and mac, apparently both of these work on mac and don't on windows. I noticed that the tiff format is not added to the supportedImageMIMETypes in webcore/platform/MimeTypeRegistry.cpp, but once I added image/tiff, it starts working - any specific reason why tiff was excluded in the first place. Sounds like a bug :-O You can file a bug (and patch maybe?) at http://bugs.webkit.org Also, I noticed that for bmp, the data is got, but the image does not gets displayed - but it works on safari for windows - any specific reason why this does not work. What do you mean? It works on windows but not mac? or vice verse? - It does not work on windows - Sunil Also, is there a way to enable only those types which work on both mac and win? What do you mean? png/jpeg work on both, and are about as standard as you get... I meant there are numerous types of files like ico, tiff, bmp, gif etc., just wanted to enumerate those which work fine on both win and mac, and not something that works on one platform and not on the other. I know png and jpeg are the majority of files out there and they work fine on both platforms. Thanks -Sunil Thanks -Sunil ___ webkit-dev mailing list webkit-dev@lists.webkit.org http://lists.webkit.org/mailman/listinfo/webkit-dev ___ webkit-dev mailing list webkit-dev@lists.webkit.org http://lists.webkit.org/mailman/listinfo/webkit-dev