[webkit-dev] 6th Annual WebKit Open Source Party!

2011-05-16 Thread Adele Peterson
Hi all, It has been another great year for the WebKit project, and it's time to celebrate! Apple's Safari/WebKit team will be hosting the 6th Annual WebKit Open Source Party in San Francisco during WWDC. All members of the WebKit community are invited. So please encourage all of your WebKit-

Re: [webkit-dev] New feature announcement – Video conferencing and peer-to-peer communication

2011-05-16 Thread Ian Hickson
On Fri, 13 May 2011, Eric Seidel wrote: > > On the surface "peer to peer video conferencing" does not seem like > something appropriate to add to WebCore/WebKit. Just like "an API for > reading my email" is out of scope for the project. (But certainly lots > of people build such things on top

Re: [webkit-dev] New feature announcement – Video conferencing and peer-to-peer communication

2011-05-16 Thread Adam Barth
On Mon, May 16, 2011 at 6:54 AM, Tommy Widenflycht wrote: > The plan is to have the P2P VC WebKit code to do as little as possible > and leave the implementation to the browser port, just like the > MediaStream patches. And the code touches very little other code; > Event, EventTarget, Navigator e

Re: [webkit-dev] Progressing on the Android port

2011-05-16 Thread Darin Fisher
On Fri, May 13, 2011 at 1:48 PM, Lucas De Marchi < lucas.demar...@profusion.mobi> wrote: > On Fri, May 13, 2011 at 5:35 PM, Holger Freyther > wrote: > > On 05/12/2011 05:16 PM, Lucas De Marchi wrote: > >> Hi Holger Freyther, > >> > > > >> I'm glad to hear you will use CMake as the build system. T

Re: [webkit-dev] Glyph data in Rendering Text

2011-05-16 Thread Eric Seidel
Look under Sources/WebCore/platform/graphics. Or just grep the source directory for "glyph". :) -eric On Mon, May 16, 2011 at 9:52 AM, Soheil Servati Beiragh wrote: > Hi > I want to find out where does webkit saves the glyph data of characters and > read from it? I think when it renders text it

Re: [webkit-dev] Thoughts on reducing the complexity of WebCore

2011-05-16 Thread Maciej Stachowiak
On May 16, 2011, at 10:08 AM, Adam Barth wrote: > On Mon, May 16, 2011 at 2:59 AM, Maciej Stachowiak wrote: >> The bindings layer isn't really on top of the Core. In particular, almost >> every API, however tangential, has an addition to the global Window >> namespace, and the "Core" part need

Re: [webkit-dev] Thoughts on reducing the complexity of WebCore

2011-05-16 Thread Adam Barth
On Mon, May 16, 2011 at 2:59 AM, Maciej Stachowiak wrote: > The bindings layer isn't really on top of the Core. In particular, almost > every API, however tangential, has an addition to the global Window > namespace, and the "Core" part needs to be able to instantiate the right kind > of Window

[webkit-dev] Glyph data in Rendering Text

2011-05-16 Thread Soheil Servati Beiragh
Hi I want to find out where does webkit saves the glyph data of characters and read from it? I think when it renders text it should first render bitmap of the characters and use the measuring data to do layout. I went trough lots of objects but no success.   Soheil Servati Beiragh PhD Candidate,

[webkit-dev] Glyph data in Rendering Text

2011-05-16 Thread Soheil Servati Beiragh
Hi I want to find out where does webkit saves the glyph data of characters and read from it? I think when it renders text it should first render bitmap of the characters and use the measuring data to do layout. I went trough lots of objects but no success.    Soheil Servati Beiragh PhD Candidate

[webkit-dev] Glyph data in Rendering Text

2011-05-16 Thread Soheil Servati Beiragh
Hi I want to find out where does webkit saves the glyph data of characters and read from it? I think when it renders text it should first render bitmap of the characters and use the measuring data to do layout. I went trough lots of objects but no success.    Soheil Servati Beiragh PhD Candidate

Re: [webkit-dev] New feature announcement – Video conferencing and peer-to-peer communication

2011-05-16 Thread ᛏᚮᛘᛘᚤ
The plan is to have the P2P VC WebKit code to do as little as possible and leave the implementation to the browser port, just like the MediaStream patches. And the code touches very little other code; Event, EventTarget, Navigator etc but obviously heavily depends on the MediaStream functionality.

Re: [webkit-dev] Thoughts on reducing the complexity of WebCore

2011-05-16 Thread Maciej Stachowiak
The bindings layer isn't really on top of the Core. In particular, almost every API, however tangential, has an addition to the global Window namespace, and the "Core" part needs to be able to instantiate the right kind of Window object. Also, APIs that start standalone sometimes eventually gro