Re: [webkit-dev] WebKit Icon license?

2010-03-22 Thread Jeremy Orlow
On Fri, Mar 19, 2010 at 4:00 PM, Darin Adler da...@apple.com wrote:

 On Mar 19, 2010, at 8:40 AM, Dimitri Glazkov wrote:

  Would you happen to know how WebKit icon is licensed?

 The icon currently on webkit.org has the icon for Apple’s Safari web
 browser in it. Because of that, Apple has provided no license to use the
 icon; we are continuing to use it with informal permission from Apple.


Given that WebKit has been more than just the rendering engine Safari uses
for quite some time now, I wonder if it'd be worth trying to come up with
something unique for the project.  One benefit would be that it could be
used more freely.

Anyone with graphic design skillz going to the WebKit meeting?  :-)

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


[webkit-dev] WebKit cache of non-http resources

2010-03-22 Thread Mihnea-Vlad Ovidenie
Hi there,

WebKit Bug 13128: Safari not obeying cache header changed the way non-http 
resources are cached in WebKit. A comment from Antti Koivisto mentioned that, 
aside from the RFC2616 changes, there is one additional change that gives 
non-HTTP resources long cache lifetime. This matches existing behavior.

I have the following scenario:

html
head
script
function reloadFrameByDocumentWrite() {
var frameDocument = 
document.getElementById('ID1').contentWindow.document;
frameDocument.open();
frameDocument.write(img src='pic.png' /);
frameDocument.close();
}
/script
/head
body
input type=button value=Reload onclick=reloadFrameByDocumentWrite(); 
/
iframe id=ID1/iframe
/body
/html

When I load the above code in WebKit and hit Reload, the picture is displayed 
into frame ID1. If I change the content of *pic.png* picture while the page is 
loaded in WebKit and I press Reload button again, the frame does not display 
the updated content of the picture from the local disk.

I took a look at the changelist 44452 and in WebCore\loader\CachedResource.cpp 
double CachedResource::freshnessLifetime() const 
{ 
// Cache non-http resources liberally 
if (!m_response.url().protocolInHTTPFamily()) 
return std::numeric_limitsdouble::max();

...
}

This means that in cases like the one described above, since the *pic.png* has 
protocol *file*, it will be cached for a long time and the new content will not 
be displayed.

This is different than Safari 4.0 beta and Safari 3.2.1 on Windows. I was 
wondering what should be the right behavior here since I was not able to find 
that in RFC 2616? FF3.5.7 works like WebKit/Chrome/Safari 4.0.5. IE8 displays 
the updated image.

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


Re: [webkit-dev] Web developer documentation - working with Mozilla

2010-03-22 Thread henry.haverinen

Hi everyone,

So to sum up the discussion so far,  we should have a neutral place for the web 
developer documentation, so that everyone can comfortably send 
web developers there. The other key requirement is an explicit license and 
contribution model that preserves the license.

The neutral place could be under webkit.org, or a new browser engine 
independent site -- mozilla.org is not neutral enough. 

Do you agree with this? Should we just get started under webkit.org? -- if so, 
how could we get an open documentation license in place? 

I'm not convinced we really need auto-generated documentation. If we did that, 
we should have some kind of in-line mark-up
(like Doxygen or qdoc) for adding the descriptions and other fields, so we 
could repeatedly auto-generate the docs. 
This might be overkill right now, and a lot harder to contribute than a wiki.

Regards,
Henry

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


Re: [webkit-dev] WebKit Icon license?

2010-03-22 Thread Dimitri Glazkov
I just reached out to the Russian icon powerhouse, Turbomilk
(turbomilk.com), and they're interested in pitching in as well. Maybe
we should have a contest?

:DG

