Re: [webkit-dev] Changes to prepare-ChangeLog

2009-07-09 Thread Maciej Stachowiak
Now that my attention has been called to it, it's starting to bug me that everyone formats their ChangeLog entries slightly differently. How about this as the canonical format (with prepare-ChangeLog encouraging it)? 2009-07-08 Maciej Stachowiak m...@apple.com Make

Re: [webkit-dev] Changes to prepare-ChangeLog

2009-07-09 Thread Adam Barth
On Thu, Jul 9, 2009 at 1:32 AM, Maciej Stachowiakm...@apple.com wrote: Is that a format everyone can live with for ChangeLogs and commit messages? If so, I'll post a patch to update prepare-ChangeLog accordingly. LGTM ___ webkit-dev mailing list

Re: [webkit-dev] Changes to prepare-ChangeLog

2009-07-09 Thread Maciej Stachowiak
I discussed with Mark Rowe on IRC a bit and it seems like it would be nice if the bug URL could be short enough to just go on one line with the summary. Which turns out to be totally doable. Thus the latest format proposal (the /b/ URL is a redirect): 2009-07-08 Maciej Stachowiak

Re: [webkit-dev] Detecting a finished paint via JavaScript

2009-07-09 Thread RDC
While this is not a perfect solution, a common technique is to call (from onload) a DOM method like offsetHeight that forces layout to run. That way the bulk of the work required to paint is forced to happen before the benchmark considers the page load complete. This still omits the cost of

[webkit-dev] Webkit based HTML to PDF converter

2009-07-09 Thread Sharma, Ashish
Hello, I have a requirement to create a MarkUp(HTML) to PDF generator. The mentioned component is to be deployed as a java class API for a cloud computing service on Linux platform. I want to use WebKit for my HTML /MarkUp rendering and then use that rendered output to convert to PDF. So I

Re: [webkit-dev] Webkit based HTML to PDF converter

2009-07-09 Thread RDC
Hi Ashish, I have a requirement to create a MarkUp(HTML) to PDF generator. The mentioned component is to be deployed as a java class API for a cloud computing service on Linux platform. I want to use WebKit for my HTML /MarkUp rendering and then use that rendered output to convert to PDF.

Re: [webkit-dev] Webkit based HTML to PDF converter

2009-07-09 Thread Maciej Stachowiak
This mailing list is for discussing the development of WebKit. For help in using WebKit, please post to webkit-h...@lists.webkit.org. On Jul 9, 2009, at 2:45 AM, Sharma, Ashish wrote: Hello, I have a requirement to create a MarkUp(HTML) to PDF generator. The mentioned component is to be

Re: [webkit-dev] how to understand the grammar implemention of js script var a=9; ?

2009-07-09 Thread Maciej Stachowiak
This mailing list is for discussing the development of WebKit. For help in using WebKit, please post to webkit-h...@lists.webkit.org. On Jul 9, 2009, at 2:55 AM, Suk Zhong wrote: Hi All: I want to understand the javascript grammar from Grammar.y in JavascriptCore,for the script var

[webkit-dev] Executing stand alone Javascipt without HT ML

2009-07-09 Thread guru prasad
Hi All, We are using webkit and developing web based application which uses OPENAPI provided by various service provider. We have a javascript as given below test.jsfunction createEvent() { xmlhttp = new XMLHttpRequest();xmlhttp.open(GET, url, true);xmlhttp.send(null);alert(xmlhttp end); }

Re: [webkit-dev] Changes to prepare-ChangeLog

2009-07-09 Thread David Kilzer
2009-07-08 Maciej Stachowiak m...@apple.com - http://webkit.org/b/27098 Make prepare-ChangeLog less shouty Reviewed by Mark Rowe. Hypothetical long description goes here. Yeah. Very long and detailed it is. * Scripts/prepare-ChangeLog: Random nits (since

[webkit-dev] Executing stand alone Javascipt without HTML

2009-07-09 Thread Guru Prasad H B
Hi All, [pleas ignore the previous mail its corrupted] We are using webkit and developing web based application which uses OPENAPI provided by various service provider. We have a javascript as given below test.js ---START--- function

Re: [webkit-dev] Changes to prepare-ChangeLog

2009-07-09 Thread Joe Mason
Maciej Stachowiak wrote: Now that my attention has been called to it, it's starting to bug me that everyone formats their ChangeLog entries slightly differently. How about this as the canonical format (with prepare-ChangeLog encouraging it)? That reminds me: how do we format a patch with

Re: [webkit-dev] Executing stand alone Javascipt without HTML

2009-07-09 Thread Darin Adler
This mailing list is for discussing the development of WebKit. For help in using WebKit, please post to webkit-h...@lists.webkit.org. -- Darin ___ webkit-dev mailing list webkit-dev@lists.webkit.org

Re: [webkit-dev] Changes to prepare-ChangeLog

2009-07-09 Thread Darin Adler
On Jul 9, 2009, at 1:47 AM, Maciej Stachowiak wrote: (the /b/ URL is a redirect): I'm like most everything suggested in this thread. But I'm a little sad that these new shorter URLs are redirects. I really like to copy URLs out of the address field, so I’d want the legacy show_bug.cgi

Re: [webkit-dev] Changes to prepare-ChangeLog

2009-07-09 Thread Maciej Stachowiak
On Jul 9, 2009, at 8:52 AM, Darin Adler wrote: On Jul 9, 2009, at 1:47 AM, Maciej Stachowiak wrote: (the /b/ URL is a redirect): I'm like most everything suggested in this thread. But I'm a little sad that these new shorter URLs are redirects. I really like to copy URLs out of the

Re: [webkit-dev] Changes to prepare-ChangeLog

