Re: [webkit-dev] Please set the svn:mime-type property on binary files before committing

2012-03-08 Thread Ashod Nakashian
Please let's also enforce svn:eol-style to LF for all scripts as this is 
breaking (at least) the bash scripts that are checked-out with native style on 
Windows. Some bash versions don't like CR. Please see a (failed) attempt at 
fixing this manually[1].

I also believe we should mark all (Bash/Perl/Python) scripts as 
executable. It's best to at least automate it, if not also check for violations 
via check-webkit-style. (And for the loving of all that's good, would someone 
please help with this bug[1]?)

[1] https://bugs.webkit.org/show_bug.cgi?id=79509

-Ash





 From: Simon Fraser simon.fra...@apple.com
To: Eric Seidel e...@webkit.org 
Cc: WebKit Development webkit-dev@lists.webkit.org 
Sent: Thursday, March 8, 2012 3:37 AM
Subject: Re: [webkit-dev] Please set the svn:mime-type property on binary 
files before committing
 
The best way to enforce it would be with a pre-commit hook:
https://bugs.webkit.org/show_bug.cgi?id=80548

Simon

On Mar 7, 2012, at 3:33 PM, Eric Seidel wrote:

 Unless this is enforced by a tool, it's very likely to be forgotten.
 
 https://bugs.webkit.org/show_bug.cgi?id=75824
 https://bugs.webkit.org/show_bug.cgi?id=75825
 
 
 On Wed, Mar 7, 2012 at 3:21 PM, Dan Bernstein m...@apple.com wrote:
 Please set the svn:mime-type property on binary files that you add to the
 tree, such as *-expected.png, before committing. Otherwise the resulting
 webkit-changes message will include those files as text, which is
 inconvenient.
 
 Thanks.
 
 ___
 webkit-dev mailing list
 webkit-dev@lists.webkit.org
 http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev
 
 ___
 webkit-dev mailing list
 webkit-dev@lists.webkit.org
 http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev

___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] Please set the svn:mime-type property on binary files before committing

2012-03-08 Thread Ojan Vafai
Whoops. A lot of these were from me yesterday. Sorry, I didn't realize I
didn't have my subversion config set correctly.

I went to fix up my commits from yesterday and realized that a very large
percentage of the pngs in the LayoutTests tree have the wrong
svn:mime-type. Is anyone opposed to me doing a bulk fix for all the pngs?

find LayoutTests | grep \.png$ | grep -v \.svn | xargs svn ps svn:mime-type
image/png



On Thu, Mar 8, 2012 at 1:52 AM, Ashod Nakashian ashodnakash...@yahoo.comwrote:

 Please let's also enforce svn:eol-style to LF for all scripts as this is
 breaking (at least) the bash scripts that are checked-out with native style
 on Windows. Some bash versions don't like CR. Please see a (failed)
 attempt at fixing this manually[1].

 I also believe we should mark all (Bash/Perl/Python) scripts as executable. 
 It's
 best to at least automate it, if not also check for violations via
 check-webkit-style. (And for the loving of all that's good, would someone
 please help with this bug[1]?)

 [1] https://bugs.webkit.org/show_bug.cgi?id=79509

 -Ash

   --
 *From:* Simon Fraser simon.fra...@apple.com
 *To:* Eric Seidel e...@webkit.org
 *Cc:* WebKit Development webkit-dev@lists.webkit.org
 *Sent:* Thursday, March 8, 2012 3:37 AM
 *Subject:* Re: [webkit-dev] Please set the svn:mime-type property on
 binary files before committing

 The best way to enforce it would be with a pre-commit hook:
 https://bugs.webkit.org/show_bug.cgi?id=80548

 Simon

 On Mar 7, 2012, at 3:33 PM, Eric Seidel wrote:

  Unless this is enforced by a tool, it's very likely to be forgotten.
 
  https://bugs.webkit.org/show_bug.cgi?id=75824
  https://bugs.webkit.org/show_bug.cgi?id=75825
 
 
  On Wed, Mar 7, 2012 at 3:21 PM, Dan Bernstein m...@apple.com wrote:
  Please set the svn:mime-type property on binary files that you add to
 the
  tree, such as *-expected.png, before committing. Otherwise the resulting
  webkit-changes message will include those files as text, which is
  inconvenient.
 
  Thanks.
 
  ___
  webkit-dev mailing list
  webkit-dev@lists.webkit.org
  http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev
 
  ___
  webkit-dev mailing list
  webkit-dev@lists.webkit.org
  http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev

 ___
 webkit-dev mailing list
 webkit-dev@lists.webkit.org
 http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev



 ___
 webkit-dev mailing list
 webkit-dev@lists.webkit.org
 http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] Please set the svn:mime-type property on binary files before committing