On Mon, Mar 22, 2010 at 5:43 AM, Kenneth Christiansen
kenneth.christian...@openbossa.org wrote:
 I have asked our designers to look into it :-)

 Kenneth

 On Mon, Mar 22, 2010 at 8:42 AM, Jeremy Orlow jor...@chromium.org wrote:
 On Fri, Mar 19, 2010 at 4:00 PM, Darin Adler da...@apple.com wrote:

 On Mar 19, 2010, at 8:40 AM, Dimitri Glazkov wrote:

  Would you happen to know how WebKit icon is licensed?

 The icon currently on webkit.org has the icon for Apple’s Safari web
 browser in it. Because of that, Apple has provided no license to use the
 icon; we are continuing to use it with informal permission from Apple.

 Given that WebKit has been more than just the rendering engine Safari uses
 for quite some time now, I wonder if it'd be worth trying to come up with
 something unique for the project.  One benefit would be that it could be
 used more freely.
 Anyone with graphic design skillz going to the WebKit meeting?  :-)
 J
 ___
 webkit-dev mailing list
 webkit-dev@lists.webkit.org
 http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev





 --
 Kenneth Rohde Christiansen
 Technical Lead / Senior Software Engineer
 Qt Labs Americas, Nokia Technology Institute, INdT
 Phone  +55 81 8895 6002 / E-mail kenneth.christiansen at openbossa.org
 ___
 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] WebKit Icon license?

2010-03-22 Thread Kenneth Christiansen
Contest is fine :-) That is how our designers created the Maemo logo:

https://wiki.maemo.org/Task:maemo.org_logo_contest
http://wiki.maemo.org/Maemo.org_logo_contest_submissions

I'm cc'ing Marcelo, who is our Brazilian Head of User Experience and Design.

Cheers,
Kenneth

On Mon, Mar 22, 2010 at 12:55 PM, Dimitri Glazkov dglaz...@chromium.org wrote:
 I just reached out to the Russian icon powerhouse, Turbomilk
 (turbomilk.com), and they're interested in pitching in as well. Maybe
 we should have a contest?

 :DG

 On Mon, Mar 22, 2010 at 5:43 AM, Kenneth Christiansen
 kenneth.christian...@openbossa.org wrote:
 I have asked our designers to look into it :-)

 Kenneth

 On Mon, Mar 22, 2010 at 8:42 AM, Jeremy Orlow jor...@chromium.org wrote:
 On Fri, Mar 19, 2010 at 4:00 PM, Darin Adler da...@apple.com wrote:

 On Mar 19, 2010, at 8:40 AM, Dimitri Glazkov wrote:

  Would you happen to know how WebKit icon is licensed?

 The icon currently on webkit.org has the icon for Apple’s Safari web
 browser in it. Because of that, Apple has provided no license to use the
 icon; we are continuing to use it with informal permission from Apple.

 Given that WebKit has been more than just the rendering engine Safari uses
 for quite some time now, I wonder if it'd be worth trying to come up with
 something unique for the project.  One benefit would be that it could be
 used more freely.
 Anyone with graphic design skillz going to the WebKit meeting?  :-)
 J
 ___
 webkit-dev mailing list
 webkit-dev@lists.webkit.org
 http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev





 --
 Kenneth Rohde Christiansen
 Technical Lead / Senior Software Engineer
 Qt Labs Americas, Nokia Technology Institute, INdT
 Phone  +55 81 8895 6002 / E-mail kenneth.christiansen at openbossa.org
 ___
 webkit-dev mailing list
 webkit-dev@lists.webkit.org
 http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev





-- 
Kenneth Rohde Christiansen
Technical Lead / Senior Software Engineer
Qt Labs Americas, Nokia Technology Institute, INdT
Phone  +55 81 8895 6002 / E-mail kenneth.christiansen at openbossa.org
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] Web developer documentation - working with Mozilla

2010-03-22 Thread Darin Adler
On Mar 22, 2010, at 7:26 AM, henry.haveri...@nokia.com wrote:

 If we did that, we should have some kind of in-line mark-up (like Doxygen or 
 qdoc) for adding the descriptions and other fields, so we could repeatedly 
 auto-generate the docs. 

If the markup isn’t too repetitive than I think it might fit in well into the 
.idl files. Doing things this way could help us remember to document new things 
as they are added.

If the markup has too much boilerplate and repeated text, then it could make 
the .idl files unpleasant to read.

-- Darin

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


Re: [webkit-dev] How can I get the Image object from the StyleImage object