2009-07-09 Thread tonikitoo (Antonio Gomes)
I grew up listing and seeing people not writing their emails *as it* and publishing on the internet so would replacing m...@apple.com by mjs at apple dot com be a good practice ? it reduces the spam count in your inbox for sure. On Thu, Jul 9, 2009 at 2:11 PM, Maciej Stachowiakm...@apple.com

Re: [webkit-dev] Changes to prepare-ChangeLog

2009-07-09 Thread David Kilzer
On Thursday, July 9, 2009 11:06:58 AM, Maciej Stachowiak wrote: On Jul 9, 2009, at 4:33 AM, David Kilzer wrote: * What does the format look like for bugs with multiple URL links, e.g., to rdar://problem/NNN or to http://crbug.com/N? (The title should not have to be repeated--you

[webkit-dev] possible wrong implementation visible_units....@logicalstartofline

2009-07-09 Thread tonikitoo (Antonio Gomes)
Hi, trying to understand this part of the webcore code, I faced a possibly wrong impl: (...) VisiblePosition logicalStartOfLine(const VisiblePosition c) { VisiblePosition visPos = logicalStartPositionForLine(c); if (visPos.isNull()) return

Re: [webkit-dev] Changes to prepare-ChangeLog

2009-07-09 Thread Mark Rowe
On 2009-07-09, at 08:02, Joe Mason wrote: Maciej Stachowiak wrote: Now that my attention has been called to it, it's starting to bug me that everyone formats their ChangeLog entries slightly differently. How about this as the canonical format (with prepare- ChangeLog encouraging it)?

Re: [webkit-dev] Changes to prepare-ChangeLog

2009-07-09 Thread Ojan Vafai
While having consistency in changelog descriptions is nice, I'm not sure we need to explicitly deal with the case of having multiple authors or multiple bugs for a change. Those are rare enough situations that it's fine for people to include that information however they want. Or, if you don't

Re: [webkit-dev] Coding convention of constants

2009-07-09 Thread Scott Thompson
On Jul 8, 2009, at 11:08 PM, KwangYul Seo wrote: I found another style which starts with k. [4] platform/chromium/PopupMenuChromium.cpp static const int kMaxVisibleRows = 20; static const int kMaxHeight = 500; static const int kBorderSize = 1; static const TimeStamp kTypeAheadTimeoutMs =

Re: [webkit-dev] Coding convention of constants

2009-07-09 Thread Dimitri Glazkov
If we're voting, then +1 to [1]. If we're not voting, then oops. :DG On Thu, Jul 9, 2009 at 12:50 PM, Darin Adlerda...@apple.com wrote: On Jul 8, 2009, at 9:08 PM, KwangYul Seo wrote: I found another style which starts with k. [4] platform/chromium/PopupMenuChromium.cpp static const int

Re: [webkit-dev] Coding convention of constants

2009-07-09 Thread Darin Fisher
Ditto. The last time I wondered about this, I grepped through the code and found [1] to be the most prevalent. So, in code reviews I have been recommending people do [1]. -Darin On Thu, Jul 9, 2009 at 8:16 PM, Dimitri Glazkov dglaz...@chromium.orgwrote: If we're voting, then +1 to [1]. If

Re: [webkit-dev] Coding convention of constants

2009-07-09 Thread Maciej Stachowiak
On Jul 9, 2009, at 8:55 PM, Darin Fisher wrote: Ditto. The last time I wondered about this, I grepped through the code and found [1] to be the most prevalent. So, in code reviews I have been recommending people do [1]. I think that's the nicest style (just like a variable, no special

[webkit-dev] Please welcome GYP to the our dysfunctional build family

2009-07-09 Thread Dimitri Glazkov
Dear WebKiteurs, In our persisting quest to be more like a common WebKit port, we have added Chromium build files to the tree this afternoon. These files are WebCore/WebCore.gypi and JavaScriptCore/JavaScriptCore.gypi and they are the GYP include files. As you may know, we use GYP

Re: [webkit-dev] Please welcome GYP to the our dysfunctional build family

2009-07-09 Thread Jeremy Orlow
This makes me very, very, very happy. :-) On Thu, Jul 9, 2009 at 9:23 PM, Dimitri Glazkov dglaz...@chromium.orgwrote: Dear WebKiteurs, In our persisting quest to be more like a common WebKit port, we have added Chromium build files to the tree this afternoon. These files are

Re: [webkit-dev] how to port webkit on mobile

2009-07-09 Thread naveen pal
Hi Nilesh, Fast of all thank you for fast replay. I have received following information from customer. * Webkit-based browser and web application running on PXA270 reference board - Hardware spec.: PXA270, NOR Flash, NAND Flash, MDOC, 3.5 LCD with touch

[webkit-dev] Tools for test performance of webkit based gtk browser

2009-07-09 Thread naveen pal
Hi I have developed webkit based gtk browser. now i want to test it's performance and increase it's performance for this can any one suggest any free tools. Thanks in advance. Regards, Naveen -- View this message in context:

Re: [webkit-dev] Tools for test performance of webkit based gtk browser

2009-07-09 Thread Jan Michael Alonzo
On Fri, Jul 10, 2009 at 3:36 PM, naveen pal naveen@unnat-e.com wrote: Hi I have developed webkit based gtk browser. now i want to test it's performance and increase it's performance for this can any one suggest any free tools. Hi Naveen This list is for developing WebKit. You're

Re: [webkit-dev] Tools for test performance of webkit based gtk browser

2009-07-09 Thread naveen pal
Thank you jan for your suggestion. jmalonzo wrote: On Fri, Jul 10, 2009 at 3:36 PM, naveen pal naveen@unnat-e.com wrote: Hi I have developed webkit based gtk browser. now i want to test it's performance and increase it's performance for this can any one suggest any free tools.