Re: [webkit-dev] Adding new JS bindings, having slight problems

2010-10-28 Thread Anton Muhin
Good day, Nebojša. Overall I am with Adam, that if it's ECMAScript feature it should go in VM itself (JavaScriptCore or v8). However, as a prototype hacking bindings might be easier. On Thu, Oct 28, 2010 at 4:35 AM, Nebojša Ćirić c...@chromium.org wrote: 2. What is a proper way to specify a

Re: [webkit-dev] Platform specific editing behaviors

2010-10-28 Thread Andreas Kling
On 10/27/2010 11:17 PM, ext Antonio Gomes wrote: Before anything I would like to point it our here, and hear from the port maintainers any possible objection about it, specially from the cross-platform ones, including Chromium and Qt. This sounds like what we want for Qt, so no objections

Re: [webkit-dev] OSX build break after system update

2010-10-28 Thread Tony Gentilcore
On Wed, Oct 27, 2010 at 10:11 PM, Eric Seidel e...@webkit.org wrote: Can we just include the headers in WebKit? Or find some way to auto-download them? +1 This seems silly. Or certainly requiring an update to http://webkit.org/building/tools.html. In the meantime, there is:

Re: [webkit-dev] Adding new JS bindings, having slight problems

2010-10-28 Thread Nebojša Ćirić
This API is going to be a separate standard related to EcmaScript, say something like a library - so implementers of EcmaScript core standard wouldn't be obligated to implement it. Dual track also enables both groups to move at their pace and not block each other. We are also trying to reuse much

Re: [webkit-dev] Adding new JS bindings, having slight problems

2010-10-28 Thread Nebojša Ćirić
Hi Anton, Current API (and examples) are here http://wiki.ecmascript.org/doku.php?id=strawman:i18n_api, but in short I would like to be able to: var availableLocales = Locale.availableLocales(); // Static method, returns an array of available Locale-s. var loc = new Locale(sr); // Create Locale

Re: [webkit-dev] Adding new JS bindings, having slight problems

2010-10-28 Thread Anton Muhin
Nebojša, Why not put those function right on Local object? yours, anton. On Thu, Oct 28, 2010 at 9:03 PM, Nebojša Ćirić c...@chromium.org wrote: Hi Anton,  Current API (and examples) are here http://wiki.ecmascript.org/doku.php?id=strawman:i18n_api, but in short I would like to be able to:

Re: [webkit-dev] Mac OS X build break after system update

2010-10-28 Thread Darin Adler
On Oct 27, 2010, at 10:11 PM, Eric Seidel wrote: Can we just include the headers in WebKit? I don’t think so. Or find some way to auto-download them? Seems unlikely, since downloading them from Apple requires logging in to the developer website. Or certainly requiring an update to

Re: [webkit-dev] Mac OS X build break after system update

2010-10-28 Thread Alexey Proskuryakov
28.10.2010, в 12:29, Darin Adler написал(а): Or certainly requiring an update to http://webkit.org/building/tools.html. Yes, this is definitely required. Any volunteers do to it? There is a potentially abandoned patch in https://bugs.webkit.org/show_bug.cgi?id=48423. - WBR, Alexey

[webkit-dev] trouble installing tools

2010-10-28 Thread software visualization
Hi, I am trying to go through the process of installing the tools needed to look at webkit, as detailed here: http://webkit.org/building/tools.html I am building on XP64. I don't own Visual Studio 2005 so I am going to use Express 2005. In part 2 of the instructions the following appears: In

Re: [webkit-dev] trouble installing tools

2010-10-28 Thread Adam Roben
On Oct 28, 2010, at 4:16 PM, software visualization wrote: My issue is, no such path 9or similar) exists on my machine, that is C:\Program Files\Microsoft Platform SDK for Windows Server 2003 R2\Include\mfc does not exist and C:\Program Files\Microsoft Platform SDK for Windows Server

Re: [webkit-dev] Mac OS X build break after system update

2010-10-28 Thread Eric Seidel
I'll just write a clean-room implementation of the headers. I've never seen them, nor do I ever wish to. But if my compile breaks when I update, I'll cobble together the necessary declarations in a new .h file and stick it somewhere in WebKit. It will be just like the old KWQ days! :) -eric