<?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: A framework for GWT multipage applications</title>
	<atom:link href="http://claudiushauptmann.com/a-framework-for-gwt-multipage-applications.html/feed" rel="self" type="application/rss+xml" />
	<link>http://claudiushauptmann.com/a-framework-for-gwt-multipage-applications.html</link>
	<description>Rich Internet applications related stuff</description>
	<lastBuildDate>Wed, 21 Jul 2010 02:17:05 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: rjb</title>
		<link>http://claudiushauptmann.com/a-framework-for-gwt-multipage-applications.html/comment-page-1#comment-1319</link>
		<dc:creator>rjb</dc:creator>
		<pubDate>Wed, 21 Jul 2010 02:17:05 +0000</pubDate>
		<guid isPermaLink="false">http://claudiushauptmann.com/?p=298#comment-1319</guid>
		<description>Claudius, (how) does history work across pages? Is there anything special that the app has to take into account to accommodate GWT history and page switches?
-rjb</description>
		<content:encoded><![CDATA[<p>Claudius, (how) does history work across pages? Is there anything special that the app has to take into account to accommodate GWT history and page switches?<br />
-rjb</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob Ferguson</title>
		<link>http://claudiushauptmann.com/a-framework-for-gwt-multipage-applications.html/comment-page-1#comment-1303</link>
		<dc:creator>Rob Ferguson</dc:creator>
		<pubDate>Tue, 22 Jun 2010 10:34:45 +0000</pubDate>
		<guid isPermaLink="false">http://claudiushauptmann.com/?p=298#comment-1303</guid>
		<description>Hi Claudius,

Thanks for getting back to me.

&quot;account.html(\\\\?locale=(de&#124;fr))?((&amp;&#124;\\\\?)gwt.codesvr=127.0.0.1:9997)?&quot;

Works for both:

-&gt; http://www.myDomain.org/account.html 
and
-&gt; http://www.myDomain.org/account.html?locale=de 

Thanks again.

Kind regards
Rob</description>
		<content:encoded><![CDATA[<p>Hi Claudius,</p>
<p>Thanks for getting back to me.</p>
<p>&#8220;account.html(\\\\?locale=(de|fr))?((&amp;amp;|\\\\?)gwt.codesvr=127.0.0.1:9997)?&#8221;</p>
<p>Works for both:</p>
<p>-&gt; <a href="http://www.myDomain.org/account.html" rel="nofollow">http://www.myDomain.org/account.html</a><br />
and<br />
-&gt; <a href="http://www.myDomain.org/account.html?locale=de" rel="nofollow">http://www.myDomain.org/account.html?locale=de</a> </p>
<p>Thanks again.</p>
<p>Kind regards<br />
Rob</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Claudius</title>
		<link>http://claudiushauptmann.com/a-framework-for-gwt-multipage-applications.html/comment-page-1#comment-1302</link>
		<dc:creator>Claudius</dc:creator>
		<pubDate>Mon, 21 Jun 2010 22:06:36 +0000</pubDate>
		<guid isPermaLink="false">http://claudiushauptmann.com/?p=298#comment-1302</guid>
		<description>Hi Rob,
does something like this work? It does definitly not solve all necessary combinations of parameters.
account.html(\\\\?locale=(de&#124;fr))?((&amp;&#124;\\\\?)gwt.codesvr=127.0.0.1:9997)?
Perhaps this site might help: http://www.regular-expressions.info/
Kind regards
Claudius</description>
		<content:encoded><![CDATA[<p>Hi Rob,<br />
does something like this work? It does definitly not solve all necessary combinations of parameters.<br />
account.html(\\\\?locale=(de|fr))?((&amp;|\\\\?)gwt.codesvr=127.0.0.1:9997)?<br />
Perhaps this site might help: <a href="http://www.regular-expressions.info/" rel="nofollow">http://www.regular-expressions.info/</a><br />
Kind regards<br />
Claudius</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob Ferguson</title>
		<link>http://claudiushauptmann.com/a-framework-for-gwt-multipage-applications.html/comment-page-1#comment-1301</link>
		<dc:creator>Rob Ferguson</dc:creator>
		<pubDate>Mon, 21 Jun 2010 11:08:08 +0000</pubDate>
		<guid isPermaLink="false">http://claudiushauptmann.com/?p=298#comment-1301</guid>
		<description>Hi Claudius,

I didn&#039;t have any luck with with locales.  What I mean is sometimes the URL will just be:

-&gt; http://www.myDomain.org/account.html and 

sometimes it will be suffixed with &quot;?locale=de&quot; or &quot;?locale=fr&quot;.

So, “account.html” works when there is no locale but not when there is a locale.

I had a look at the code server regex e.g. &quot;(account.html)?(\\\\?gwt.codesvr=127.0.0.1:9997)?&quot; which works when there is no locale but not when there is a locale.

Then I reviewed the regex pages -&gt; http://java.sun.com/javase/7/docs/api/java/util/regex/Pattern.html and tried a combination but I haven&#039;t had any luck yet. 

Any suggestions?

Kind regards
Rob</description>
		<content:encoded><![CDATA[<p>Hi Claudius,</p>
<p>I didn&#8217;t have any luck with with locales.  What I mean is sometimes the URL will just be:</p>
<p>-&gt; <a href="http://www.myDomain.org/account.html" rel="nofollow">http://www.myDomain.org/account.html</a> and </p>
<p>sometimes it will be suffixed with &#8220;?locale=de&#8221; or &#8220;?locale=fr&#8221;.</p>
<p>So, “account.html” works when there is no locale but not when there is a locale.</p>
<p>I had a look at the code server regex e.g. &#8220;(account.html)?(\\\\?gwt.codesvr=127.0.0.1:9997)?&#8221; which works when there is no locale but not when there is a locale.</p>
<p>Then I reviewed the regex pages -&gt; <a href="http://java.sun.com/javase/7/docs/api/java/util/regex/Pattern.html" rel="nofollow">http://java.sun.com/javase/7/docs/api/java/util/regex/Pattern.html</a> and tried a combination but I haven&#8217;t had any luck yet. </p>
<p>Any suggestions?</p>
<p>Kind regards<br />
Rob</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Claudius</title>
		<link>http://claudiushauptmann.com/a-framework-for-gwt-multipage-applications.html/comment-page-1#comment-1300</link>
		<dc:creator>Claudius</dc:creator>
		<pubDate>Sun, 20 Jun 2010 11:40:13 +0000</pubDate>
		<guid isPermaLink="false">http://claudiushauptmann.com/?p=298#comment-1300</guid>
		<description>Hi Rob,
yes, of course it is supported. Just add it to your regex! There will be more aid in future versions that handle this and other parameters like gwt.codesvr automatically. Please have a look at the handling of the gwt.codesvr parameter:
http://code.google.com/p/gwt-multipage/source/browse/trunk/gwtmultipage/gwtmultipage-sample/src/main/java/org/gwtmultipage/sample/client/MultipageEntryPointIndex.java
Claudius</description>
		<content:encoded><![CDATA[<p>Hi Rob,<br />
yes, of course it is supported. Just add it to your regex! There will be more aid in future versions that handle this and other parameters like gwt.codesvr automatically. Please have a look at the handling of the gwt.codesvr parameter:<br />
<a href="http://code.google.com/p/gwt-multipage/source/browse/trunk/gwtmultipage/gwtmultipage-sample/src/main/java/org/gwtmultipage/sample/client/MultipageEntryPointIndex.java" rel="nofollow">http://code.google.com/p/gwt-multipage/source/browse/trunk/gwtmultipage/gwtmultipage-sample/src/main/java/org/gwtmultipage/sample/client/MultipageEntryPointIndex.java</a><br />
Claudius</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob Ferguson</title>
		<link>http://claudiushauptmann.com/a-framework-for-gwt-multipage-applications.html/comment-page-1#comment-1299</link>
		<dc:creator>Rob Ferguson</dc:creator>
		<pubDate>Sun, 20 Jun 2010 03:49:48 +0000</pubDate>
		<guid isPermaLink="false">http://claudiushauptmann.com/?p=298#comment-1299</guid>
		<description>Hi Claudius,

To be more precise re &quot;support for locales in the URL pattern&quot;:

@MultipageEntryPoint(urlPattern = “account.html”)
public class AccountEntryPoint implements EntryPoint

http://www.myDomain.org/account.html?locale=de

or 

http://www.myDomain.org/account.html?locale=fr

Kind regards
Rob</description>
		<content:encoded><![CDATA[<p>Hi Claudius,</p>
<p>To be more precise re &#8220;support for locales in the URL pattern&#8221;:</p>
<p>@MultipageEntryPoint(urlPattern = “account.html”)<br />
public class AccountEntryPoint implements EntryPoint</p>
<p><a href="http://www.myDomain.org/account.html?locale=de" rel="nofollow">http://www.myDomain.org/account.html?locale=de</a></p>
<p>or </p>
<p><a href="http://www.myDomain.org/account.html?locale=fr" rel="nofollow">http://www.myDomain.org/account.html?locale=fr</a></p>
<p>Kind regards<br />
Rob</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob Ferguson</title>
		<link>http://claudiushauptmann.com/a-framework-for-gwt-multipage-applications.html/comment-page-1#comment-1298</link>
		<dc:creator>Rob Ferguson</dc:creator>
		<pubDate>Sun, 20 Jun 2010 03:20:20 +0000</pubDate>
		<guid isPermaLink="false">http://claudiushauptmann.com/?p=298#comment-1298</guid>
		<description>Hi Claudius,

Do you support locales in the URL pattern?

@MultipageEntryPoint(urlPattern = &quot;account.html&quot;)
public class AccountEntryPoint implements EntryPoint

e.g. &amp;locale=de

Kind regards
Rob</description>
		<content:encoded><![CDATA[<p>Hi Claudius,</p>
<p>Do you support locales in the URL pattern?</p>
<p>@MultipageEntryPoint(urlPattern = &#8220;account.html&#8221;)<br />
public class AccountEntryPoint implements EntryPoint</p>
<p>e.g. &amp;locale=de</p>
<p>Kind regards<br />
Rob</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dory forma</title>
		<link>http://claudiushauptmann.com/a-framework-for-gwt-multipage-applications.html/comment-page-1#comment-1294</link>
		<dc:creator>dory forma</dc:creator>
		<pubDate>Wed, 16 Jun 2010 16:16:18 +0000</pubDate>
		<guid isPermaLink="false">http://claudiushauptmann.com/?p=298#comment-1294</guid>
		<description>In my post above, I mistyped there and the error message says &quot;gwt-&quot; not &quot;get-&quot;. I&#039;ve added the library, added the annotation, and modified the xml as you indicate, but still get this error when the modules are loaded and don&#039;t know how to debug that further or correct it.</description>
		<content:encoded><![CDATA[<p>In my post above, I mistyped there and the error message says &#8220;gwt-&#8221; not &#8220;get-&#8221;. I&#8217;ve added the library, added the annotation, and modified the xml as you indicate, but still get this error when the modules are loaded and don&#8217;t know how to debug that further or correct it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dory forma</title>
		<link>http://claudiushauptmann.com/a-framework-for-gwt-multipage-applications.html/comment-page-1#comment-1291</link>
		<dc:creator>dory forma</dc:creator>
		<pubDate>Tue, 15 Jun 2010 16:08:17 +0000</pubDate>
		<guid isPermaLink="false">http://claudiushauptmann.com/?p=298#comment-1291</guid>
		<description>Unfortunately, I&#039;m new to GWT and to Eclipse and I&#039;ve been trying again and again to add your code and library to my primitive project but whenever I launch it in debug mode I get the error massage &quot;invalid module name: &#039;multipage.get-multipage&#039;&quot;.

Could you possibly provide a bullet outline somwhere of how to properly set up an eclipse GWT web application project to include your functionality?</description>
		<content:encoded><![CDATA[<p>Unfortunately, I&#8217;m new to GWT and to Eclipse and I&#8217;ve been trying again and again to add your code and library to my primitive project but whenever I launch it in debug mode I get the error massage &#8220;invalid module name: &#8216;multipage.get-multipage&#8217;&#8221;.</p>
<p>Could you possibly provide a bullet outline somwhere of how to properly set up an eclipse GWT web application project to include your functionality?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Claudius</title>
		<link>http://claudiushauptmann.com/a-framework-for-gwt-multipage-applications.html/comment-page-1#comment-1283</link>
		<dc:creator>Claudius</dc:creator>
		<pubDate>Sat, 12 Jun 2010 22:25:43 +0000</pubDate>
		<guid isPermaLink="false">http://claudiushauptmann.com/?p=298#comment-1283</guid>
		<description>@Mark: Awesome! Thank you!</description>
		<content:encoded><![CDATA[<p>@Mark: Awesome! Thank you!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
