Re: [webkit-dev] API in webkit to convert Unicode <--> HTML named entities?

2008-07-21 Thread Alexey Proskuryakov
On Jul 22, 2008, at 12:27 AM, Dan Wood wrote: > I want the named entities rather than numbered for human-coder- > readability I believe that not encoding the characters as entities at all is the best way to achieve that. - WBR, Alexey Proskuryakov __

[webkit-dev] WebKit/GTK+ and N810

2008-07-21 Thread Afonso Costa
Hi all, I'd like to do some tests using WebKit/GTK+ in my N810. I've built it using some information listed here [1] and here [2]. Fortunately I got to build it in my Scratchbox environment and I've installed it in my N810. But when I open http://www.gtk.org in GtkLauncher, for my surprise, I get

Re: [webkit-dev] Tracing the stack fragmentaion of webkit

2008-07-21 Thread Mikael Tennhammar
Yes of course, I mean the heap usage... /Mikael T -Original Message- From: Geoffrey Garen [mailto:[EMAIL PROTECTED] Sent: den 22 juli 2008 00:21 To: Mikael Tennhammar Cc: webkit-dev@lists.webkit.org Subject: Re: [webkit-dev] Tracing the stack fragmentaion of webkit > I'm looking for a w

Re: [webkit-dev] Tracing the stack fragmentaion of webkit

2008-07-21 Thread Geoffrey Garen
> I'm looking for a way to measure the stack usage of webkit > especially then how the distribution of different size of allocated > blocks. Is there any developed method yet ? > Have looked at export MallocStackLogging=YES. Could I get a log to a > text file where allocation and deallocation

[webkit-dev] Tracing the stack fragmentaion of webkit

2008-07-21 Thread Mikael Tennhammar
Hi ! I'm looking for a way to measure the stack usage of webkit especially then how the distribution of different size of allocated blocks. Is there any developed method yet ? Have looked at export MallocStackLogging=YES. Could I get a log to a text file where allocation and deallocation are lo

Re: [webkit-dev] API in webkit to convert Unicode <--> HTML named entities?

2008-07-21 Thread Eric Seidel
WebKit has no ability to create named entities from unicode chars. We only have functions to go the other way (from names to unicode chars). We've never written such support, so you'd have to write your own. -eric On Mon, Jul 21, 2008 at 1:27 PM, Dan Wood <[EMAIL PROTECTED]> wrote: > > On Jul 2

Re: [webkit-dev] Translucent (i)frames support

2008-07-21 Thread David Hyatt
On Jul 21, 2008, at 3:24 AM, Artem Ananiev wrote: > > David Hyatt wrote: >> The bug on Mac at least is just that NSScrollViews blit when >> scrolling, and they know nothing about transparency layers. Our >> solution to similar problems has been to just disable blitting in >> these cases and do s

Re: [webkit-dev] API in webkit to convert Unicode <--> HTML named entities?

2008-07-21 Thread Dan Wood
On Jul 21, 2008, at 12:53 PM, Eric Seidel wrote: > Would be very easy to build for yourself. > > You could build it from our HTMLEntityNames.in or from the HTML DTD. Right, however that's what I'm trying to avoid. Since the data and functionality are *already* in webkit, it seems a shame for

Re: [webkit-dev] API in webkit to convert Unicode <--> HTML named entities?

2008-07-21 Thread Alexey Proskuryakov
On Jul 21, 2008, at 10:15 PM, Dan Wood wrote: > I've been looking for an API to convert from a unicode character to > its named HTML entity (like "€" or "ä") -- if it exists -- > and vice-versa. Not a specific API, but if you make WebKit parse the text (e.g. with loadHTMLString:baseURL:),

[webkit-dev] API in webkit to convert Unicode <--> HTML named entities?

2008-07-21 Thread Dan Wood
I've been looking for an API to convert from a unicode character to its named HTML entity (like "€" or "ä") -- if it exists -- and vice-versa. This appears to be a pretty common need; from what I can tell there is some kind of home-baked solution used in: * Sandvox from Karelia (my App) *

Re: [webkit-dev] handling location field in curl implementation

2008-07-21 Thread Mark Rowe
Hi, Patches should be submitted via Bugzilla at http://bugs.webkit.org/. See for a little more info. Kind regards, Mark On Jul 21, 2008, at 5:26 AM, Louis JANG wrote: > Hi everybody, > > I'm using webkit with curl and I saw unmatched mime type wa

Re: [webkit-dev] Safari and libxml2

2008-07-21 Thread Mark Rowe
On Jul 21, 2008, at 12:26 AM, Glenn Kelley wrote: > WebCore contains a DOM interface for navigating XML files, but > Safari seems to include libxml2.dll. Safari ships with libxml2.dll as WebKit uses libxml2 to parse XML files. - Mark ___ webkit-dev

Re: [webkit-dev] webkit documentation

2008-07-21 Thread David Kilzer
We update the web site through patches. Just file a bug on bugs.webkit.org and attach a patch with ChangeLog for review! Dave On Mon, 7/21/08, Jack Wootton <[EMAIL PROTECTED]> wrote: > OK, it seems this is a good place to start > > http://developer.apple.com/documentation/Cocoa/Conceptual/Di

[webkit-dev] handling location field in curl implementation

2008-07-21 Thread Louis JANG
Hi everybody, I'm using webkit with curl and I saw unmatched mime type was passed to resourceRequest parameter of FrameLoaderClient::dispatchDecidePolicyForMIMEType(). its url was "ftp:///path.zip" and mime type was "text/html". I think mimetype should be empty for ftp resonse. I've investigated

Re: [webkit-dev] webkit documentation

2008-07-21 Thread Jack Wootton
OK, it seems this is a good place to start http://developer.apple.com/documentation/Cocoa/Conceptual/DisplayWebContent/Concepts/WebKitDesign.html Had to use Google to find it though, is it linked to on http://webkit.org/ at all? Cheers, Jack On Mon, Jul 21, 2008 at 9:57 AM, Jack Wootton <[EMAIL

Re: [webkit-dev] Safari and libxml2

2008-07-21 Thread Christian Dywan
Am Mon, 21 Jul 2008 17:26:56 +1000 schrieb Glenn Kelley <[EMAIL PROTECTED]>: > Hi, > > I am curious as to how much of the webkit project is used by Safari. > > WebCore contains a DOM interface for navigating XML files, but Safari > seems to include libxml2.dll. > > It was quoted on the apple ma

Re: [webkit-dev] Translucent (i)frames support

2008-07-21 Thread Artem Ananiev
David Hyatt wrote: > The bug on Mac at least is just that NSScrollViews blit when > scrolling, and they know nothing about transparency layers. Our > solution to similar problems has been to just disable blitting in > these cases and do slow repainting when scrolling happens. Because >

[webkit-dev] webkit documentation

2008-07-21 Thread Jack Wootton
Hi all, I am mainly interested in S60 WebKit, however due to the project seeming to be in complete disarray to those not working for Nokia, I've decided to focus my efforts on the WebKit branch from which S60 WebKit started. I understand this to be Tiger 10.4.7 (it was one of the few pieces of inf

[webkit-dev] Safari and libxml2

2008-07-21 Thread Glenn Kelley
Hi, I am curious as to how much of the webkit project is used by Safari. WebCore contains a DOM interface for navigating XML files, but Safari seems to include libxml2.dll. It was quoted on the apple mailing list http://lists.apple.com/archives/Webcore-dev/2003/Jul/msg4.html "WebCore has n