Re: [webkit-dev] Best way to track feature evolution from release-to-release

2011-01-07 Thread Ojan Vafai
On Thu, Jan 6, 2011 at 8:57 PM, Ryosuke Niwa ryosuke.n...@gmail.com wrote: On Thu, Jan 6, 2011 at 8:31 PM, Darin Fisher da...@chromium.org wrote: Using svn revision numbers has the downside of not reflecting branches very well. A bigger number may correspond to a recent change to an old

Re: [webkit-dev] Best way to track feature evolution from release-to-release

2011-01-07 Thread Darin Fisher
On Fri, Jan 7, 2011 at 9:12 AM, Ojan Vafai o...@chromium.org wrote: On Thu, Jan 6, 2011 at 8:57 PM, Ryosuke Niwa ryosuke.n...@gmail.comwrote: On Thu, Jan 6, 2011 at 8:31 PM, Darin Fisher da...@chromium.org wrote: Using svn revision numbers has the downside of not reflecting branches very

Re: [webkit-dev] Best way to track feature evolution from release-to-release

2011-01-07 Thread Ojan Vafai
On Fri, Jan 7, 2011 at 9:24 AM, Darin Fisher da...@chromium.org wrote: On Fri, Jan 7, 2011 at 9:12 AM, Ojan Vafai o...@chromium.org wrote: Right. Having a shared version number across WebKit builds will never catch every case (e.g. patches pulled into branches, disabled features, etc.), but

Re: [webkit-dev] Best way to track feature evolution from release-to-release

2011-01-07 Thread Darin Fisher
On Fri, Jan 7, 2011 at 9:30 AM, Ojan Vafai o...@chromium.org wrote: On Fri, Jan 7, 2011 at 9:24 AM, Darin Fisher da...@chromium.org wrote: On Fri, Jan 7, 2011 at 9:12 AM, Ojan Vafai o...@chromium.org wrote: Right. Having a shared version number across WebKit builds will never catch every

Re: [webkit-dev] JavaScriptCore Binding Problem

2011-01-07 Thread Alex Milowski
On Wed, Jan 5, 2011 at 7:38 PM, Alex Milowski a...@milowski.org wrote: I've got a new IDL class I'm working of for some experiments in XML and I've run into an interesting snag.  I have a call to a parse method from Javascript where the string argument seems to be getting mangled.  The IDL for

[webkit-dev] How can I call a javascript function from the hosting application

2011-01-07 Thread fredx21
My application is hosting a WebView instance to render its GUI using the Windows CE port of Webkit. I need to be able to call some JavaScript functions that are written into the loaded HTML page. For example, I have an Init(backgroundColor) function that needs to be called once the page is

Re: [webkit-dev] JavaScriptCore Binding Problem

2011-01-07 Thread Alex Milowski
Completely embarrassing ... but it is an XHTML file and so the markup in the string gets parsed unless I escape it ... *sigh* Too many hours wasted in the debugger on this one. :( So, it is a non-issue. Thanks to Evan Martin for pointed that out. -- --Alex Milowski The excellence of grammar

Re: [webkit-dev] How can I call a javascript function from the hosting application

2011-01-07 Thread André Pedralho
On Fri, Jan 7, 2011 at 14:35, fredx21 fred...@hotmail.com wrote: My application is hosting a WebView instance to render its GUI using the Windows CE port of Webkit. I need to be able to call some JavaScript functions that are written into the loaded HTML page. For example, I have an