2010-03-22 Thread David Hyatt
Images can either be bitmap images (GIF/JPG/PNG, etc.) or generated images that 
care about a size (gradient, SVG).  So the answer really depends on your 
purpose.  If you are just worried about bitmap images, then the passed in size 
doesn't really matter.  Otherwise the correct size to use would depend on 
context, e.g., how was it being painted (as a background, a border, a list 
bullet, etc.)

dave

On Mar 21, 2010, at 8:51 PM, hap 497 wrote:

 Hi,
 
 I would like to know how can I get the ImageObject(the one which
 passes for painting) from a StyleImage object?
 
 I am able to get the StyleImage of my element using:
 
 RenderObject *o = element-renderer();
   RenderStyle* style = o-style();
 StyleImage* bgImage = style-backgroundImage();
 
 My question is how can I get the Image being painted (the one which is
 actual pass to Graphics Context)?
 
 I see this method in StyleImage, but how can I use that? How can I
 find out the IntSize which is used for painting?
 virtual Image* image(RenderObject*, const IntSize) const = 0;
 
 Thank you for your help.
 ___
 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] Gtk and Qt bots need love

2010-03-22 Thread Eric Seidel
On Mon, Mar 22, 2010 at 1:39 PM, Eric Seidel esei...@google.com wrote:
 The Qt bots are nice and happy. :)  We'll try to keep them that way.

 The Gtk bots still need another round of lovin.

 -eric

 On Fri, Mar 19, 2010 at 7:18 PM, Kenneth Christiansen
 kenneth.christian...@openbossa.org wrote:
 If you cannot get it working, please add it to Skipped and I will look
 into it on monday when I'm back at work.

 I was actually talking to a co-worker about our long list of new
 results while on the plane yesterday and I will see if my team can
 dedicate a day per week to look into these.

 Kenneth

 On Fri, Mar 19, 2010 at 5:16 PM, tonikitoo (Antonio Gomes)
 toniki...@gmail.com wrote:
 Hey, these 42 missing results files on Qt are there for a while, indeed.

 I am also trying Kenneth and Ossy w/ the crashy Qt bot, by looking at
 fast/media/print-restores-previous-mediatype.html

 On Fri, Mar 19, 2010 at 3:41 PM, Xan Lopez x...@gnome.org wrote:
 On Fri, Mar 19, 2010 at 9:59 PM, Eric Seidel e...@webkit.org wrote:
 Gtk and Qt bots need love.

 Looks like Gtk needs 5 new results, and Qt needs 42.

 Various other tests are failing there too.

 Do any Qt/Gtk folks have a minute to try and green up the bots so we
 can start tracking regressions on those platforms again?

 Looking at the GTK bots.

 Xan


 -eric
 ___
 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




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




 --
 Kenneth Rohde Christiansen
 Technical Lead / Senior Software Engineer
 Qt Labs Americas, Nokia Technology Institute, INdT
 Phone  +55 81 8895 6002 / E-mail kenneth.christiansen at openbossa.org
 ___
 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] Chromium layout test expectations coming today

2010-03-22 Thread Dirk Pranke
On Fri, Mar 19, 2010 at 7:06 PM, Maciej Stachowiak m...@apple.com wrote:

 On Mar 19, 2010, at 5:30 PM, Ojan Vafai wrote:

 Currently we do BUG12345 for Chromium bugs. There are no WebKit bugs listed.
 How about we instead use CR12345 for Chromium bugs and WK12345 for WebKit
 bugs?

 Another possibility would be to use bug URLs.

The current expectations file has lines that (barely but) usually
clock in at under 80-characters.

I am reluctant to change things that make it more effort for a user to
type in and make it harder to read by going over 80 characters and
wrapping. I'm not sure what real advantage would be gained by making
it a URL to offset this. I have rarely found myself
cutting-and-pasting or clicking on stuff from this file.

So, I would vote for a shorter shortcut, like the 3-4 character
prefixes that have been suggested.

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


Re: [webkit-dev] WebKit Icon license?

2010-03-22 Thread Eric Seidel
Interesting.  Looks like the WebKit icon on CIA is different from
webkit.org.  I could have sworn they used to be the same:
http://cia.vc/stats/project/webkit

-eric

