<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Carlos Garcia Campos</title>
	<atom:link href="http://blogs.igalia.com/carlosgc/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.igalia.com/carlosgc</link>
	<description></description>
	<lastBuildDate>Thu, 11 Apr 2013 17:48:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>WebKitGTK+ 2.0.0</title>
		<link>http://blogs.igalia.com/carlosgc/2013/04/11/webkitgtk-2-0-0/</link>
		<comments>http://blogs.igalia.com/carlosgc/2013/04/11/webkitgtk-2-0-0/#comments</comments>
		<pubDate>Thu, 11 Apr 2013 17:48:05 +0000</pubDate>
		<dc:creator>carlos garcia campos</dc:creator>
				<category><![CDATA[Free Software]]></category>
		<category><![CDATA[Igalia]]></category>
		<category><![CDATA[WebKit]]></category>
		<category><![CDATA[epiphany]]></category>

		<guid isPermaLink="false">http://blogs.igalia.com/carlosgc/?p=653</guid>
		<description><![CDATA[After more than two years of development the Igalia WebKit team is proud to announce WebKitGTK+ 2.0.0. But what&#8217;s so special about WebKitGTK+ 2.0? The WebKit2GTK+ API is now the default one. This means that it&#8217;s now considered stable from the API/ABI backwards compatibility point of view, and that the old WebKit1 API is in [...]]]></description>
			<content:encoded><![CDATA[<p>After more than two years of development the <a href="http://www.igalia.com">Igalia</a> <a href="http://www.igalia.com/webkit/">WebKit team</a> is proud to announce <a href="https://lists.webkit.org/pipermail/webkit-gtk/2013-March/001406.html">WebKitGTK+ 2.0.0</a>.</p>
<h2>But what&#8217;s so special about WebKitGTK+ 2.0?</h2>
<p>The <a href="http://webkitgtk.org/reference/webkit2gtk/stable/index.html">WebKit2GTK+ API</a> is now the default one. This means that it&#8217;s now considered stable from the API/ABI backwards compatibility point of view, and that the old <a href="http://webkitgtk.org/reference/webkitgtk/stable/index.html">WebKit1 API</a> is in maintenance mode and kind of deprecated. We will maintain both APIs, but we don&#8217;t plan to work on WebKi1 other than fixing bugs.</p>
<p>We encourage everybody to port their existing WebKitGTK+ applications to WebKit2, although we know the WebKit2 GTK+ API is not ready for all applications yet. We will work on adding new API during next release cycle, so let us know if you are missing some API that prevents you from porting your project.</p>
<p><a href="http://projects.gnome.org/epiphany/">Epiphany</a>, the <a href="http://www.gnome.org/">GNOME</a> Web browser, has been <a href="http://blogs.gnome.org/xan/2013/03/25/web-3-8-the-peace-dividends-release/">successfully ported to WebKit2</a> and uses it by default since <a href="http://www.gnome.org/news/2013/03/gnome-3-8-released/">GNOME 3.8</a>.</p>
<h2>What are the benefits of the WebKit2 GTK+ API?</h2>
<p>We have talked several times about the advantages of the multi-process architecture of WebKit2, robustness, responsiveness, security, etc. All of the details of the multi-process separation are mostly transparent for the API users, bringing all those benefits for free to any application using WebKit2 GTK+. We have developed the API on top of this multi-process architecture, but also with the experience of several years developing and maintaining the WebKit1 GTK+ API, learning from the mistakes made in the past and keeping the good ideas. As a result, the WebKit2 API is very similar to the WebKi1 in some parts and quite different in others. We started from scratch with the following goals:</p>
<ul>
<li><strong>Simple and easy to use</strong>. Instead of porting the WebKit1 API to WebKit2, we decided to add new API on demand. We set some milestones based on porting real applications, adding new API required to port them. This also allowed us to design the API, not only thinking about what we want or need to expose, but also how the applications expect to use the API.</li>
<li><strong>Consistency</strong>. We have tried hard to be consistent with the names of the functions, signals and properties exposed by the API.</li>
<li><strong>Flexibility</strong>. When possible, the API allows to use your own implementation of some parts that can be adopted to different platforms. So, you can use your own file chooser, JavaScript dialogs, context menu, print dialog, etc.</li>
<li><strong>It works by default</strong>. For all those features where a custom implementation can be used, there&#8217;s a default implementation in WebKit that just works by default.</li>
<li><strong>Unit tests</strong>. We have enforced all new patches adding API to WebKit2 GTK+ to include also unit tests, so the whole API is covered by unit tests.</li>
</ul>
<p>Let&#8217;s see the major changes and advantages of this new WebKi2 API.</p>
<h3>WebKitWebView is a scrolling widget</h3>
<p>For API users this means that <a href="http://webkitgtk.org/reference/webkit2gtk/stable/WebKitWebView.html">WebKitWebView</a> should not be added to a <a href="https://developer.gnome.org/gtk3/stable/GtkScrolledWindow.html">GtkScrolledWindow</a>, the widget is scrollable by itself. Actually this is also the case of the WebKitWebView in WebKit1, but some hacks were introduced to allow the widget to be used inside a GtkScrolledWindow. This caused a lot of headaches due to the synchronization between the internal scrolling and the GTK+ scroll adjustments. So now the main scrollbars are also handled by the WebKitWebView which, among other things, fixed the problem of the double scrollbars in some web sites.</p>
<p><a href="http://blogs.igalia.com/carlosgc/files/2013/04/webkit-double-scrollbar.png"><img class="aligncenter size-medium wp-image-656" src="http://blogs.igalia.com/carlosgc/files/2013/04/webkit-double-scrollbar-300x126.png" alt="Double scrollbar issue" width="300" height="126" /></a></p>
<h3>Embedded HTTP authentication dialog</h3>
<p>The default implementation of the HTTP authentication embeds a dialog in the WebView instead of using a real GtkDialog. It&#8217;s also integrated with the keyring by default using <a href="https://live.gnome.org/Libsecret">libsecret</a>.</p>
<p><a href="http://blogs.igalia.com/carlosgc/files/2013/04/http-auth-dialog.png"><img class="aligncenter size-medium wp-image-657" src="http://blogs.igalia.com/carlosgc/files/2013/04/http-auth-dialog-300x235.png" alt="HTTP authentication dialog" width="300" height="235" /></a></p>
<h3>GTK+ 2 plugins (flash)</h3>
<p>Plugins also run in a different process that is built with GTK+ 2 to support the most popular plugins like flash that still use GTK+ 2.</p>
<p><a href="http://blogs.igalia.com/carlosgc/files/2013/04/youtube-flash.png"><img class="aligncenter size-medium wp-image-658" src="http://blogs.igalia.com/carlosgc/files/2013/04/youtube-flash-300x187.png" alt="MiniBrowser showing a youtube video using flash plugin" width="300" height="187" /></a></p>
<h3>Web Inspector</h3>
<p>The Web Inspector works automatically in both docked and undocked states without requiring any API call.</p>
<p><a href="http://blogs.igalia.com/carlosgc/files/2013/04/inspector-docked.png"><img class="aligncenter size-medium wp-image-660" src="http://blogs.igalia.com/carlosgc/files/2013/04/inspector-docked-300x242.png" alt="Inspector docked" width="300" height="242" /></a></p>
<p>It also has support for remote inspecting.</p>
<p><a href="http://blogs.igalia.com/carlosgc/files/2013/04/remote-inspecting.png"><img class="aligncenter size-medium wp-image-659" src="http://blogs.igalia.com/carlosgc/files/2013/04/remote-inspecting-300x146.png" alt="Remote inspecting" width="300" height="146" /></a></p>
<h3>Accelerated compositing</h3>
<p>Accelerated compositing is always enabled in WebKit2.</p>
<p><a href="http://blogs.igalia.com/carlosgc/files/2013/04/poster-circle.png"><img class="aligncenter size-medium wp-image-661" src="http://blogs.igalia.com/carlosgc/files/2013/04/poster-circle-264x300.png" alt="Poster circle" width="264" height="300" /></a></p>
<h2>Future plans</h2>
<p>During the <a href="https://live.gnome.org/ThreePointNine">next release cycle</a> we&#8217;ll work on fixing bugs and completing the API, see our <a href="http://trac.webkit.org/wiki/WebKitGTK/WebKit2Roadmap">RoadMap</a> for further details, but we&#8217;ll also explore some other areas not directly related the the API:</p>
<ul>
<li>Multiple web processes support</li>
<li>Sandboxing</li>
<li>Network Process</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blogs.igalia.com/carlosgc/2013/04/11/webkitgtk-2-0-0/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>WebKitGTK+ Hackfest 2012</title>
		<link>http://blogs.igalia.com/carlosgc/2012/12/26/webkitgtk-hackfest-2012/</link>
		<comments>http://blogs.igalia.com/carlosgc/2012/12/26/webkitgtk-hackfest-2012/#comments</comments>
		<pubDate>Wed, 26 Dec 2012 09:20:42 +0000</pubDate>
		<dc:creator>carlos garcia campos</dc:creator>
				<category><![CDATA[Free Software]]></category>
		<category><![CDATA[GNOME]]></category>
		<category><![CDATA[Igalia]]></category>
		<category><![CDATA[WebKit]]></category>
		<category><![CDATA[epiphany]]></category>
		<category><![CDATA[evince]]></category>
		<category><![CDATA[pdf]]></category>

		<guid isPermaLink="false">http://blogs.igalia.com/carlosgc/?p=637</guid>
		<description><![CDATA[This year again the WebKitGTK+ hackfest took place at the Igalia office in A Coruña, and this year again it&#8217;s been awesome. My main goal for the hackfest was to implement an extension system for the web process in WebKit2, that would allow, among other things, to access the DOM, which is the major regression [...]]]></description>
			<content:encoded><![CDATA[<p>This year again the <a href="https://live.gnome.org/Hackfests/WebKitGTK2012">WebKitGTK+ hackfest</a> took place at the <a href="http://www.igalia.com">Igalia</a> office in A Coruña, and this year again it&#8217;s been awesome.</p>
<p>My main goal for the hackfest was to implement an extension system for the web process in <a href="http://trac.webkit.org/wiki/WebKit2">WebKit2</a>, that would allow, among other things, to access the DOM, which is the major regression of the <a href="http://www.webkitgtk.org/reference/webkit2gtk/unstable/index.html">WebKit2 GTK+ API</a>. The idea was to use the exactly same GObject DOM bindings API we are currently using in WebKit1, so I <a href="https://bugs.webkit.org/show_bug.cgi?id=104527">moved it to a convenient static library</a> and <a href="https://bugs.webkit.org/show_bug.cgi?id=104663">installed the public headers in its own directory</a> making it shareable between WebKit1 and WebKit2. Once GObject DOM bindings were accessible from WebKit2 I wrote a <a href="https://bugs.webkit.org/show_bug.cgi?id=105631">first patch to implement the web extension system</a> providing a new API for extensions to access the DOM.</p>
<p>I also took advantage of the hackfest time, to re-take a task I had pending for some time, adding an API to WebKit2 to handle SSL errors. I didn&#8217;t have time to finish the API, but managed to write a <a href="https://bugs.webkit.org/show_bug.cgi?id=104482">first patch to set a policy for SSL errors</a>. For now it only allows to ignore SSL errors and continue the load or make the load fail in case of SSL errors. The idea is to add a new policy to ask the user what to do.</p>
<p>Even though it was not part of my initial plans for the hackfest I ended up working on the document reading integration in Epiphany. I wrote an <a href="https://bugzilla.gnome.org/show_bug.cgi?id=689992">initial patch</a> for Epiphany to load documents supported by Evince embedded in the window like a web view. There are still a lot of features to integrate like zooming, searching, printing, etc.</p>
<div id="attachment_640" class="wp-caption aligncenter" style="width: 310px"><a href="http://blogs.igalia.com/carlosgc/files/2012/12/ephy-evince.png"><img class="size-medium wp-image-640" src="http://blogs.igalia.com/carlosgc/files/2012/12/ephy-evince-300x245.png" alt="" width="300" height="245" /></a><p class="wp-caption-text">Epiphany showing a PDF document</p></div>
<p>I set a milestone to switch Epiphany to WebKit2 by default at the end of the hackfest, but I didn&#8217;t have time to fix all the regressions. We are a lot closer, though.</p>
<p>This event is impossible without the sponsors, thanks!</p>
<p>&nbsp;</p>
<p style="text-align: center"><img class="size-full wp-image-645 aligncenter" src="http://blogs.igalia.com/carlosgc/files/2012/12/igalia.png" alt="" width="168" height="60" /></p>
<p><img class="aligncenter size-full wp-image-643" src="http://blogs.igalia.com/carlosgc/files/2012/12/collabora.png" alt="" width="181" height="87" /></p>
<p><img class="aligncenter size-medium wp-image-644" src="http://blogs.igalia.com/carlosgc/files/2012/12/GNOME_Foundation-300x106.png" alt="" width="300" height="106" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.igalia.com/carlosgc/2012/12/26/webkitgtk-hackfest-2012/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>SSL certificates information support in Epiphany</title>
		<link>http://blogs.igalia.com/carlosgc/2012/08/09/ssl-certificates-information-support-in-epiphany/</link>
		<comments>http://blogs.igalia.com/carlosgc/2012/08/09/ssl-certificates-information-support-in-epiphany/#comments</comments>
		<pubDate>Thu, 09 Aug 2012 16:19:32 +0000</pubDate>
		<dc:creator>carlos garcia campos</dc:creator>
				<category><![CDATA[Free Software]]></category>
		<category><![CDATA[GNOME]]></category>
		<category><![CDATA[Igalia]]></category>
		<category><![CDATA[epiphany]]></category>

		<guid isPermaLink="false">http://blogs.igalia.com/carlosgc/?p=630</guid>
		<description><![CDATA[Since the Epiphany migration to WebKit, websites with an invalid SSL certificate were marked as untrusted with the unsecure lock icon in the location bar. However, it wasn&#8217;t possible to know what was wrong with the certificate nor the certificate details. Using the certificate viewer widget available in gcr, I&#8217;ve implemented a dialog to show [...]]]></description>
			<content:encoded><![CDATA[<p>Since the <a href="http://projects.gnome.org/epiphany/">Epiphany</a> migration to <a href="http://www.webkit.org/">WebKit</a>, websites with an invalid SSL certificate were marked as untrusted with the unsecure lock icon in the location bar. However, it wasn&#8217;t possible to know what was wrong with the certificate nor the certificate details. Using the <a href="http://developer.gnome.org/gcr/stable/GcrCertificateWidget.html">certificate viewer widget</a> available in <a href="http://developer.gnome.org/gcr/stable/index.html">gcr</a>, I&#8217;ve implemented a dialog to show information about the possible SSL errors and certificate details in <a href="http://projects.gnome.org/epiphany/">Epiphany</a>. This also means <a href="http://projects.gnome.org/epiphany/">Epiphany</a> now depends on <a href="http://git.gnome.org/browse/gcr">gcr</a>.</p>
<div id="attachment_631" class="wp-caption aligncenter" style="width: 310px"><a href="http://blogs.igalia.com/carlosgc/files/2012/08/ephy-tls-certificates.png"><img class="size-medium wp-image-631" src="http://blogs.igalia.com/carlosgc/files/2012/08/ephy-tls-certificates-300x198.png" alt="Epiphany showing an invalid certificate" width="300" height="198" /></a><p class="wp-caption-text">Epiphany showing an invalid certificate</p></div>
]]></content:encoded>
			<wfw:commentRss>http://blogs.igalia.com/carlosgc/2012/08/09/ssl-certificates-information-support-in-epiphany/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Epiphany and WebKit2</title>
		<link>http://blogs.igalia.com/carlosgc/2012/07/02/epiphany-and-webkit2/</link>
		<comments>http://blogs.igalia.com/carlosgc/2012/07/02/epiphany-and-webkit2/#comments</comments>
		<pubDate>Mon, 02 Jul 2012 09:37:50 +0000</pubDate>
		<dc:creator>carlos garcia campos</dc:creator>
				<category><![CDATA[Free Software]]></category>
		<category><![CDATA[GNOME]]></category>
		<category><![CDATA[Igalia]]></category>
		<category><![CDATA[WebKit]]></category>

		<guid isPermaLink="false">http://blogs.igalia.com/carlosgc/?p=618</guid>
		<description><![CDATA[During the last week, the Igalia WebKit team has been working on adding the initial support for WebKit2 into Epiphany git master. As we did for Devhelp, there&#8217;s a configure option (&#8211;with-webkit2) that can be used to build Epiphany with WebKit2. The option is disabled by default for now. The WebKit2 GTK+ API is more [...]]]></description>
			<content:encoded><![CDATA[<p>During the last week, the <a href="http://www.igalia.com/nc/work/project/item/webkit/">Igalia WebKit team</a> has been working on adding the initial support for <a href="http://trac.webkit.org/wiki/WebKit2">WebKit2</a> into <a href="http://git.gnome.org/browse/epiphany/log/">Epiphany git master</a>. As <a href="http://blogs.igalia.com/carlosgc/2012/01/26/porting-devhelp-to-webkit2/">we did for Devhelp</a>, there&#8217;s a configure option (&#8211;with-webkit2) that can be used to build <a href="http://projects.gnome.org/epiphany/">Epiphany</a> with WebKit2. The option is disabled by default for now. The <a href="http://www.webkitgtk.org/reference/webkit2gtk/unstable/index.html">WebKit2 GTK+ API</a> is more and more mature and complete, but there are still some important features to implement in order to be able to enable WebKit2 by default in Epiphany. Nevertheless, the main functionality works already and we encourage everybody to give it a try and provide feedback and bug reports. You can also take a look at the <a href="https://bugzilla.gnome.org/show_bug.cgi?id=678610">Epiphany metabug</a> or the <a href="https://trac.webkit.org/wiki/WebKitGTK/WebKit2Roadmap">WebKit2 GTK+ API roadmap</a> if you want to help.</p>
<div id="attachment_619" class="wp-caption aligncenter" style="width: 310px"><a href="http://blogs.igalia.com/carlosgc/files/2012/07/epiphany-wk2-euro.png"><img class="size-medium wp-image-619" src="http://blogs.igalia.com/carlosgc/files/2012/07/epiphany-wk2-euro-300x223.png" alt="Epiphany with WebKit2 playing a random Flash video" width="300" height="223" /></a><p class="wp-caption-text">Epiphany with WebKit2 playing a random Flash video</p></div>
<p>The plan is still to have a first stable version of <a href="http://blogs.igalia.com/carlosgc/2012/02/28/webkitgtk-2-0-for-gnome-3-6/">WebKit2 GTK+ API for GNOME 3.6</a>, but Epiphany will switch to WebKit2 by default when we manage to fix all the regressions, hopefully for GNOME 3.8.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.igalia.com/carlosgc/2012/07/02/epiphany-and-webkit2/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>GNOME 3.4: WebKit2 and kinetic scrolling</title>
		<link>http://blogs.igalia.com/carlosgc/2012/03/29/gnome-3-4-webkit2-and-kinetic-scrolling/</link>
		<comments>http://blogs.igalia.com/carlosgc/2012/03/29/gnome-3-4-webkit2-and-kinetic-scrolling/#comments</comments>
		<pubDate>Thu, 29 Mar 2012 09:33:54 +0000</pubDate>
		<dc:creator>carlos garcia campos</dc:creator>
				<category><![CDATA[GNOME]]></category>
		<category><![CDATA[Igalia]]></category>
		<category><![CDATA[WebKit]]></category>
		<category><![CDATA[gtk+]]></category>

		<guid isPermaLink="false">http://blogs.igalia.com/carlosgc/?p=605</guid>
		<description><![CDATA[The GNOME Project has released GNOME 3.4, the second major release of GNOME 3. A lot of new features, UI improvements and other enhancements are included in this release, as well as important changes in the development platform. You can see all the details in the release notes. One of the applications that has received [...]]]></description>
			<content:encoded><![CDATA[<div class="mceTemp mceIEcenter">
<dl>
<dt><a href="http://blogs.igalia.com/carlosgc/files/2012/03/gnome-3.41.jpg"><img class="size-medium wp-image-606" src="http://blogs.igalia.com/carlosgc/files/2012/03/gnome-3.41-300x89.jpg" alt="The web at your fingertips" width="300" height="89" /></a></dt>
</dl>
</div>
<p>The <a href="http://www.gnome.org">GNOME Project</a> has released<a href="http://www.gnome.org/news/2012/03/gnome-3-4-released/"> GNOME 3.4</a>, the second major release of <a href="http://www.gnome.org/gnome-3/">GNOME 3</a>. A lot of new features, UI improvements and other enhancements are included in this release, as well as important changes in the development platform. You can see all the details in the <a href="http://library.gnome.org/misc/release-notes/3.4/">release notes</a>.</p>
<p>One of the applications that has received a major revamp is <a href="http://projects.gnome.org/epiphany/">Epiphany</a>, the GNOME Web Browser, not only because of the <a href="http://blogs.gnome.org/xan/2011/12/04/a-new-design-for-epiphany-web/">beautiful new interface</a>, but it also has significant improvements in performance and stability. If Epiphany is not your default browser, give it a try when you upgrade to GNOME 3.4. See <a href="http://blogs.gnome.org/xan/2012/03/26/web-its-whats-for-dinner/">Xan</a>&#8216;s and <a href="http://blogs.gnome.org/diegoe/2012/03/27/all-the-new-cool-stuff-in-epiphany-alias-web/">Diego</a>&#8216;s blog posts for more details of the new Web Browser.</p>
<p><strong>WebKit2</strong></p>
<p>GNOME 3.4 includes <a href="https://lists.webkit.org/pipermail/webkit-gtk/2012-March/001012.html">WebKitGTK+ 1.8.0</a>, the first stable release that contains an initial <a href="http://webkitgtk.org/reference/webkit2gtk/unstable/index.html">WebKit2 GTK+ API</a>. It&#8217;s disabled by default, though, since it&#8217;s still a preliminary version, so you need to build with &#8211;enable-webkit2 configure option. It&#8217;s already possible to try it out with <a href="http://live.gnome.org/devhelp">Devhelp</a> 3.4 which can be optionally built with WebKit2 using &#8211;with-webkit2 configure option. If the <a href="http://webkitgtk.org/reference/webkit2gtk/unstable/index.html">current API</a> is enough to port your application, give it a try and let us know, you can use the <a href="http://git.gnome.org/browse/devhelp/log/?h=webkit2">webkit2 devhelp branch</a> as a reference. We&#8217;ll provide a migration guide soon too.</p>
<p><strong>Kinetic scrolling</strong></p>
<p>GTK+ 3.4 has finally support for <a href="http://developer.gnome.org/gtk3/stable/GtkScrolledWindow.html#gtk-scrolled-window-set-kinetic-scrolling">kinetic scrolling</a> in <a href="http://developer.gnome.org/gtk3/stable/GtkScrolledWindow.html">GtkScrolledWindow</a>. I&#8217;m very happy to know that <a href="http://git.gnome.org/browse/gtk+/commit/?id=168ebb83be72796b5c456bf8e522438b25ab7722">the</a> <a href="http://git.gnome.org/browse/gtk+/commit/?id=9f4bfff1b030fffa0d815557ec690d208cb4cd67">work</a> <a href="http://git.gnome.org/browse/gtk+/commit/?id=f6393199beb812b81065890d6fec718ee16632f8">made</a> by <a href="http://www.igalia.com/">Igalia</a> during the <a href="http://blogs.gnome.org/foundation/2010/10/13/gtkmeego-handset-integration-work-call-for-bids/">GTK+/Meego Handset integration project</a> has helped <a href="http://blogs.gnome.org/carlosg/">Carlos Garnacho</a> to properly integrate kinetic scrolling in GTK+.</p>
<p><strong>What&#8217;s next?</strong></p>
<p>During the next development cycle, the <a href="http://www.igalia.com/nc/work/project/item/webkit/">Igalia WebKit team</a> will continue to focus on making Epiphany even more awesome, with <a href="http://live.gnome.org/Epiphany/Roadmap/3.6">more UI improvements</a>, and of course porting it to WebKit2.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.igalia.com/carlosgc/2012/03/29/gnome-3-4-webkit2-and-kinetic-scrolling/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>WebKitGTK+ 2.0 for GNOME 3.6?</title>
		<link>http://blogs.igalia.com/carlosgc/2012/02/28/webkitgtk-2-0-for-gnome-3-6/</link>
		<comments>http://blogs.igalia.com/carlosgc/2012/02/28/webkitgtk-2-0-for-gnome-3-6/#comments</comments>
		<pubDate>Tue, 28 Feb 2012 14:51:36 +0000</pubDate>
		<dc:creator>carlos garcia campos</dc:creator>
				<category><![CDATA[GNOME]]></category>
		<category><![CDATA[Igalia]]></category>
		<category><![CDATA[WebKit]]></category>

		<guid isPermaLink="false">http://blogs.igalia.com/carlosgc/?p=600</guid>
		<description><![CDATA[That&#8217;s the plan! But, what&#8217;s exactly WebKitGTK+ 2.0? It will be the first stable release of WebKit2 GTK+ API, leaving the current WebKit GTK+ API in a maintenance mode. WebKit2 GTK+ is not just about multi-process architecture, robustness, stability and all other great things the new WebKit2 model brings, it&#8217;s also a redesign of the [...]]]></description>
			<content:encoded><![CDATA[<p>That&#8217;s the plan! But, what&#8217;s exactly WebKitGTK+ 2.0? It will be the first stable release of <a href="http://webkitgtk.org/reference/webkit2gtk/unstable/index.html">WebKit2 GTK+ API</a>, leaving the current <a href="http://webkitgtk.org/reference/webkitgtk/stable/index.html">WebKit GTK+ API</a> in a maintenance mode. WebKit2 GTK+ is not just about multi-process architecture, robustness, stability and all other great things the new <a href="http://trac.webkit.org/wiki/WebKit2">WebKit2</a> model brings, it&#8217;s also a redesign of the current WebKitGTK API to make it even more convenient and easier to use.</p>
<p>In the <a href="http://www.igalia.com/">Igalia</a> <a href="http://www.igalia.com/nc/work/project/item/webkit/">WebKit team</a>,  we have planned a <a href="https://trac.webkit.org/wiki/WebKitGTK/WebKit2Roadmap">Roadmap</a> of the tasks we will be actively working on to release WebKitGTK+ 2.0 for GNOME 3.6. Even though unit tests play a very important role in the WebKit2 GTK+ API development, we know that real applications using the API usually reveal issues that the unit tests or test programs like <a href="http://blogs.igalia.com/carlosgc/2011/11/04/webkit2-gtk-minibrowser-ported-to-gtk-api/">MiniBrowser</a> don&#8217;t catch. For that reason, we have set milestones consisting of porting real applications to the new API.</p>
<ul>
<li>GNOME 3.4: Applications using a small part of the API. We will focus on porting <a href="http://live.gnome.org/devhelp">Devhelp</a>.</li>
<li>GNOME 3.5: With the first unstable releases of the 3.5 cycle we should be able to port applications using the API more extensively. We will focus on porting <a href="http://projects.gnome.org/yelp/">Yelp</a>.</li>
<li>GNOME 3.6: We should be able to port any application using WebKitGTK+ without major regressions. We will focus on porting <a href="http://projects.gnome.org/epiphany/">Epiphany</a>.</li>
</ul>
<p>This is, of course, a plan, if we eventually don&#8217;t manage to achieve the milestones, we will release WebKitGTK+ 1.10 for GNOME 3.6 and current plan will be postponed to GNOME 3.8. Needless to say that any help would be more than welcome <img src='http://blogs.igalia.com/carlosgc/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.igalia.com/carlosgc/2012/02/28/webkitgtk-2-0-for-gnome-3-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Porting devhelp to WebKit2</title>
		<link>http://blogs.igalia.com/carlosgc/2012/01/26/porting-devhelp-to-webkit2/</link>
		<comments>http://blogs.igalia.com/carlosgc/2012/01/26/porting-devhelp-to-webkit2/#comments</comments>
		<pubDate>Thu, 26 Jan 2012 14:10:36 +0000</pubDate>
		<dc:creator>carlos garcia campos</dc:creator>
				<category><![CDATA[Igalia]]></category>
		<category><![CDATA[WebKit]]></category>

		<guid isPermaLink="false">http://blogs.igalia.com/carlosgc/?p=591</guid>
		<description><![CDATA[When MiniBrowser was ported to the new WebKit2 GTK+ API, I said we had plans to create a webkit2 branch for epiphany. And we&#8217;ll do it as soon as we have enough API, but epiphany uses most of the WebKit API so this is going to take a bit. In the meantime, we have decided [...]]]></description>
			<content:encoded><![CDATA[<p>When <a href="http://blogs.igalia.com/carlosgc/2011/11/04/webkit2-gtk-minibrowser-ported-to-gtk-api/">MiniBrowser was ported to the new WebKit2 GTK+ API</a>, I said we had plans to create a webkit2 branch for epiphany. And we&#8217;ll do it as soon as we have enough API, but epiphany uses most of the WebKit API so this is going to take a bit. In the meantime, we have decided to focus on other applications that use a small part of the WebKit API like <a href="http://live.gnome.org/devhelp">devhelp</a>, <a href="http://projects.gnome.org/yelp/">yelp</a>, <a href="http://liferea.sourceforge.net/">liferea</a>, etc. Yesterday I pushed a <a href="http://git.gnome.org/browse/devhelp/log/?h=webkit2">webkit2 branch</a> into the devhelp git repository with some initial commits that allow to use devhelp with WebKit2. Even though WebKit2 is available in the latest WebKit unstable releases, there&#8217;s a <a href="https://bugs.webkit.org/show_bug.cgi?id=76626">bug</a> and public headers are not installed, so you need to <a href="https://trac.webkit.org/wiki/BuildingGtk">build WebKit</a> from git to be able to build the devhelp webkit2 branch. The main functionality works, but there are still some features missing that we are currently working on:</p>
<ul>
<li>Policy client: used by devhelp to decide what to do with unknown content and to open links in a new tab with middle click. <a href="http://blog.abandonedwig.info/">Martin Robinson</a> is working on Policy Client API for WebKit2, the <a href="https://bugs.webkit.org/show_bug.cgi?id=76343">patches</a> <a href="https://bugs.webkit.org/show_bug.cgi?id=76789">are</a> pretty good and will be pushed soon.</li>
<li>Search: We already agreed on the new API and <a href="http://blogs.igalia.com/svillar/">Sergio Villar</a> wrote the <a href="https://bugs.webkit.org/show_bug.cgi?id=76070">patch</a> that will also land soon.</li>
<li>Printing: This is not only about adding API, it requires adding support for printing in the Web process too. The main problem is that we need to show the print dialog in the UI process and render pages for printing in the Web process, so we can&#8217;t use <a href="http://developer.gnome.org/gtk3/stable/gtk3-High-level-Printing-API.html">GtkPrintOperation</a>. We have already <a href="https://bugs.webkit.org/show_bug.cgi?id=75544">patches</a> to implement <a href="https://bugs.webkit.org/show_bug.cgi?id=76172">basic printing support</a> and adding <a href="https://bugs.webkit.org/show_bug.cgi?id=76448">initial</a> <a href="https://bugs.webkit.org/show_bug.cgi?id=76536">API</a>. These patches only work for UNIX, so patches to make it work in win32 would be really appreciated.</li>
<li>Editing commands: There&#8217;s already a <a href="https://bugs.webkit.org/show_bug.cgi?id=76998">patch</a> to add cut, copy and paste API, but we are discussing the possibility to move to a more generic approach for editing commands.</li>
</ul>
<p>And here is the mandatory screenshot, although there&#8217;s nothing special since WebKit2 changes don&#8217;t affect the UI.</p>
<div id="attachment_592" class="wp-caption aligncenter" style="width: 310px"><a href="http://blogs.igalia.com/carlosgc/files/2012/01/devhelp-webkit2.png"><img class="size-medium wp-image-592 " src="http://blogs.igalia.com/carlosgc/files/2012/01/devhelp-webkit2-300x207.png" alt="Devhelp using WebKit2" width="300" height="207" /></a><p class="wp-caption-text">Devhelp using WebKit2</p></div>
<p>We will keep updating the webkit2 branch when new API lands in WebKit until there aren&#8217;t regressions. Then we&#8217;ll focus on yelp which requires two important challenges: DOM bindings and context menu API.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.igalia.com/carlosgc/2012/01/26/porting-devhelp-to-webkit2/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Preliminary WebKit2 GTK+ API documentation</title>
		<link>http://blogs.igalia.com/carlosgc/2011/12/16/preliminary-webkit2-gtk-api-documentation/</link>
		<comments>http://blogs.igalia.com/carlosgc/2011/12/16/preliminary-webkit2-gtk-api-documentation/#comments</comments>
		<pubDate>Fri, 16 Dec 2011 11:31:56 +0000</pubDate>
		<dc:creator>carlos garcia campos</dc:creator>
				<category><![CDATA[GNOME]]></category>
		<category><![CDATA[Igalia]]></category>
		<category><![CDATA[WebKit]]></category>

		<guid isPermaLink="false">http://blogs.igalia.com/carlosgc/?p=587</guid>
		<description><![CDATA[We have just released WebKitGTK+ 1.7.3, the first release that includes WebKit2 API docs already generated in the tarball. The documentation is also available online now. Take into account that WebKit2 is still under development and the API might change, more specifically WebKitWebLoaderClient is going to be removed soon.]]></description>
			<content:encoded><![CDATA[<p>We have just released <a href="https://lists.webkit.org/pipermail/webkit-gtk/2011-December/000846.html">WebKitGTK+ 1.7.3</a>, the first release that includes WebKit2 API docs already generated in the <a href="http://webkitgtk.org/webkit-1.7.3.tar.xz">tarball</a>. The documentation is also available <a href="http://webkitgtk.org/reference/webkit2gtk/unstable/index.html">online</a> now. Take into account that WebKit2 is still under development and the API might change, more specifically <a href="http://webkitgtk.org/reference/webkit2gtk/unstable/WebKitWebLoaderClient.html">WebKitWebLoaderClient</a> is going to be <a href="https://bugs.webkit.org/show_bug.cgi?id=74605">removed</a> soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.igalia.com/carlosgc/2011/12/16/preliminary-webkit2-gtk-api-documentation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>libgxps 0.2.0</title>
		<link>http://blogs.igalia.com/carlosgc/2011/11/19/libgxps-0-2-0/</link>
		<comments>http://blogs.igalia.com/carlosgc/2011/11/19/libgxps-0-2-0/#comments</comments>
		<pubDate>Sat, 19 Nov 2011 19:08:11 +0000</pubDate>
		<dc:creator>carlos garcia campos</dc:creator>
				<category><![CDATA[GNOME]]></category>
		<category><![CDATA[evince]]></category>
		<category><![CDATA[xps]]></category>

		<guid isPermaLink="false">http://blogs.igalia.com/carlosgc/?p=580</guid>
		<description><![CDATA[More than a month ago I released libgxps 0.1.0, the first release of libgxps, but for several reasons I ended up not announcing it. I&#8217;ve just released a new version that includes a small API break and a lot of new features and improvements, see the release notes for further details. I&#8217;ll release evince 3.3.2 [...]]]></description>
			<content:encoded><![CDATA[<p>More than a month ago I released <a href="http://download.gnome.org/sources/libgxps/0.1/libgxps-0.1.0.tar.xz">libgxps 0.1.0</a>, the first release of <a href="http://live.gnome.org/libgxps">libgxps</a>, but for several reasons I ended up not announcing it. I&#8217;ve just released a <a href="http://download.gnome.org/sources/libgxps/0.2/libgxps-0.2.0.tar.xz">new version</a> that includes a small API break and a lot of new features and improvements, see the <a href="http://http://download.gnome.org/sources/libgxps/0.2/libgxps-0.2.0.news">release notes</a> for further details. I&#8217;ll release evince 3.3.2 next week depending on this new libgxps version (when building with &#8211;enable-xps).</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.igalia.com/carlosgc/2011/11/19/libgxps-0-2-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WebKit2 GTK+ MiniBrowser ported to GTK+ API!</title>
		<link>http://blogs.igalia.com/carlosgc/2011/11/04/webkit2-gtk-minibrowser-ported-to-gtk-api/</link>
		<comments>http://blogs.igalia.com/carlosgc/2011/11/04/webkit2-gtk-minibrowser-ported-to-gtk-api/#comments</comments>
		<pubDate>Fri, 04 Nov 2011 18:05:49 +0000</pubDate>
		<dc:creator>carlos garcia campos</dc:creator>
				<category><![CDATA[GNOME]]></category>
		<category><![CDATA[Igalia]]></category>
		<category><![CDATA[WebKit]]></category>

		<guid isPermaLink="false">http://gnome/minibrowser-ported-to-gtk-api</guid>
		<description><![CDATA[MiniBrowser is a small web browser application for testing WebKit2. MiniBrowser for the GTK+ port has been working for some time now, but it was implemented using the C-based WebKit2 API. WebKitGTK+ 1.7.1 introduced an initial high level GTK+ API for WebKit2 more similar to the current WebKit1 GTK+ API. This week, Igalia&#8216;s WebKit team [...]]]></description>
			<content:encoded><![CDATA[<p>MiniBrowser is a small web browser application for testing <a href="http://trac.webkit.org/wiki/WebKit2">WebKit2</a>. MiniBrowser for the GTK+ port <a href="http://blogs.igalia.com/alex/2011/04/08/webkit2-minibrowser-for-the-gtk-port-running/">has been working for some time now</a>, but it was implemented using the C-based WebKit2 API. <a href="https://lists.webkit.org/pipermail/webkit-gtk/2011-October/000794.html">WebKitGTK+ 1.7.1</a> introduced an initial high level GTK+ API for WebKit2 more similar to the current <a href="http://webkitgtk.org/reference/index.html">WebKit1 GTK+ API</a>. This week, <a href="http://www.igalia.com/">Igalia</a>&#8216;s <a href="http://www.igalia.com/nc/work/project/item/webkitgtk/">WebKit team</a> started to <a href="https://bugs.webkit.org/show_bug.cgi?id=71447">port the MiniBrowser</a> code to use the new GTK+ API.</p>
<table border="0" width="100%">
<tbody>
<tr align="center">
<td><a href="http://blogs.igalia.com/carlosgc/files/old/mini-browser.png"> <img src="http://blogs.igalia.com/carlosgc/files/old/mini-browser-min.png" alt="MiniBrowser running" /></a></td>
</tr>
<tr align="center">
<td><em>MiniBrowser running</em></td>
</tr>
</tbody>
</table>
<p>This new GTK+ API is far from complete compared to the <a href="http://webkitgtk.org/reference/index.html">WebKit1 API</a>, but it&#8217;s already possible to implement a small application with basic features, and we have plans to create a webkit2 branch for <a href="http://projects.gnome.org/epiphany/">epiphany</a> soon. API is already documented in the <a href="http://trac.webkit.org/browser/trunk/Source/WebKit2/UIProcess/API/gtk">code</a>, but the html generation is not available yet. We are already working on it so that WebKitGTK+ 1.7.2 will generate the API documentation when compiled with &#8211;enable-gtk-doc and &#8211;enable-webkit2 and it will be available on the <a href="http://webkitgtk.org">WebKitGTK+ website</a> too.</p>
<p>Thanks to the <a href="http://trac.webkit.org/wiki/WebKit2#ProcessArchitecture">multiprocess architecture</a>, WebKit2GTK+ solves the problem of using flash (or any other plugin using GTK+2) with GTK+3. The UI process depends unconditonally on GTK+3 and the plugin process is always built with GTK+2. And of course, flash will never crash or block your web browser. Plugins are broken in WebKitGTK+ 1.7.1 due to a <a href="https://bugs.webkit.org/show_bug.cgi?id=71027">bug</a> that has already been fixed, so in order to try it out you need to either wait until 1.7.2 is released or <a href="https://trac.webkit.org/wiki/BuildingGtk">build WebKit from current git master</a>.</p>
<table border="0" width="100%">
<tbody>
<tr align="center">
<td><a href="http://blogs.igalia.com/carlosgc/files/old/mini-browser-flash.png"> <img src="http://blogs.igalia.com/carlosgc/files/old/mini-browser-flash-min.png" alt="MiniBrowser showing a youtube video" /></a></td>
</tr>
<tr align="center">
<td><em>MiniBrowser showing a youtube video</em></td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://blogs.igalia.com/carlosgc/2011/11/04/webkit2-gtk-minibrowser-ported-to-gtk-api/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>