2012-03-08 Thread Philip Rogers
Ojan,

There are also quite a few files with the svn:executable property set (359
in LayoutTests alone, by my count), I think most of which are erroneous.

Philip

On Thu, Mar 8, 2012 at 3:05 PM, Ojan Vafai o...@chromium.org wrote:

 Whoops. A lot of these were from me yesterday. Sorry, I didn't realize I
 didn't have my subversion config set correctly.

 I went to fix up my commits from yesterday and realized that a very large
 percentage of the pngs in the LayoutTests tree have the wrong
 svn:mime-type. Is anyone opposed to me doing a bulk fix for all the pngs?

 find LayoutTests | grep \.png$ | grep -v \.svn | xargs svn ps
 svn:mime-type image/png



 On Thu, Mar 8, 2012 at 1:52 AM, Ashod Nakashian 
 ashodnakash...@yahoo.comwrote:

 Please let's also enforce svn:eol-style to LF for all scripts as this is
 breaking (at least) the bash scripts that are checked-out with native style
 on Windows. Some bash versions don't like CR. Please see a (failed)
 attempt at fixing this manually[1].

 I also believe we should mark all (Bash/Perl/Python) scripts as
 executable. It's best to at least automate it, if not also check for
 violations via check-webkit-style. (And for the loving of all that's good,
 would someone please help with this bug[1]?)

 [1] https://bugs.webkit.org/show_bug.cgi?id=79509

 -Ash

   --
 *From:* Simon Fraser simon.fra...@apple.com
 *To:* Eric Seidel e...@webkit.org
 *Cc:* WebKit Development webkit-dev@lists.webkit.org
 *Sent:* Thursday, March 8, 2012 3:37 AM
 *Subject:* Re: [webkit-dev] Please set the svn:mime-type property on
 binary files before committing

 The best way to enforce it would be with a pre-commit hook:
 https://bugs.webkit.org/show_bug.cgi?id=80548

 Simon

 On Mar 7, 2012, at 3:33 PM, Eric Seidel wrote:

  Unless this is enforced by a tool, it's very likely to be forgotten.
 
  https://bugs.webkit.org/show_bug.cgi?id=75824
  https://bugs.webkit.org/show_bug.cgi?id=75825
 
 
  On Wed, Mar 7, 2012 at 3:21 PM, Dan Bernstein m...@apple.com wrote:
  Please set the svn:mime-type property on binary files that you add to
 the
  tree, such as *-expected.png, before committing. Otherwise the
 resulting
  webkit-changes message will include those files as text, which is
  inconvenient.
 
  Thanks.
 
  ___
  webkit-dev mailing list
  webkit-dev@lists.webkit.org
  http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev
 
  ___
  webkit-dev mailing list
  webkit-dev@lists.webkit.org
  http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev

 ___
 webkit-dev mailing list
 webkit-dev@lists.webkit.org
 http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev



 ___
 webkit-dev mailing list
 webkit-dev@lists.webkit.org
 http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev



 ___
 webkit-dev mailing list
 webkit-dev@lists.webkit.org
 http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] Please set the svn:mime-type property on binary files before committing

2012-03-08 Thread Eric Seidel
Go for it!  rs=me.

Better yet would be automating that process, and/or making one of the
tools warn if they're missing...

