<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: It&#8217;s official: GWT 2.0.0 (with SpeedTracer)</title>
	<atom:link href="http://blog.gerardin.info/archives/617/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.gerardin.info/archives/617</link>
	<description>Java, Agile, the Web and other nice things</description>
	<lastBuildDate>Sun, 15 Jan 2012 01:56:06 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Xavier</title>
		<link>http://blog.gerardin.info/archives/617/comment-page-1#comment-897</link>
		<dc:creator>Xavier</dc:creator>
		<pubDate>Wed, 06 Jan 2010 17:16:16 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gerardin.info/?p=617#comment-897</guid>
		<description>Great it worked!  I&#039;ve seen other methods but that failed.  Now have to stay on 1.7.1 until safari 4.0.5 gets out!  But I can continue on discovering GWT which I find great until now!

Thanks Olivier!</description>
		<content:encoded><![CDATA[<p>Great it worked!  I&#8217;ve seen other methods but that failed.  Now have to stay on 1.7.1 until safari 4.0.5 gets out!  But I can continue on discovering GWT which I find great until now!</p>
<p>Thanks Olivier!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: olivier</title>
		<link>http://blog.gerardin.info/archives/617/comment-page-1#comment-896</link>
		<dc:creator>olivier</dc:creator>
		<pubDate>Tue, 05 Jan 2010 21:28:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gerardin.info/?p=617#comment-896</guid>
		<description>Hi, sure I use GWT with Maven, but this has nothing to do with it.. it&#039;s a well known bug that was brought by Safari 4.0.4 update. But all hope is not lost!
Your options are:
	&lt;li&gt;not upgrade to 4.0.4 (too late in your case)&lt;/li&gt;
	&lt;li&gt;downgrade to 4.0.3 (tricky)&lt;/li&gt;
	&lt;li&gt;wait for Apple to fix this in Safari 4.0.5&lt;/li&gt;
	&lt;li&gt;use a fix described&lt;a href=&quot;http://gwtgeek.blogspot.com/2009/11/hosted-mode-crashes-after-os-update.html&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt;&lt;/li&gt;

Luckily I was aware of this so I didn&#039;t apply the 4.0.4 update.</description>
		<content:encoded><![CDATA[<p>Hi, sure I use GWT with Maven, but this has nothing to do with it.. it&#8217;s a well known bug that was brought by Safari 4.0.4 update. But all hope is not lost!<br />
Your options are:</p>
<li>not upgrade to 4.0.4 (too late in your case)</li>
<li>downgrade to 4.0.3 (tricky)</li>
<li>wait for Apple to fix this in Safari 4.0.5</li>
<li>use a fix described<a href="http://gwtgeek.blogspot.com/2009/11/hosted-mode-crashes-after-os-update.html" rel="nofollow" class="liexternal">here</a></li>
<p>Luckily I was aware of this so I didn&#8217;t apply the 4.0.4 update.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Xavier</title>
		<link>http://blog.gerardin.info/archives/617/comment-page-1#comment-895</link>
		<dc:creator>Xavier</dc:creator>
		<pubDate>Tue, 05 Jan 2010 15:09:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gerardin.info/?p=617#comment-895</guid>
		<description>Hi Olivier,

Have you ever tried GWT with Maven?  I tried a little project, and it keep crashing when refreshing content of GWT run window (Hosted Mode). It says &quot;Invalid memory access of location...&quot;.  Any experience of such problem?  I&#039;m running on a Mac (OS/X 10.6.2 and Safari 4.0.4).  I&#039;m frustrated!

Thanks,
Xavier</description>
		<content:encoded><![CDATA[<p>Hi Olivier,</p>
<p>Have you ever tried GWT with Maven?  I tried a little project, and it keep crashing when refreshing content of GWT run window (Hosted Mode). It says &#8220;Invalid memory access of location&#8230;&#8221;.  Any experience of such problem?  I&#8217;m running on a Mac (OS/X 10.6.2 and Safari 4.0.4).  I&#8217;m frustrated!</p>
<p>Thanks,<br />
Xavier</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: olivier</title>
		<link>http://blog.gerardin.info/archives/617/comment-page-1#comment-863</link>
		<dc:creator>olivier</dc:creator>
		<pubDate>Thu, 10 Dec 2009 08:38:43 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gerardin.info/?p=617#comment-863</guid>
		<description>You&#039;re correct... it won&#039;t work on the public beta, you need a Chromium build that has extensions enabled (apparently this comes and go...). I used this one: http://build.chromium.org/buildbot/snapshots/chromium-rel-mac/34059.

You also need to add the command line flag, which is far less trivial on a Mac than it is on Windows. This is easiest done from a terminal window:
-cd to /Applications/Chromium.app/Contents/MacOs
-rename Chromium (binary file) to something like Chromium.bin
-create an executable script named Chromium that will call the original binary with the added parameter. This is what I used:

&lt;code&gt;#!/bin/sh
exec /Applications/Chromium.app/Contents/MacOS/Chromium.bin --enable-extension-timeline-api $@&lt;/code&gt;

-don&#039;t forget to chmod +x Chromium
-start the patched Chromium
-next go to the &lt;a href=&quot;http://code.google.com/webtoolkit/speedtracer/get-started.html#downloading&quot; rel=&quot;nofollow&quot;&gt;speedtracer &quot;getting started&quot; page&lt;/a&gt;, and skip to step 3 (or click &lt;a href=&quot;https://clients2.google.com/service/update2/crx?response=redirect&amp;x=id%3Dognampngfcbddbfemdapefohjiobgbdl%26uc%26lang%3Den-US&quot; rel=&quot;nofollow&quot;&gt;this link&lt;/a&gt; directly).
-accept and few warnings and that&#039;s it, speedtracer on mac!</description>
		<content:encoded><![CDATA[<p>You&#8217;re correct&#8230; it won&#8217;t work on the public beta, you need a Chromium build that has extensions enabled (apparently this comes and go&#8230;). I used this one: <a href="http://build.chromium.org/buildbot/snapshots/chromium-rel-mac/34059" rel="nofollow" class="liexternal">http://build.chromium.org/buildbot/snapshots/chromium-rel-mac/34059</a>.</p>
<p>You also need to add the command line flag, which is far less trivial on a Mac than it is on Windows. This is easiest done from a terminal window:<br />
-cd to /Applications/Chromium.app/Contents/MacOs<br />
-rename Chromium (binary file) to something like Chromium.bin<br />
-create an executable script named Chromium that will call the original binary with the added parameter. This is what I used:</p>
<p><code>#!/bin/sh<br />
exec /Applications/Chromium.app/Contents/MacOS/Chromium.bin --enable-extension-timeline-api $@</code></p>
<p>-don&#8217;t forget to chmod +x Chromium<br />
-start the patched Chromium<br />
-next go to the <a href="http://code.google.com/webtoolkit/speedtracer/get-started.html#downloading" rel="nofollow" class="liexternal">speedtracer &#8220;getting started&#8221; page</a>, and skip to step 3 (or click <a href="https://clients2.google.com/service/update2/crx?response=redirect&#038;x=id%3Dognampngfcbddbfemdapefohjiobgbdl%26uc%26lang%3Den-US" rel="nofollow" class="liexternal">this link</a> directly).<br />
-accept and few warnings and that&#8217;s it, speedtracer on mac!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Elias Mårtenson</title>
		<link>http://blog.gerardin.info/archives/617/comment-page-1#comment-862</link>
		<dc:creator>Elias Mårtenson</dc:creator>
		<pubDate>Wed, 09 Dec 2009 23:35:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gerardin.info/?p=617#comment-862</guid>
		<description>Speed TRacer works fine on Mac. I saw it in action myself yesterday. It was on a collague&#039;s machine, so I don&#039;t know if he was using the Chrome beta or the nightly build.</description>
		<content:encoded><![CDATA[<p>Speed TRacer works fine on Mac. I saw it in action myself yesterday. It was on a collague&#8217;s machine, so I don&#8217;t know if he was using the Chrome beta or the nightly build.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

