Re: [webkit-dev] add new functions to WebCore

2008-12-30 Thread goldeneyes
Holger Freyther-6 wrote: On Sunday 28 December 2008 12:04:13 houda hocine wrote: Showing the patch would make things more easy for us. z. thank you for the answer, I add a folder warc in this path like this: /WebKit/WebCore/warc this directory contains 4 files recordout.cpp,

Re: [webkit-dev] add new functions to WebCore

2008-12-30 Thread Nilesh Patil
Hi Hope u got these functions in correct namespace like WebCore or so from where u r refering them Thanks Regards Niilesh On Tue, Dec 30, 2008 at 2:41 PM, goldeneyes houda@gmail.com wrote: Holger Freyther-6 wrote: On Sunday 28 December 2008 12:04:13 houda hocine wrote: Showing the

Re: [webkit-dev] add new functions to WebCore

2008-12-30 Thread goldeneyes
Hi , normally I should change the Make file to take into account the new folder WARC and his files (.cpp and .h) but I don't know how I should to do ? can you help me please, thank you in advance for any help, -- View this message in context:

Re: [webkit-dev] add new functions to WebCore

2008-12-30 Thread goldeneyes
Hi, thank you for the answer you can tell me more detail about what to add and where? Please I never work with make file thank you in advance for any help -- View this message in context: http://www.nabble.com/add-new-functions-to-WebCore-tp21191456p21217324.html Sent from the Webkit mailing

Re: [webkit-dev] add new functions to WebCore

2008-12-30 Thread Nikolas Zimmermann
Am 30.12.2008 um 14:42 schrieb goldeneyes: Hi, thank you for the answer you can tell me more detail about what to add and where? Please I never work with make file Good evening, how about grepping a bit in the source tree? Problems like this usually get solved by wandering a bit

Re: [webkit-dev] add new functions to WebCore

2008-12-30 Thread goldeneyes
thank you for the answer I download the source Webkit with this command: svn checkout http://svn.webkit.org/repository/webkit/trunk WebKit I work with fedora core 9 I made this command: find /WebKit/WebCore/ -type f | xargs grep -i EventTargetNode.cpp out must I add the same instructions

[webkit-dev] WAP browsing

2008-12-30 Thread zaheer ahmad
hi, Given that webkit has recently added support for WML, I think it requires WMLScript and WCSS to fully support WAP (1.3) browsing. would like to know if there is any ongoing effort on this. thanks, Zaheer ___ webkit-dev mailing list

[webkit-dev] New loader class to allow workers to do xhr

2008-12-30 Thread David Levin
BackgroundRight now, XHR uses SubresourceLoader directly, but this doesn't work well if the XHR is running on another thread (which happens for workers). As described before ( http://docs.google.com/View?docID=dg7mj9sd_6dvthmdqjrevision=_latest), I'm working on making the actual request

[webkit-dev] inspector calls from XHR running in a (html5) worker

2008-12-30 Thread David Levin
Problem In XMLHttpRequest::didFinishLoading (WebCore/xml/XMLHttpRequest.cpp), there is a call to the inspector like this: page-inspectorController()-resourceRetrievedByXMLHttpRequest(m_loader ? m_loader-identifier() : m_identifier, m_responseText); The problem is that html 5 workers (and

Re: [webkit-dev] New loader class to allow workers to do xhr

2008-12-30 Thread Darin Adler
I have a few thoughts on this. The general approach seems OK. On Dec 30, 2008, at 11:11 AM, David Levin wrote: class ScriptResourceLoader { I'm not sure Script is the right word here, but I don't have a better one. Up until now Script has meant interface to the JavaScript interpreter

[webkit-dev] WebKit/WebKit/win Classes

2008-12-30 Thread Brent Fulgham
I recently proposed a patch (https://bugs.webkit.org/show_bug.cgi?id=23027) to the Windows-specific WebKit layer (WebKit/WebKit/win), which changed some types from CoreGraphics to WebCore/GraphicsContext types. This was rejected because the WebCore classes are apparently not meant to be used at

Re: [webkit-dev] WAP browsing

2008-12-30 Thread Nikolas Zimmermann
Am 30.12.2008 um 19:46 schrieb zaheer ahmad: hi, Given that webkit has recently added support for WML, I think it requires WMLScript and WCSS to fully support WAP (1.3) browsing. would like to know if there is any ongoing effort on this. thanks, Zaheer Hi Zaheer, WML is still in the

Re: [webkit-dev] WebKit/WebKit/win Classes

2008-12-30 Thread Darin Adler
On Dec 30, 2008, at 3:31 PM, Brent Fulgham wrote: I recently proposed a patch (https://bugs.webkit.org/show_bug.cgi?id=23027) to the Windows-specific WebKit layer (WebKit/WebKit/win), which changed some types from CoreGraphics to WebCore/GraphicsContext types. This was rejected because the

Re: [webkit-dev] WebKit/WebKit/win Classes

2008-12-30 Thread Brent Fulgham
Hi Darin, On Tue, Dec 30, 2008 at 5:12 PM, Darin Adler da...@apple.com wrote: The specific issue here is how to make headers that work for external clients that are not part of WebKit. WebKit's internal platform-configuration macros and platform-independence framework were not designed for

[webkit-dev] Change WTF::ThreadCondition::timedWait to use absolute time?

2008-12-30 Thread Dmitry Titov
For worker implementation of run loop, I am looking to implement MessageQueue::waitForMessageWithTimeout(), where timeout would be computed from the the JS timer with nearest expiration. I am looking at using WTF::ThreadCondition::timedWait for implementation but it seems it is not implemented

[webkit-dev] building webkit/gtk+ port on windows

2008-12-30 Thread arati
Hi I want to build the webkit/gtk+ port on windows. I want to use cygwin for this. Can anyboby please give me any guidelines for getting started with the build? Thanks in advance. ___ webkit-dev mailing list webkit-dev@lists.webkit.org

Re: [webkit-dev] Change WTF::ThreadCondition::timedWait to use absolute time?

2008-12-30 Thread Darin Adler
On Dec 30, 2008, at 6:21 PM, Dmitry Titov wrote: bool ThreadCondition::timedWait(Mutex mutex, const struct timespec *timeoutTime) It seems OK, roughly speaking, but I don't think that will achieve the platform independence goals of the Threading.h header. The type timespec is not