On Thu, Mar 8, 2012 at 12:05 PM, Ojan Vafai o...@chromium.org wrote:
 Whoops. A lot of these were from me yesterday. Sorry, I didn't realize I
 didn't have my subversion config set correctly.

 I went to fix up my commits from yesterday and realized that a very large
 percentage of the pngs in the LayoutTests tree have the wrong svn:mime-type.
 Is anyone opposed to me doing a bulk fix for all the pngs?

 find LayoutTests | grep \.png$ | grep -v \.svn | xargs svn ps svn:mime-type
 image/png



 On Thu, Mar 8, 2012 at 1:52 AM, Ashod Nakashian ashodnakash...@yahoo.com
 wrote:

 Please let's also enforce svn:eol-style to LF for all scripts as this is
 breaking (at least) the bash scripts that are checked-out with native style
 on Windows. Some bash versions don't like CR. Please see a (failed) attempt
 at fixing this manually[1].

 I also believe we should mark all (Bash/Perl/Python) scripts as
 executable. It's best to at least automate it, if not also check for
 violations via check-webkit-style. (And for the loving of all that's good,
 would someone please help with this bug[1]?)

 [1] https://bugs.webkit.org/show_bug.cgi?id=79509

 -Ash

 
 From: Simon Fraser simon.fra...@apple.com
 To: Eric Seidel e...@webkit.org
 Cc: WebKit Development webkit-dev@lists.webkit.org
 Sent: Thursday, March 8, 2012 3:37 AM
 Subject: Re: [webkit-dev] Please set the svn:mime-type property on binary
 files before committing

 The best way to enforce it would be with a pre-commit hook:
 https://bugs.webkit.org/show_bug.cgi?id=80548

 Simon

 On Mar 7, 2012, at 3:33 PM, Eric Seidel wrote:

  Unless this is enforced by a tool, it's very likely to be forgotten.
 
  https://bugs.webkit.org/show_bug.cgi?id=75824
  https://bugs.webkit.org/show_bug.cgi?id=75825
 
 
  On Wed, Mar 7, 2012 at 3:21 PM, Dan Bernstein m...@apple.com wrote:
  Please set the svn:mime-type property on binary files that you add to
  the
  tree, such as *-expected.png, before committing. Otherwise the
  resulting
  webkit-changes message will include those files as text, which is
  inconvenient.
 
  Thanks.
 
  ___
  webkit-dev mailing list
  webkit-dev@lists.webkit.org
  http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev
 
  ___
  webkit-dev mailing list
  webkit-dev@lists.webkit.org
  http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev

 ___
 webkit-dev mailing list
 webkit-dev@lists.webkit.org
 http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev



 ___
 webkit-dev mailing list
 webkit-dev@lists.webkit.org
 http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] Please set the svn:mime-type property on binary files before committing

2012-03-08 Thread Dan Bernstein

On Mar 8, 2012, at 12:05 PM, Ojan Vafai o...@chromium.org wrote:

 Whoops. A lot of these were from me yesterday. Sorry, I didn't realize I 
 didn't have my subversion config set correctly.
 
 I went to fix up my commits from yesterday and realized that a very large 
 percentage of the pngs in the LayoutTests tree have the wrong svn:mime-type. 
 Is anyone opposed to me doing a bulk fix for all the pngs?

No. I have done this myself multiple times in the past.

 
 find LayoutTests | grep \.png$ | grep -v \.svn | xargs svn ps svn:mime-type 
 image/png

I tend to be more conservative and only set the property on PNGs that don’t 
already have it set to something.

 
 
 
 On Thu, Mar 8, 2012 at 1:52 AM, Ashod Nakashian ashodnakash...@yahoo.com 
 wrote:
 Please let's also enforce svn:eol-style to LF for all scripts as this is 
 breaking (at least) the bash scripts that are checked-out with native style 
 on Windows. Some bash versions don't like CR. Please see a (failed) attempt 
 at fixing this manually[1].
 
 I also believe we should mark all (Bash/Perl/Python) scripts as executable. 
 It's best to at least automate it, if not also check for violations via 
 check-webkit-style. (And for the loving of all that's good, would someone 
 please help with this bug[1]?)
 
 [1] https://bugs.webkit.org/show_bug.cgi?id=79509
 
 -Ash
 
 From: Simon Fraser simon.fra...@apple.com
 To: Eric Seidel e...@webkit.org 
 Cc: WebKit Development webkit-dev@lists.webkit.org 
 Sent: Thursday, March 8, 2012 3:37 AM
 Subject: Re: [webkit-dev] Please set the svn:mime-type property on binary 
 files before committing
 
 The best way to enforce it would be with a pre-commit hook:
 https://bugs.webkit.org/show_bug.cgi?id=80548
 
 Simon
 
 On Mar 7, 2012, at 3:33 PM, Eric Seidel wrote:
 
  Unless this is enforced by a tool, it's very likely to be forgotten.
  
  https://bugs.webkit.org/show_bug.cgi?id=75824
  https://bugs.webkit.org/show_bug.cgi?id=75825
  
  
  On Wed, Mar 7, 2012 at 3:21 PM, Dan Bernstein m...@apple.com wrote:
  Please set the svn:mime-type property on binary files that you add to the
  tree, such as *-expected.png, before committing. Otherwise the resulting
  webkit-changes message will include those files as text, which is
  inconvenient.
  
  Thanks.
  
  ___
  webkit-dev mailing list
  webkit-dev@lists.webkit.org
  http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev
  
  ___
  webkit-dev mailing list
  webkit-dev@lists.webkit.org
  http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev
 
 ___
 webkit-dev mailing list
 webkit-dev@lists.webkit.org
 http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev
 
 
 
 ___
 webkit-dev mailing list
 webkit-dev@lists.webkit.org
 http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev
 
 
 ___
 webkit-dev mailing list
 webkit-dev@lists.webkit.org
 http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev

