<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>Gustavo Noronha (kov) &#187; webkit</title>
	<atom:link href="http://blog.kov.eti.br/wp-rss2.php?cat=16" rel="self" type="application/rss+xml" />
	<link>http://blog.kov.eti.br</link>
	<description>um hacker debiano que mora num lugar chamado mundo</description>
	<pubDate>Wed, 03 Feb 2010 12:04:33 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Content-Encoding in soup - all your gzip are belong to us</title>
		<link>http://blog.kov.eti.br/?p=101</link>
		<comments>http://blog.kov.eti.br/?p=101#comments</comments>
		<pubDate>Sun, 17 Jan 2010 13:28:51 +0000</pubDate>
		<dc:creator>kov</dc:creator>
		
		<category><![CDATA[Collabora]]></category>

		<category><![CDATA[English]]></category>

		<category><![CDATA[webkit]]></category>

		<guid isPermaLink="false">http://blog.kov.eti.br/?p=101</guid>
		<description><![CDATA[One thing everyone forgot to talk about the WebKitGTK+ hackfest was that master Dan Winship added basic Content-Encoding support to libsoup, and patched WebKitGTK+ to use it. If you are using a recent enough version of those you will finally be able to visit web sites that send gzipped content despite the browser saying it [...]]]></description>
			<content:encoded><![CDATA[<p>One thing everyone forgot to talk about the WebKitGTK+ hackfest was that master Dan Winship added basic Content-Encoding support to libsoup, and patched WebKitGTK+ to use it. If you are using a recent enough version of those you will finally be able to visit web sites that send gzipped content despite the browser saying it could not handle it, like the <a href="http://www.archive.org/">Internet Archive</a>.</p>
<p>This was one of those cases in which the web shows all of its potential to behave weirdly. The <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.3">HTTP/1.1 RFC</a> says that if an <em>Accept-Encoding</em> header is not present, the server MAY assume the client accepts any encoding, so we were having many sites send us gzip content even though we did not support it. We then <a href="http://trac.webkit.org/changeset/43832">started sending</a> a header saying &#8220;we support identity, and nothing else!&#8221;.</p>
<p>It turns out the web sucks, so many servers were not happy with a full header, and started giving us angry looks (slashdot, for instance, would not render correctly because it started sending encoded CSS files!). We then <a href="http://trac.webkit.org/changeset/44254">simplified</a> the header we were sending, which made those servers happy again. Some sites, though, completely ignored our saying we didn&#8217;t support anything except identity, and sent us gzipped content anyway. Most of these were misbehaving caches (this was the case for Wikipedia), so would work after you asked for a forced reload, which would ignore the cache, but some servers, such as the Internet Archive&#8217;s didn&#8217;t really want to talk about encodings - they only wanted to send gzip-encoded content.</p>
<p>So, in the end, our only way out was implementing the damn encoding support, which finally <a href="http://trac.webkit.org/changeset/52208">happened</a> during the hackfest. Take that, web!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.kov.eti.br/?feed=rss2&amp;p=101</wfw:commentRss>
		</item>
		<item>
		<title>WebKitGTK+ HackFest!</title>
		<link>http://blog.kov.eti.br/?p=100</link>
		<comments>http://blog.kov.eti.br/?p=100#comments</comments>
		<pubDate>Tue, 22 Dec 2009 13:33:09 +0000</pubDate>
		<dc:creator>kov</dc:creator>
		
		<category><![CDATA[English]]></category>

		<category><![CDATA[Epiphany]]></category>

		<category><![CDATA[gnome]]></category>

		<category><![CDATA[webkit]]></category>

		<guid isPermaLink="false">http://blog.kov.eti.br/?p=100</guid>
		<description><![CDATA[The WebKit hackfest is now over, and I think it was a very productive week. Thank you very much to all who attended, to Igalia for organizing the hackfest, and hosting us so well, to Collabora for having sponsored the event, and allowed me to spend the week working on it, and to the GNOME [...]]]></description>
			<content:encoded><![CDATA[<p>The WebKit hackfest is now over, and I think it was a very productive week. Thank you very much to all who attended, to Igalia for organizing the hackfest, and hosting us so well, to Collabora for having sponsored the event, and allowed me to spend the week working on it, and to the GNOME foundation for having payed all of my costs!</p>
<p><a href="http://kov.eti.br/media/webkit/maps-context-menu.png"><img src="http://kov.eti.br/media/webkit/maps-context-menu.thumb.png" style="margin: 10px; float: right;"/><br />
</a></p>
<p>Xan blogged about day 0, and also a summary of all that was done, so I&#8217;ll focus on the stuff he forgot to mention ;D. The hackfest, for me, started on day -1 with me not allowing Xan to go sleep before he had reviewed a couple patches of mine to fix DOM context menu handling. It always bothered me that Epiphany failed to open right-click menus in some pages, or let pages handle the right click. Well, this is fixed now, and Zimbra users can now have their right click menus, and WoW players can remove talent points from their calculators =P.</p>
<p>It turns out that many of the attendees don&#8217;t like pages messing with their context menus, though, and they had some good points to back up their positions (like pages making it hard to save images, for instance), so I implemented a way to force openning the custom menu: Ctrl-rightclick.</p>
<p>We wanted to use a GtkInfoBar to display questions regarding the form saving - our initial implementation always saved all credentials, but that didn&#8217;t sound good enough. Xan and I thought it would be very complicated to make this work, because there were assumptions in the code regarding which widget contains which, but it turned out to be quite trivial - making EphyEmbed a descendant of GtkVBox instead of GtkScrolledWindow, fixing a small number of assumptions, and that was it.</p>
<p><img src="http://kov.eti.br/media/webkit/remember-password.png"/></p>
<p>The passwords are saved in the GNOME Keyring. It&#8217;s interesting to point out that GNOME Keyring seems to be unhappy with the number of passwords a browser stores - Xan&#8217;s daemon was hanging, crashing, and spawning a large number of threads. My daemon decided to take up some 300MB of RAM at one point. It&#8217;s somewhat funny to see how much a browser pushes the limits of our platform. We are hoping this will improve with the new keyring APIs, and the rewrite that is ongoing. It&#8217;s nice to see my browser form passwords in seahorse, though, and be able to manage them like any other.</p>
<p>One more thing worth of notice, although this post is already a bit too big: one of the main concerns people had during the Hackfest was on making build time smaller. Touching a single file in WebCore causes a debug build of 10 minutes on my laptop. Evan Martin and Benjamin Otte made a push at removing unnecessary includes from WebCore, and WebKitGTK+ files, which brough the build time down a bit. They end up inspiring Aroben, from Apple, to go even further into this, and remove many includes from files all over WebKit.</p>
<p>Evan was also able to bring linking time down by making it possible to link libwebkit without having to build all the intermediate libraries, which brought build time down to 1 minute, when touching a single file in WebCore. Behdad and I also started looking into breaking WebCore up into lots of shared libraries for Debug builds, since we don&#8217;t care too much about speed penalties in those. None of these experiments got committed yet, but I am hoping we will be having a better time hacking on WebKitGTK+ in the near future.</p>
<p>It was awesome meeting everyone, by the way! See you around =).</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.kov.eti.br/?feed=rss2&amp;p=100</wfw:commentRss>
		</item>
		<item>
		<title>Regressions, ah, regressions</title>
		<link>http://blog.kov.eti.br/?p=99</link>
		<comments>http://blog.kov.eti.br/?p=99#comments</comments>
		<pubDate>Fri, 11 Dec 2009 22:15:19 +0000</pubDate>
		<dc:creator>kov</dc:creator>
		
		<category><![CDATA[English]]></category>

		<category><![CDATA[Epiphany]]></category>

		<category><![CDATA[development]]></category>

		<category><![CDATA[gnome]]></category>

		<category><![CDATA[webkit]]></category>

		<guid isPermaLink="false">http://blog.kov.eti.br/?p=99</guid>
		<description><![CDATA[There are few things I really hate. One of them is regressions. Regressions are bad because they usually take away things we are used to rely on, and leave us with the idea that perhaps the technical improvements didn&#8217;t really improve our lifes as a user, despite putting less burden on the developers. Software is [...]]]></description>
			<content:encoded><![CDATA[<p>There are few things I really hate. One of them is regressions. Regressions are bad because they usually take away things we are used to rely on, and leave us with the idea that perhaps the technical improvements didn&#8217;t really improve our lifes as a user, despite putting less burden on the developers. Software is made for users, after all.</p>
<p>As part of my work on WebKitGTK+, I always keep an eye on regressions, both from previous WebKitGTK+ releases, and those imposed on embedding applications on their migration away from Gecko, and try to focus some of my efforts into lowering their numbers, whenever I can.</p>
<p>In recent times I have worked on removing a few very user-visible regressions in Epiphany, which I see as the most demanding WebKitGTK+ user in GNOME, such as <a href="https://bugzilla.gnome.org/show_bug.cgi?id=562611">save page</a> not working, missing<br />
<a href="https://bugzilla.gnome.org/show_bug.cgi?id=601859">favicon support</a>, failing to<br />
<a href="https://bugs.webkit.org/show_bug.cgi?id=32247">perform server-pushed downloads</a> (such as GMail attachments), and not being able to <a href="https://bugzilla.gnome.org/show_bug.cgi?id=503968">view source</a>. An example of a regression from a previous version of WebKit also exists: in 1.1.17 we started advertising more than we should as supported by the HTML5 media player, causing <a href="https://bugzilla.gnome.org/show_bug.cgi?id=604584">download to be almost completely broken</a>.</p>
<p>All of these are working if you are using WebKit and Epiphany from trunk/master, so should be on the next development versions of WebKitGTK+ and Epiphany. Other people have also fixed many other regressions; a few examples: Xan has reimplemented the Epiphany customization of the <a href="https://bugzilla.gnome.org/show_bug.cgi?id=562617">context menu</a>, Frederic Peters provided a work-around for <a href="https://bugzilla.gnome.org/show_bug.cgi?id=584537">mailto: links</a> while we don&#8217;t have <a href="https://bugzilla.gnome.org/show_bug.cgi?id=557777">SoupURILoader</a> yet, and Joanmarie Diggs <a href="https://bugs.webkit.org/show_bug.cgi?id=25524">keeps</a> <a href="https://bugs.webkit.org/show_bug.cgi?id=25415">rocking</a> on the accessibility front!</p>
<p>If you find regressions, keep them coming! If you have a patch, even better! =)</p>
<p>Next week WebKitGTK+ team gets together to work furiously on improving WebKitGTK+ in a <a href="http://live.gnome.org/WebKitGtk/Hackfest2009">hackfest</a> sponsored by <a href="http://www.collabora.co.uk/">Collabora</a>, and <a href="http://www.igalia.com/">Igalia</a>, and hosted/organized by Igalia. While there I should also get my hands on one of <a href="http://blogs.gnome.org/uraeus/2009/12/09/n900-arrival/">these</a>. Can&#8217;t wait! =)</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.kov.eti.br/?feed=rss2&amp;p=99</wfw:commentRss>
		</item>
		<item>
		<title>You know what, this clutter thing is cool</title>
		<link>http://blog.kov.eti.br/?p=92</link>
		<comments>http://blog.kov.eti.br/?p=92#comments</comments>
		<pubDate>Fri, 02 Oct 2009 23:49:18 +0000</pubDate>
		<dc:creator>kov</dc:creator>
		
		<category><![CDATA[English]]></category>

		<category><![CDATA[Epiphany]]></category>

		<category><![CDATA[webkit]]></category>

		<guid isPermaLink="false">http://blog.kov.eti.br/?p=92</guid>
		<description><![CDATA[One of my awesome colleagues from Collabora, Danielle Madeley, has done various improvements to the clutter-gtk project started by the also awesome Alexander Larsson. Reading her blog I was so impressed with this post, that I decided to spend some free time to try out some crazy, experimental stuff using that.
What I did was create [...]]]></description>
			<content:encoded><![CDATA[<p>One of my awesome colleagues from <a href="http://www.collabora.co.uk/">Collabora</a>, <a href="http://dannipenguin.livejournal.com/">Danielle Madeley</a>, has done various improvements to the clutter-gtk project started by the also awesome <a href="http://blogs.gnome.org/alexl/">Alexander Larsson</a>. Reading her blog I was so impressed with <a href="http://dannipenguin.livejournal.com/280866.html">this post</a>, that I decided to spend some free time to try out some crazy, experimental stuff using that.</p>
<p>What I did was create a very simple GTK+ widget that derives from GtkClutterEmbed, and works as a somewhat replacement for GtkNotebook, called, proving how bad I am at naming things, <a href="http://gitorious.org/gkoverview/gkoverview">GkOverview</a>. Like I said, it&#8217;s not really stable or well-done, it doesn&#8217;t even free its resources (in fact, it doesn&#8217;t even have implementations for finalize and dispose!), it&#8217;s really just an experiment.</p>
<p>What GkOverview does is provide a simple API for you to append widgets into it, and it is able to show you one of those widgets, or an overview of all of them. This is quite simple, and yet very powerful. With the help of my <a href="http://fujii.iaaeee.org/diario/">significant other</a>, I have got a layout of the widgets in the overview that I really like.</p>
<p>Of course I used <a href="http://webkitgtk.org/">WebKitGTK+</a> to try it out, what else? And since I had effectivelly, at least in my head, created a fairly convincible replacement for GtkNotebook functionality, I decided a second challenge I could take on myself was to make my preferred browser, Epiphany, use that instead of its EphyNotebook widget. Epiphany being quite well-designed, replacing EphyNotebook was quite a breeze, and here&#8217;s <a href="http://gitorious.org/~kov/epiphany/kov-sandbox/commits/cluttered">the result</a>!</p>
<p>Before I go on, let me repeat it: this is all crappy, experimental, curiosity-induced work. It may be that in the future we can use stuff like this to make, say, improving the back/forward mechanism, history navigation, as other browsers do, replacing tabs with a better UI mechanism, and whatnot.</p>
<p>There&#8217;s a somewhat <a href="http://kov.eti.br/media/webkit/overview.gif">big &#8220;video&#8221;</a>, for your pleasure (I was finally able to create a nice video, using Byzanz =)).</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.kov.eti.br/?feed=rss2&amp;p=92</wfw:commentRss>
<enclosure url="http://kov.eti.br/media/webkit/cluttered-ephy.ogv" length="9997148" type="video/ogg" />
		</item>
		<item>
		<title>WebKitGTK+ 1.1.14 is here!</title>
		<link>http://blog.kov.eti.br/?p=88</link>
		<comments>http://blog.kov.eti.br/?p=88#comments</comments>
		<pubDate>Tue, 08 Sep 2009 14:38:10 +0000</pubDate>
		<dc:creator>kov</dc:creator>
		
		<category><![CDATA[English]]></category>

		<category><![CDATA[Epiphany]]></category>

		<category><![CDATA[webkit]]></category>

		<guid isPermaLink="false">http://blog.kov.eti.br/?p=88</guid>
		<description><![CDATA[1.1.14 is definitely worth blogging about. While I was updating the gtk-doc stuff to update the documentation that is available in our website I was thinking that this is probably the release with the largest amount of API addition I have seen in my time as a contributor to the project! Before I start talking [...]]]></description>
			<content:encoded><![CDATA[<p>1.1.14 is definitely worth blogging about. While I was updating the gtk-doc stuff to update the documentation that is available in <a href="http://webkitgtk.org/reference/index.html">our website</a> I was thinking that this is probably the release with the largest amount of API addition I have seen in my time as a contributor to the project! Before I start talking about the new APIs, though, let me talk of something that went under the hood: Xan has patched WebKitGTK+ to override libsoup&#8217;s connection limits, so that our limits match those of other modern browsers - we now allow up to 60 connections total, and 6 per host. People have been reporting load performance improvements for some sites!</p>
<p>We have an initial set of APIs to deal with the data that was loaded to render the page, represented by the new <a href="http://webkitgtk.org/reference/webkitgtk-WebKitWebDataSource.html">DataSource</a> object. This allows you to peek at the source of the HTML that was rendered, for instance. In the near future we will have ways of getting the data and other information for each <a href="http://webkitgtk.org/reference/webkitgtk-WebKitWebResource.html">resource</a> that is downloaded to compose the page. Jan Alonzo has spent quite some time studying, implementing and perfecting this API, with some help from me and Xan.</p>
<p>One initial piece of the larger API to control resource loading is already there, as well. The WebView will use the new <a href="http://webkitgtk.org/reference/webkitgtk-WebKitWebView.html#WebKitWebView-resource-request-starting">resource-request-starting</a> signal to let you know that a request is about to be sent, and allow you to modify headers, or even the URI that is going to be fetched. For some, the greatest news here is that this allows a basic implementation of <a href="http://git.gnome.org/cgit/epiphany/commit/?id=3d4053a5f71175970712897a298a7ce95d3dfaef">AD blocking</a>, which is now supported in Epiphany with the WebKit backend, as of version 2.27.92, released today! This is something I have been looking at in my <a href="http://www.collabora.co.uk/">Collabora</a> time for some time now, and working along with Xan and Jan, we finally seem to have figure out the API interactions correctly. There&#8217;s more to come regarding resource loading tracking, in the near future.</p>
<p>That would already be a lot, from my point of view, but there&#8217;s a whole lot more. A new contributor, Martin Robinson, has arrived proposing new API pieces for an important HTML5 tool: <a href="http://webkitgtk.org/reference/webkitgtk-WebKitWebDatabase.html">web databases</a>, which brings with it the concept of <a href="http://webkitgtk.org/reference/webkitgtk-WebKitSecurityOrigin.html">SecurityOrigin</a>. Jan has exposed API to put the WebView in <a href="http://webkitgtk.org/reference/webkitgtk-WebKitWebView.html#webkit-web-view-set-view-source-mode">&#8220;view source&#8221; mode</a>, Xan has given us undo/redo support for editable content, and Zan Dobersek has done some overall improvement of our HTML5 media player.</p>
<p>That&#8217;s a lot of change for a release, which also goes to show we still have quite a gap to fill, but we are being able to move forward and fill them quite quickly. If you want to help out, pick something in your area of interest, and send us <a href="http://webkit.org/coding/contributing.html">patches</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.kov.eti.br/?feed=rss2&amp;p=88</wfw:commentRss>
		</item>
		<item>
		<title>WebKitGTK+ progress, and a new browser!</title>
		<link>http://blog.kov.eti.br/?p=83</link>
		<comments>http://blog.kov.eti.br/?p=83#comments</comments>
		<pubDate>Thu, 16 Jul 2009 11:43:17 +0000</pubDate>
		<dc:creator>kov</dc:creator>
		
		<category><![CDATA[English]]></category>

		<category><![CDATA[webkit]]></category>

		<guid isPermaLink="false">http://blog.kov.eti.br/?p=83</guid>
		<description><![CDATA[Long time, no blog. I have apparently been slacking for a very high number of versions, now, so I better start doing something about it!
My last blog was about 1.1.7, and we are now at 1.1.11, so let me try to get a quick summary of important changes since 1.1.17:

Lots of fixes have been made [...]]]></description>
			<content:encoded><![CDATA[<p>Long time, no blog. I have apparently been slacking for a very high number of versions, now, so I better start doing something about it!</p>
<p>My last blog was about 1.1.7, and we are now at 1.1.11, so let me try to get a quick summary of important changes since 1.1.17:</p>
<ul>
<li>Lots of fixes have been made on the scrolling code, which now behaves more like you would expect from a GTK+ widget, and notifications to web applications are also working now</li>
<li>Thanks to the awesome zecke, you can embed arbitrary GTK+ widgets using the &lt;object&gt; and &lt;embed&gt; tags, using the create-plugin-widget signal</li>
<li>WebKitNetworkRequest received a lot of the love it was asking for, and is now very useful for tracking the HTTP conversation</li>
<li>Xan has done awesome work on a11y, and we may have enough done before 2.28 to make WebKitGTK+ be accepted, but that remains to be seen; if you care about that, now is a good time to go to https://bugs.webkit.org/show_bug.cgi?id=25531 and help out!</li>
<li>XSS auditor, a new feature built to improve WebKit&#8217;s security is now enabled</li>
<li>Copying and pasting has seen many improvements</li>
<li>WebKitGTK+ no longer has hackish content sniffing, since we now have that implemented into libsoup!</li>
</ul>
<p>In other news, WebKitGTK+ seems to have gained another application for its ecosystem: <a href="http://www.uzbl.org/">Uzbl</a>, which promises to be a good browser for people who like to work with the UNIX way. It doesn&#8217;t really appeal to my GNOMEr &#8216;I like things that just work&#8217; heart, but it looks like a tool that may appeal to people who prefer building their work environments from various different pieces, so that it works exactly like they want to. I am very happy to see WebKitGTK+ is making it possible for people to write such tools!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.kov.eti.br/?feed=rss2&amp;p=83</wfw:commentRss>
		</item>
		<item>
		<title>My first patch to WebKitGTK+ committed!</title>
		<link>http://blog.kov.eti.br/?p=75</link>
		<comments>http://blog.kov.eti.br/?p=75#comments</comments>
		<pubDate>Mon, 01 Jun 2009 03:19:10 +0000</pubDate>
		<dc:creator>kov</dc:creator>
		
		<category><![CDATA[English]]></category>

		<category><![CDATA[Epiphany]]></category>

		<category><![CDATA[Mozilla]]></category>

		<category><![CDATA[development]]></category>

		<category><![CDATA[gnome]]></category>

		<category><![CDATA[webkit]]></category>

		<guid isPermaLink="false">http://blog.kov.eti.br/?p=75</guid>
		<description><![CDATA[Well, not really my first patch. But the first thing I tried to mess with when I first started looking at WebKitGTK+ was the WebKitNetworkRequest object, because I was fancing the idea of writing stuff such as HTTP transactions monitoring, and things like that. So I wrote a big patch which exposed the internal WebCore [...]]]></description>
			<content:encoded><![CDATA[<p>Well, not really my first patch. But the first thing I tried to mess with when I first started looking at WebKitGTK+ was the <a href="http://webkitgtk.org/reference/webkitgtk-WebKitNetworkRequest.html">WebKitNetworkRequest</a> object, because I was fancing the idea of writing stuff such as HTTP transactions monitoring, and things like that. So I wrote a big patch which exposed the internal WebCore object (ResourceRequest) fully through our own object. That was back in early 2008. We have come a long way since, and through all these months I got a broader perception of what kind of APIs we need, and how WebCore works. We also decided on going soup-only, which had a huge impact on what the final patch actually looks like.</p>
<p>The patch which finally got committed this week is, how can I put it, <em>VERY</em> different from what I had originally written. You can take a look at the long discussions about it in the <a href="https://bugs.webkit.org/show_bug.cgi?id=18608">bug report</a> I used to track progress. I think I should point out that Marco Barisione and Christian Dywan were crucial in helping me get going with my contribution to WebKit at that time.</p>
<p>What this change gives us is basically the fact that a WebKitNetworkRequest now carries more than just the URI for the request (it actually carries with it a reference to the SoupMessage that will be used later in the request processing, which we are planning to expose in the near future), meaning that when WebKit API gives you a request, and you use it to cause a new load (for, say, opening in a new tab), you still get all the headers that were supposed to go with the request, so you don&#8217;t lose things such as, for instance, Referer. So, now, after more than 5 years, the bug that complained that Epiphany <a href="http://bugzilla.gnome.org/show_bug.cgi?id=120341">did not set Referer</a> (and <a href="http://bugzilla.gnome.org/show_bug.cgi?id=59572">Galeon</a> before that) for new tabs is finally closed.</p>
<p>By the way, this problem has been <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=48902">fixed for Mozilla&#8217;s browser</a> back in 2002, but the embedding API is <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=135659">still buggy</a> up to now. There is still hope, since there&#8217;s an attached patch that fixes the issue to be reviewed, and landed. If anyone is reading, it might be a good oportunity to get this fixed in there as well, so that users of applications that use Gecko&#8217;s embedding API can also benefit!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.kov.eti.br/?feed=rss2&amp;p=75</wfw:commentRss>
		</item>
		<item>
		<title>Epiphany/WebKitGTK+ in Debian unstable</title>
		<link>http://blog.kov.eti.br/?p=73</link>
		<comments>http://blog.kov.eti.br/?p=73#comments</comments>
		<pubDate>Tue, 19 May 2009 03:29:42 +0000</pubDate>
		<dc:creator>kov</dc:creator>
		
		<category><![CDATA[Debian]]></category>

		<category><![CDATA[English]]></category>

		<category><![CDATA[Epiphany]]></category>

		<category><![CDATA[webkit]]></category>

		<guid isPermaLink="false">http://blog.kov.eti.br/?p=73</guid>
		<description><![CDATA[I have prepared an epiphany-webkit source package some time ago, and it has finally got out of NEW, thanks to the work Ganeff did this weekend on processing the queue =).
The good thing about those packages is I have patched them heavily to allow for easy parallel installation with Epiphany/Gecko, so you don&#8217;t need to [...]]]></description>
			<content:encoded><![CDATA[<p>I have prepared an epiphany-webkit source package some time ago, and it has finally got out of NEW, thanks to the work Ganeff did this weekend on processing the queue =).</p>
<p>The good thing about those packages is I have patched them heavily to allow for easy parallel installation with Epiphany/Gecko, so you don&#8217;t need to give up your current browser to experiment and test Epiphany with the WebKitGTK+ backend. The gconf tree used for this package is <em>/apps/epiphany-webkit</em>, separate from the normal <em>/apps/epiphany</em>, for extra safety, but notice that your <em>~/.gnome2/epiphany</em> will be shared between the Gecko and WebKit versions, even though the files used by each of them are different most of the time.</p>
<p>Go ahead and install the epiphany-webkit package, and have fun. Notice that if you have an already running session of Epiphany/Gecko, running epiphany-webkit will not be enough to launch Epiphany/Webkit, since Epiphany will just request that a new window be opened through D-Bus. The easiest way to test, if you just want a quick peek, is to run <em>epiphany-webkit -p</em>; this will run a &#8216;private&#8217; instance of Epiphany/WebKit, which doesn&#8217;t touch your history, bookmarks, and passwords.</p>
<p>If you are feeling adventurous and want to make Epiphany/WebKit your default Epiphany you can do so using the following command, and selecting epiphany-webkit:</p>
<pre>
# update-alternatives --config epiphany-browser
</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.kov.eti.br/?feed=rss2&amp;p=73</wfw:commentRss>
		</item>
		<item>
		<title>WebKitGTK+ 1.1.7!</title>
		<link>http://blog.kov.eti.br/?p=71</link>
		<comments>http://blog.kov.eti.br/?p=71#comments</comments>
		<pubDate>Fri, 15 May 2009 00:27:50 +0000</pubDate>
		<dc:creator>kov</dc:creator>
		
		<category><![CDATA[English]]></category>

		<category><![CDATA[webkit]]></category>

		<guid isPermaLink="false">http://blog.kov.eti.br/?p=71</guid>
		<description><![CDATA[So WebKitGTK+ 1.1.7 is here. JIT is finally enabled for x86-64 on Linux! Yay! Go get it!. I am hoping for 1.1.8 we will have serious improvements on what we have landed recently, and on the Media Player. So, stay tuned =D. It looks more and more like we will have a good release for [...]]]></description>
			<content:encoded><![CDATA[<p>So WebKitGTK+ 1.1.7 is here. JIT is finally enabled for x86-64 on Linux! Yay! Go <a href="http://webkitgtk.org/">get it!</a>. I am hoping for 1.1.8 we will have serious improvements on what we have landed recently, and on the Media Player. So, stay tuned =D. It looks more and more like we will have a good release for GNOME 2.28.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.kov.eti.br/?feed=rss2&amp;p=71</wfw:commentRss>
		</item>
		<item>
		<title>WebKitGTK+ 1.1.6, and on patch reviewing</title>
		<link>http://blog.kov.eti.br/?p=70</link>
		<comments>http://blog.kov.eti.br/?p=70#comments</comments>
		<pubDate>Wed, 29 Apr 2009 21:09:43 +0000</pubDate>
		<dc:creator>kov</dc:creator>
		
		<category><![CDATA[English]]></category>

		<category><![CDATA[webkit]]></category>

		<guid isPermaLink="false">http://blog.kov.eti.br/?p=70</guid>
		<description><![CDATA[This time, I won&#8217;t bother too much with release announcement. Xan has done that job for us =D. The good news that preceeded this release by about a week is that now both me and Xan are reviewers for the GTK+ port, so we are able to approve patches, too, along with the already existing [...]]]></description>
			<content:encoded><![CDATA[<p>This time, I won&#8217;t bother too much with release announcement. Xan <a href="http://blogs.gnome.org/xan/2009/04/29/two-releases-for-the-price-of-one/">has done that job for us</a> =D. The good news that preceeded this release by about a week is that now both me and Xan are reviewers for the GTK+ port, so we are able to approve patches, too, along with the already existing reviewers. This may help our port move forward more quickly. If you think your patch is an easy review, or urgent, do catch us on IRC, and let us know, since our port has quite a backlog, and it may be sometime before our scanning of the list catches your entry =).</p>
<p>Thanks to everyone who contributed to this release. I am sure there are many rough edges to sharpen on the new features, so come test and report bugs, (and provide patches if possible =)) please!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.kov.eti.br/?feed=rss2&amp;p=70</wfw:commentRss>
		</item>
	</channel>
</rss>