On Mon, Mar 22, 2010 at 11:07 AM, Kenneth Christiansen
kenneth.christian...@openbossa.org wrote:
 Contest is fine :-) That is how our designers created the Maemo logo:

 https://wiki.maemo.org/Task:maemo.org_logo_contest
 http://wiki.maemo.org/Maemo.org_logo_contest_submissions

 I'm cc'ing Marcelo, who is our Brazilian Head of User Experience and Design.

 Cheers,
 Kenneth

 On Mon, Mar 22, 2010 at 12:55 PM, Dimitri Glazkov dglaz...@chromium.org 
 wrote:
 I just reached out to the Russian icon powerhouse, Turbomilk
 (turbomilk.com), and they're interested in pitching in as well. Maybe
 we should have a contest?

 :DG

 On Mon, Mar 22, 2010 at 5:43 AM, Kenneth Christiansen
 kenneth.christian...@openbossa.org wrote:
 I have asked our designers to look into it :-)

 Kenneth

 On Mon, Mar 22, 2010 at 8:42 AM, Jeremy Orlow jor...@chromium.org wrote:
 On Fri, Mar 19, 2010 at 4:00 PM, Darin Adler da...@apple.com wrote:

 On Mar 19, 2010, at 8:40 AM, Dimitri Glazkov wrote:

  Would you happen to know how WebKit icon is licensed?

 The icon currently on webkit.org has the icon for Apple’s Safari web
 browser in it. Because of that, Apple has provided no license to use the
 icon; we are continuing to use it with informal permission from Apple.

 Given that WebKit has been more than just the rendering engine Safari uses
 for quite some time now, I wonder if it'd be worth trying to come up with
 something unique for the project.  One benefit would be that it could be
 used more freely.
 Anyone with graphic design skillz going to the WebKit meeting?  :-)
 J
 ___
 webkit-dev mailing list
 webkit-dev@lists.webkit.org
 http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev





 --
 Kenneth Rohde Christiansen
 Technical Lead / Senior Software Engineer
 Qt Labs Americas, Nokia Technology Institute, INdT
 Phone  +55 81 8895 6002 / E-mail kenneth.christiansen at openbossa.org
 ___
 webkit-dev mailing list
 webkit-dev@lists.webkit.org
 http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev





 --
 Kenneth Rohde Christiansen
 Technical Lead / Senior Software Engineer
 Qt Labs Americas, Nokia Technology Institute, INdT
 Phone  +55 81 8895 6002 / E-mail kenneth.christiansen at openbossa.org
 ___
 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] WebKit Icon license?

2010-03-22 Thread Chris Jerdonek
On Mon, Mar 22, 2010 at 2:30 PM, Eric Seidel e...@webkit.org wrote:
 Interesting.  Looks like the WebKit icon on CIA is different from
 webkit.org.  I could have sworn they used to be the same:
 http://cia.vc/stats/project/webkit

That's also the icon used for the WebKit group on LinkedIn:

http://www.linkedin.com/groups?about=gid=91394

[Resent from correct address.]



 -eric

 On Mon, Mar 22, 2010 at 11:07 AM, Kenneth Christiansen
 kenneth.christian...@openbossa.org wrote:
 Contest is fine :-) That is how our designers created the Maemo logo:

 https://wiki.maemo.org/Task:maemo.org_logo_contest
 http://wiki.maemo.org/Maemo.org_logo_contest_submissions

 I'm cc'ing Marcelo, who is our Brazilian Head of User Experience and Design.

 Cheers,
 Kenneth

 On Mon, Mar 22, 2010 at 12:55 PM, Dimitri Glazkov dglaz...@chromium.org 
 wrote:
 I just reached out to the Russian icon powerhouse, Turbomilk
 (turbomilk.com), and they're interested in pitching in as well. Maybe
 we should have a contest?

 :DG

 On Mon, Mar 22, 2010 at 5:43 AM, Kenneth Christiansen
 kenneth.christian...@openbossa.org wrote:
 I have asked our designers to look into it :-)

 Kenneth

 On Mon, Mar 22, 2010 at 8:42 AM, Jeremy Orlow jor...@chromium.org wrote:
 On Fri, Mar 19, 2010 at 4:00 PM, Darin Adler da...@apple.com wrote:

 On Mar 19, 2010, at 8:40 AM, Dimitri Glazkov wrote:

  Would you happen to know how WebKit icon is licensed?

 The icon currently on webkit.org has the icon for Apple’s Safari web
 browser in it. Because of that, Apple has provided no license to use the
 icon; we are continuing to use it with informal permission from Apple.

 Given that WebKit has been more than just the rendering engine Safari uses
 for quite some time now, I wonder if it'd be worth trying to come up with
 something unique for the project.  One benefit would be that it could be
 used more freely.
 Anyone with graphic design skillz going to the WebKit meeting?  :-)
 J
 ___
 webkit-dev mailing list
 webkit-dev@lists.webkit.org
 http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev





 --
 Kenneth Rohde Christiansen
 Technical Lead / Senior Software Engineer
 Qt Labs Americas, Nokia Technology Institute, INdT
 Phone  +55 81 8895 6002 / E-mail kenneth.christiansen at openbossa.org
 ___
 webkit-dev mailing list
 webkit-dev@lists.webkit.org
 http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev





 --
 Kenneth Rohde Christiansen
 Technical Lead / Senior Software Engineer
 Qt Labs Americas, Nokia Technology Institute, INdT
 Phone  +55 81 8895 6002 / E-mail kenneth.christiansen at openbossa.org
 ___
 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] file names with spaces

2010-03-22 Thread Chris Jerdonek
I was wondering if there are any reasons we would ever need files in
our repository whose file names contain spaces.  The reason is that it
makes shell commands slightly trickier to write (e.g. using the bash
shell).

I found that we currently have these files whose file names have spaces:

 find . -wholename '* *' \! \( -wholename '*.svn*' -or -wholename 
 */WebKitBuild/* \)

./LayoutTests/fast/encoding/resources/%25%u0435 0 %xx%%%ulike.html
./LayoutTests/http/tests/misc/resources/a success.html
./PageLoadTests/svg/files/42450-under the see.svg
./PageLoadTests/svg/files/44057-drops on a blade.svg
./WebCore/manual-tests/inspector/errors-with-space in-url.html
./WebKitSite/demos/transitions-and-transforms/Finder Coverflow.png
./WebKitSite/demos/transitions-and-transforms/Mail Stationery.png
./WebKitSite/demos/transitions-and-transforms/Quick Look.png
./WebKitSite/demos/transitions-and-transforms/Time Machine.png
./WebKitTools/DumpRenderTree/fonts/WebKit Layout Tests 2.ttf
./WebKitTools/DumpRenderTree/fonts/WebKit Layout Tests.ttf

Can we make it a part of our style guide that file names shouldn't have spaces?

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


Re: [webkit-dev] file names with spaces

2010-03-22 Thread Adele Peterson

On Mar 22, 2010, at 10:24 PM, Chris Jerdonek wrote:

 I was wondering if there are any reasons we would ever need files in
 our repository whose file names contain spaces.  The reason is that it
 makes shell commands slightly trickier to write (e.g. using the bash
 shell).
 
 I found that we currently have these files whose file names have spaces:
 
 find . -wholename '* *' \! \( -wholename '*.svn*' -or -wholename 
 */WebKitBuild/* \)
 
 ./LayoutTests/fast/encoding/resources/%25%u0435 0 %xx%%%ulike.html
 ./LayoutTests/http/tests/misc/resources/a success.html
 ./PageLoadTests/svg/files/42450-under the see.svg
 ./PageLoadTests/svg/files/44057-drops on a blade.svg
 ./WebCore/manual-tests/inspector/errors-with-space in-url.html

This one seems intentional.

 ./WebKitSite/demos/transitions-and-transforms/Finder Coverflow.png
 ./WebKitSite/demos/transitions-and-transforms/Mail Stationery.png
 ./WebKitSite/demos/transitions-and-transforms/Quick Look.png
 ./WebKitSite/demos/transitions-and-transforms/Time Machine.png
 ./WebKitTools/DumpRenderTree/fonts/WebKit Layout Tests 2.ttf
 ./WebKitTools/DumpRenderTree/fonts/WebKit Layout Tests.ttf
 
 Can we make it a part of our style guide that file names shouldn't have 
 spaces?
 
 Thanks,
 --Chris
 ___
 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] file names with spaces

2010-03-22 Thread Chris Jerdonek
On Mon, Mar 22, 2010 at 10:29 PM, Adele Peterson ad...@apple.com wrote:

 On Mar 22, 2010, at 10:24 PM, Chris Jerdonek wrote:

 I was wondering if there are any reasons we would ever need files in
 our repository whose file names contain spaces.  The reason is that it
 makes shell commands slightly trickier to write (e.g. using the bash
 shell).

 I found that we currently have these files whose file names have spaces:

 find . -wholename '* *' \! \( -wholename '*.svn*' -or -wholename 
 */WebKitBuild/* \)

 ./LayoutTests/fast/encoding/resources/%25%u0435 0 %xx%%%ulike.html
 ./LayoutTests/http/tests/misc/resources/a success.html
 ./PageLoadTests/svg/files/42450-under the see.svg
 ./PageLoadTests/svg/files/44057-drops on a blade.svg
 ./WebCore/manual-tests/inspector/errors-with-space in-url.html

        This one seems intentional.

Yes.  I think it's to be expected that rules will occasionally need to
be violated -- especially for testing purposes (e.g. tabs and trailing
spaces in test files).

Another possibility is landing third-party code as-is.

I guess I'm asking if it would be okay to establish a rule for cases
we control and that do not have a special need.

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


Re: [webkit-dev] file names with spaces

2010-03-22 Thread Maciej Stachowiak


On Mar 22, 2010, at 10:29 PM, Adele Peterson wrote:



On Mar 22, 2010, at 10:24 PM, Chris Jerdonek wrote:


I was wondering if there are any reasons we would ever need files in
our repository whose file names contain spaces.  The reason is that  
it

makes shell commands slightly trickier to write (e.g. using the bash
shell).

I found that we currently have these files whose file names have  
spaces:


find . -wholename '* *' \! \( -wholename '*.svn*' -or -wholename  
*/WebKitBuild/* \)


./LayoutTests/fast/encoding/resources/%25%u0435 0 %xx%%%ulike.html
./LayoutTests/http/tests/misc/resources/a success.html
./PageLoadTests/svg/files/42450-under the see.svg
./PageLoadTests/svg/files/44057-drops on a blade.svg
./WebCore/manual-tests/inspector/errors-with-space in-url.html


This one seems intentional.


These two as well:


./LayoutTests/fast/encoding/resources/%25%u0435 0 %xx%%%ulike.html
./LayoutTests/http/tests/misc/resources/a success.html


Regards,
Maciej

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


Re: [webkit-dev] file names with spaces

2010-03-22 Thread Eric Seidel
I would be against changing our guide to discourage spaces.

It's easy (and good practice) to code for handling paths with spaces.
Even if we discourage spaces in webkit itself, people who checkout
webkit in a path with spaces in it would still be screwed.

-eric

On Mon, Mar 22, 2010 at 10:24 PM, Chris Jerdonek cjerdo...@webkit.org wrote:
 I was wondering if there are any reasons we would ever need files in
 our repository whose file names contain spaces.  The reason is that it
 makes shell commands slightly trickier to write (e.g. using the bash
 shell).

 I found that we currently have these files whose file names have spaces:

 find . -wholename '* *' \! \( -wholename '*.svn*' -or -wholename 
 */WebKitBuild/* \)

 ./LayoutTests/fast/encoding/resources/%25%u0435 0 %xx%%%ulike.html
 ./LayoutTests/http/tests/misc/resources/a success.html
 ./PageLoadTests/svg/files/42450-under the see.svg
 ./PageLoadTests/svg/files/44057-drops on a blade.svg
 ./WebCore/manual-tests/inspector/errors-with-space in-url.html
 ./WebKitSite/demos/transitions-and-transforms/Finder Coverflow.png
 ./WebKitSite/demos/transitions-and-transforms/Mail Stationery.png
 ./WebKitSite/demos/transitions-and-transforms/Quick Look.png
 ./WebKitSite/demos/transitions-and-transforms/Time Machine.png
 ./WebKitTools/DumpRenderTree/fonts/WebKit Layout Tests 2.ttf
 ./WebKitTools/DumpRenderTree/fonts/WebKit Layout Tests.ttf

 Can we make it a part of our style guide that file names shouldn't have 
 spaces?

 Thanks,
 --Chris
 ___
 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] file names with spaces

2010-03-22 Thread Maciej Stachowiak


On Mar 22, 2010, at 10:42 PM, Chris Jerdonek wrote:



Yes.  I think it's to be expected that rules will occasionally need to
be violated -- especially for testing purposes (e.g. tabs and trailing
spaces in test files).

Another possibility is landing third-party code as-is.

I guess I'm asking if it would be okay to establish a rule for cases
we control and that do not have a special need.


The most unavoidable exceptions seem to be for test cases that are  
specifically testing what happens when you have a space in the  
filename, not for third-party code. Does the no-spaces rule make it  
easier to write shell commands if there are still files that violate it?


Regards,
Maciej

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


Re: [webkit-dev] WebKit Icon license?

2010-03-22 Thread Sam Weinig
And our own http://planet.webkit.org/.

-Sam

On Mon, Mar 22, 2010 at 3:11 PM, Chris Jerdonek cjerdo...@webkit.orgwrote:

 On Mon, Mar 22, 2010 at 2:30 PM, Eric Seidel e...@webkit.org wrote:
  Interesting.  Looks like the WebKit icon on CIA is different from
  webkit.org.  I could have sworn they used to be the same:
  http://cia.vc/stats/project/webkit

 That's also the icon used for the WebKit group on LinkedIn:

 http://www.linkedin.com/groups?about=gid=91394

 [Resent from correct address.]


 
  -eric
 
  On Mon, Mar 22, 2010 at 11:07 AM, Kenneth Christiansen
  kenneth.christian...@openbossa.org wrote:
  Contest is fine :-) That is how our designers created the Maemo logo:
 
  https://wiki.maemo.org/Task:maemo.org_logo_contest
  http://wiki.maemo.org/Maemo.org_logo_contest_submissions
 
  I'm cc'ing Marcelo, who is our Brazilian Head of User Experience and
 Design.
 
  Cheers,
  Kenneth
 
  On Mon, Mar 22, 2010 at 12:55 PM, Dimitri Glazkov 
 dglaz...@chromium.org wrote:
  I just reached out to the Russian icon powerhouse, Turbomilk
  (turbomilk.com), and they're interested in pitching in as well. Maybe
  we should have a contest?
 
  :DG
 
  On Mon, Mar 22, 2010 at 5:43 AM, Kenneth Christiansen
  kenneth.christian...@openbossa.org wrote:
  I have asked our designers to look into it :-)
 
  Kenneth
 
  On Mon, Mar 22, 2010 at 8:42 AM, Jeremy Orlow jor...@chromium.org
 wrote:
  On Fri, Mar 19, 2010 at 4:00 PM, Darin Adler da...@apple.com
 wrote:
 
  On Mar 19, 2010, at 8:40 AM, Dimitri Glazkov wrote:
 
   Would you happen to know how WebKit icon is licensed?
 
  The icon currently on webkit.org has the icon for Apple’s Safari
 web
  browser in it. Because of that, Apple has provided no license to use
 the
  icon; we are continuing to use it with informal permission from
 Apple.
 
  Given that WebKit has been more than just the rendering engine Safari
 uses
  for quite some time now, I wonder if it'd be worth trying to come up
 with
  something unique for the project.  One benefit would be that it could
 be
  used more freely.
  Anyone with graphic design skillz going to the WebKit meeting?  :-)
  J
  ___
  webkit-dev mailing list
  webkit-dev@lists.webkit.org
  http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev
 
 
 
 
 
  --
  Kenneth Rohde Christiansen
  Technical Lead / Senior Software Engineer
  Qt Labs Americas, Nokia Technology Institute, INdT
  Phone  +55 81 8895 6002 / E-mail kenneth.christiansen at
 openbossa.org
  ___
  webkit-dev mailing list
  webkit-dev@lists.webkit.org
  http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev
 
 
 
 
 
  --
  Kenneth Rohde Christiansen
  Technical Lead / Senior Software Engineer
  Qt Labs Americas, Nokia Technology Institute, INdT
  Phone  +55 81 8895 6002 / E-mail kenneth.christiansen at openbossa.org
  ___
  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