___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] Please set the svn:mime-type property on binary files before committing

2012-03-07 Thread James Robinson
On Wed, Mar 7, 2012 at 3:21 PM, Dan Bernstein m...@apple.com wrote:

 Please set the svn:mime-type property on binary files that you add to the
 tree, such as *-expected.png, before committing. Otherwise the resulting
 webkit-changes message will include those files as text, which is
 inconvenient.


Step 3 of
http://trac.webkit.org/wiki/CommitterTips#Walkingyouthroughyourfirstcommit
should
take care of this (
http://trac.webkit.org/wiki/UsingGitWithWebKit#Misc.TipsandTricks has
slightly more verbose directions).

- James



 Thanks.

 ___
 webkit-dev mailing list
 webkit-dev@lists.webkit.org
 http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] Please set the svn:mime-type property on binary files before committing

2012-03-07 Thread Eric Seidel
Unless this is enforced by a tool, it's very likely to be forgotten.

https://bugs.webkit.org/show_bug.cgi?id=75824
https://bugs.webkit.org/show_bug.cgi?id=75825


On Wed, Mar 7, 2012 at 3:21 PM, Dan Bernstein m...@apple.com wrote:
 Please set the svn:mime-type property on binary files that you add to the
 tree, such as *-expected.png, before committing. Otherwise the resulting
 webkit-changes message will include those files as text, which is
 inconvenient.

 Thanks.

 ___
 webkit-dev mailing list
 webkit-dev@lists.webkit.org
 http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev

___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] Please set the svn:mime-type property on binary files before committing

2012-03-07 Thread Simon Fraser
The best way to enforce it would be with a pre-commit hook:
https://bugs.webkit.org/show_bug.cgi?id=80548

Simon

On Mar 7, 2012, at 3:33 PM, Eric Seidel wrote:

 Unless this is enforced by a tool, it's very likely to be forgotten.
 
 https://bugs.webkit.org/show_bug.cgi?id=75824
 https://bugs.webkit.org/show_bug.cgi?id=75825
 
 
 On Wed, Mar 7, 2012 at 3:21 PM, Dan Bernstein m...@apple.com wrote:
 Please set the svn:mime-type property on binary files that you add to the
 tree, such as *-expected.png, before committing. Otherwise the resulting
 webkit-changes message will include those files as text, which is
 inconvenient.
 
 Thanks.
 
 ___
 webkit-dev mailing list
 webkit-dev@lists.webkit.org
 http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev
 
 ___
 webkit-dev mailing list
 webkit-dev@lists.webkit.org
 http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev

___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] Please set the svn:mime-type property on binary files before committing

2012-03-07 Thread Sravan
Hi,

If i get the context correct,
then mime-type is automatically set to png files as

Property changes on: abc.png
___
Added: svn:mime-type
## -0,0 +1 ##
+image/png

when we run ./Tools/Scripts/svn-create-patch if the svn version is 1.7+.

But this is not being well received by ./Tools/Scripts/svn-apply while
applying patch because it cant process above footer syntax in the patch.
https://bugs.webkit.org/show_bug.cgi?id=80104

-Sravan.

On Thu, Mar 8, 2012 at 5:07 AM, Simon Fraser simon.fra...@apple.com wrote:

 The best way to enforce it would be with a pre-commit hook:
 https://bugs.webkit.org/show_bug.cgi?id=80548

 Simon

 On Mar 7, 2012, at 3:33 PM, Eric Seidel wrote:

  Unless this is enforced by a tool, it's very likely to be forgotten.
 
  https://bugs.webkit.org/show_bug.cgi?id=75824
  https://bugs.webkit.org/show_bug.cgi?id=75825
 
 
  On Wed, Mar 7, 2012 at 3:21 PM, Dan Bernstein m...@apple.com wrote:
  Please set the svn:mime-type property on binary files that you add to
 the
  tree, such as *-expected.png, before committing. Otherwise the resulting
  webkit-changes message will include those files as text, which is
  inconvenient.
 
  Thanks.
 
  ___
  webkit-dev mailing list
  webkit-dev@lists.webkit.org
  http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev
 
  ___
  webkit-dev mailing list
  webkit-dev@lists.webkit.org
  http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev

 ___
 webkit-dev mailing list
 webkit-dev@lists.webkit.org
 http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev

___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] Please set the svn:mime-type property on binary files before committing

2012-01-08 Thread Benjamin Poulain
On Sun, Jan 8, 2012 at 6:15 PM, Dan Bernstein m...@apple.com wrote:
 Please set the svn:mime-type property on binary files that you add to the
 tree, such as *-expected.png, before committing. Otherwise the resulting
 webkit-changes message will include those files as text, which is
 inconvenient.

Some more info :)
http://trac.webkit.org/wiki/CommitterTips#Walkingyouthroughyourfirstcommit

Benjamin
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] Please set the svn:mime-type property on binary files before committing

2012-01-08 Thread Mike Lawther
And for git users:

http://trac.webkit.org/wiki/UsingGitWithWebKit (there is a section on
setting mime-types via subversion's config file).

On 9 January 2012 13:44, Benjamin Poulain benja...@webkit.org wrote:

 On Sun, Jan 8, 2012 at 6:15 PM, Dan Bernstein m...@apple.com wrote:
  Please set the svn:mime-type property on binary files that you add to the
  tree, such as *-expected.png, before committing. Otherwise the resulting
  webkit-changes message will include those files as text, which is
  inconvenient.

 Some more info :)
 http://trac.webkit.org/wiki/CommitterTips#Walkingyouthroughyourfirstcommit

 Benjamin
 ___
 webkit-dev mailing list
 webkit-dev@lists.webkit.org
 http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev

___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] Please set the svn:mime-type property on binary files before committing

2012-01-08 Thread Eric Seidel
Seems like something our tools should do automatically for you.
Humans are inevitably going to get this wrong.

https://bugs.webkit.org/show_bug.cgi?id=75824
https://bugs.webkit.org/show_bug.cgi?id=75825

On Sun, Jan 8, 2012 at 6:44 PM, Benjamin Poulain benja...@webkit.org wrote:
 On Sun, Jan 8, 2012 at 6:15 PM, Dan Bernstein m...@apple.com wrote:
 Please set the svn:mime-type property on binary files that you add to the
 tree, such as *-expected.png, before committing. Otherwise the resulting
 webkit-changes message will include those files as text, which is
 inconvenient.

 Some more info :)
 http://trac.webkit.org/wiki/CommitterTips#Walkingyouthroughyourfirstcommit

 Benjamin
 ___
 webkit-dev mailing list
 webkit-dev@lists.webkit.org
 http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] Please set the svn:mime-type property on binary files before committing

2011-01-14 Thread Eric Seidel
Is this something we should have webkit-patch or the commit-queue do
automatically?

Does git (which the commit-queue uses) already do this?

I'm happy to make such a change to webkit-patch land and the
commit-queue if someone can tell me what needs to be done.  (That
should cover the 90% case since most developers use webkit-patch these
days.)

-eric

On Fri, Jan 14, 2011 at 4:03 PM, Dan Bernstein m...@apple.com wrote:
 Please set the svn:mime-type property on binary files that you add to the
 tree, such as *-expected.png, before committing. Otherwise the resulting
 webkit-changes message will include those files as text, which is
 inconvenient.
 Thanks.
 ___
 webkit-dev mailing list
 webkit-dev@lists.webkit.org
 http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev